Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] Word Addressing"
2014 Jun 07
3
[LLVMdev] Load/Store Instruction Error
Hi all,
I started to write an LLVM backend for custom CPU. I created XXXInstrInfo
but there are some problems. I searched for it but I couldn't find
anything. Can anyone help me?
include "XXXInstrFormats.td"
def simm16 : Operand<i32> {
let DecoderMethod = "DecodeSimm16";
}
def mem : Operand<i32> {
let PrintMethod = "printMemOperand";
let
2014 Oct 03
2
[LLVMdev] Weird problems with cos (was Re: [PATCH v3 2/3] R600: Add carry and borrow instructions. Use them to implement UADDO/USUBO)
Hi Tom, Matt,
I'm running into strange issues with the cos test (piglit
generated_tests/cl/builtin/math/builtin-float-cos-1.0.generated.c)
I have been seeing random failures (incorrect results) for some time and
tried to investigate. the weird part is that the failures are not 100%
reproducible, sometimes the tests pass, or partly pass
(it's usually float8 and float16 subtests that
2008 Aug 05
2
VMX on Lenovo R61, disabled bi BIOS ?
Hi,
I''m currently trying to use a Linovo R61 Thinkpad equipped w/ Core2 Duo for HVM
Virtualization. BIOS shows CPU/Virtualization->enabled. Xen 3.2.0 shows
(Xeo) VMX disabled by BIOS
Does someone knows any problems with R61 Thinkpads?
Thanks in advance.
cheers,
Stephan
--
Stephan Seitz
Senior System Administrator
*netz-haut* e.K.
multimediale kommunikation
zweierweg 22
97074
2005 Mar 29
2
MeetMe flags in * 1.0.7
While researching Areski's new Web-MeetMe management gui,
I found some odd (from what I expected) behaviour). Using
the CLI to set un/mute status works but does not update the
flags, or so it appears.
Starting with a fresh conference (1 user)
*CLI> meetme list 3456
User #: 1 Channel: OH323/R61
Using the CLI to mute the caller (no change in the user status0
*CLI> meetme mute 3456 1
2008 Apr 04
2
[LLVMdev] InstCombine Question
On Friday 04 April 2008 13:07, Chris Lattner wrote:
> > So how does the undef store to null appear in the IR when it isn't
> > attached anywhere and how can I get rid of it?
>
> Don't do undefined behavior? :)
I don't think it's undefined behavior. Right before instcombine, we have
this:
%r60 = load <2 x i64>* %"$LCS_1", align 16 ; <<2
2018 Jun 26
3
accessing subwords in memory
I'm targeting a machine that can only load and store aligned 64-bit words,
but I'd like to be able to pack 8-, 16-, and 32-bit values into these words.
Loads will require various shifts and masks; stores are more complicated.
Does LLVM provide any support for such things?
Is there an example target I can look at for ideas?
Thanks,
Preston
-------------- next part --------------
An HTML
2009 Dec 15
1
Changing Column names in (Output) csv file
Dear R helpers
Following is a part of R code.
data_lab <- expand.grid(c("R11", "R12", "R13"), c("R21", "R22", "R23"), c("R31", "R32", "R33"), c("R41", "R42", "R43"), c("R51", "R52", "R53"), c("R61", "R62", "R63"),
2008 Apr 04
0
[LLVMdev] InstCombine Question
On Fri, 4 Apr 2008, David Greene wrote:
> I am confused by this bit of code in instcombine:
>
> 09789 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
> 09790 const Value *GEPI0 = GEPI->getOperand(0);
> 09791 // TODO: Consider a target hook for valid address spaces for this
> xform.
> 09792 if (isa<ConstantPointerNull>(GEPI0)
2008 Apr 04
0
[LLVMdev] InstCombine Question
On Friday 04 April 2008 13:42, David Greene wrote:
> On Friday 04 April 2008 13:07, Chris Lattner wrote:
> > > So how does the undef store to null appear in the IR when it isn't
> > > attached anywhere and how can I get rid of it?
> >
> > Don't do undefined behavior? :)
>
> I don't think it's undefined behavior. Right before instcombine, we
2008 Apr 04
2
[LLVMdev] InstCombine Question
I am confused by this bit of code in instcombine:
09789 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
09790 const Value *GEPI0 = GEPI->getOperand(0);
09791 // TODO: Consider a target hook for valid address spaces for this
xform.
09792 if (isa<ConstantPointerNull>(GEPI0) &&
09793
2004 May 30
1
Multi-stream vorbis...
I've been testing my multi-stream mux directshow filter. And have created
some files with 2 tracks of vorbis... varying from 2 mp3s transcoding to
vorbis interleaved to one mp3 transcode to vorbis in one stream, and live
muxed spoken audio encoded to vorbis in the other. Simliarly some with
vorbis in one stram and speex encoded voice-overs in the other.
My directshow filters can play these
2010 Jun 15
2
[LLVMdev] Question on X86 backend
Hi Micah,
> In X86InstrInfo.td for Call Instructions, it mentions that Uses for
> argument registers are added manually. Can someone point me to the
> location where they are added as the comment doesn't reference a
> where or how?
the register uses are added by the function
X86TargetLowering::LowerCall() during the DAG Lowering phase. This is
the relevant code segment:
// Add
2013 Aug 05
1
[LLVMdev] Promote MVT::f32 load/store to MVT::i32 cause infinite loop in LegalizeDAG?
On Mon, Aug 05, 2013 at 02:09:58PM -0400, Francois Pichet wrote:
> On my target store/load of f32 or i32 are equivalents.
> Previously I had duplicate instructions def in .td to map f32 and i32 to
> the same opcode.
>
> I deleted all that and I instead tried a new approach (to simplify things) :
>
> setOperationAction(ISD::STORE, MVT::f32, Promote);
>
2013 Aug 05
0
[LLVMdev] Promote MVT::f32 load/store to MVT::i32 cause infinite loop in LegalizeDAG?
On Mon, Aug 5, 2013 at 2:25 PM, Tom Stellard <tom at stellard.net> wrote:
> On Mon, Aug 05, 2013 at 02:09:58PM -0400, Francois Pichet wrote:
> > On my target store/load of f32 or i32 are equivalents.
> > Previously I had duplicate instructions def in .td to map f32 and i32 to
> > the same opcode.
> >
> > I deleted all that and I instead tried a new approach
1998 Jun 18
2
R-beta: glm bug
A non-text attachment was scrubbed...
Name: not available
Type: text
Size: 997 bytes
Desc: not available
Url : https://stat.ethz.ch/pipermail/r-help/attachments/19980618/ee08ba8d/attachment.pl
2020 Jan 23
1
Re: virsh vol-download uses a lot of memory
On 1/22/20 1:18 PM, Daniel P. Berrangé wrote:
> On Wed, Jan 22, 2020 at 01:01:42PM +0100, Michal Privoznik wrote:
>> On 1/22/20 11:11 AM, Michal Privoznik wrote:
>>> On 1/22/20 10:03 AM, R. Diez wrote:
>>>> Hi all:
>>>>
>>>> I am using the libvirt version that comes with Ubuntu 18.04.3 LTS.
>>>
>>> I'm sorry, I don't
2009 Jun 16
1
adressing dataframes
Hi everyone,
I experience some problems with adressing of data.frames when I retrieve
some information for geographical position (ypos, xpos) ot of a MySQL
Database and want to perform some simple statistics. The problem is
adressing the dataframes with a construct like
rawdata[c(type)] vs. rawdata$TEMPMIN
to retrieve the numerical information and not a string (I want to store the
numerical
2005 Aug 01
4
Input buffer requirement.
Hi all,
I am in the thinking phase of Vorbis 'file' to 'buffer' conversion.
ie, accessing the stream data from the static buffer, rather than
accessing the file from the decoder( the way it is implemented in the
vorbis decoder).
I am putting my understanding and the respective query below,
As the general convention , there are two methods by which i can do this.
1) Assume what
2010 Sep 14
5
make-kpkg (Debian based tool) does not build xen patched kernel
Hello list,
I cannot get make-kpkg to build a Xenlinux type kernel into a Debian kernel binary on my Debian Squeeze x86_64 system.
I
am using GNU/Linux kernel sources tree (2.6.34.4) with Xen patches for
this custom kernel. I am trying to use the make-kpkg command to build a
working linux-image-2.6.34.4-xen-amd64 package for my system.
The
sources are vanilla (available from kernel.org) with
2009 Jun 27
1
Creating Excel-Charts via RDCOMClient
Hi R-users!
I'm trying to create an easy Excel chart using the package RDCOMClient. The
following example is working fine:
#-------------------------------------------------------------------
library(RDCOMClient)
xlLocationAsObject <-2
xlXYScatterSmoothNoMarkers <- 73
ex <- COMCreate("Excel.Application")
wb <- ex[["Workbooks"]]$Add()
sh <-