search for: andllvm

Displaying 3 results from an estimated 3 matches for "andllvm".

Did you mean: addllvm
2010 May 13
0
[LLVMdev] How to get the variable mapping between the source andllvm bytecode
...think a walk-around method is to get the instruction's mapping. I have to use llvm-gcc, not clang. Any advice? Thanks. Best, Kecheng 2010-05-13 From: Eli Friedman Date: 2010-05-13 15:38:36 To: Kecheng Cc: llvmdev Subject: Re: [LLVMdev] How to get the variable mapping between the source andllvm bytecode On Thu, May 13, 2010 at 1:47 PM, Kecheng <kecheng at cecs.pdx.edu> wrote: > Hi, > > I want to know the variable mapping between the source and llvm bytecode. It > seems that current llvm debugging information cannot provide this mapping > directly. > > Here is m...
2010 May 13
4
[LLVMdev] How to get the variable mapping between the source and llvm bytecode
Hi, I want to know the variable mapping between the source and llvm bytecode. It seems that current llvm debugging information cannot provide this mapping directly. Here is my examples (llvm 2.7). In this exmaple, I want to know the mapping: tmp<--->%4. But current llvm's debugging information can only provide that the instruction "%4 = add nsw i32 %3, 2" is at line 3 in
2010 May 14
2
[LLVMdev] How to get the variable mapping between the sourceandllvm bytecode
...mapping will be tmp <---->%1. We can't derive the mapping based on "alloca/store" instruction. Best, Kecheng 2010-05-13 From: Eli Friedman Date: 2010-05-13 16:58:05 To: Kecheng Cc: llvmdev Subject: Re: Re: [LLVMdev] How to get the variable mapping between the sourceandllvm bytecode On Thu, May 13, 2010 at 4:00 PM, Kecheng <kecheng at cecs.pdx.edu> wrote: > Hi, > > I want to get the mapping between C source's variables and bytecode > variables. It seems that llvm doesn't provide this mapping, so I think a > walk-around method is to get t...