search for: _ztin4llvm19machinefunctionpasse

Displaying 4 results from an estimated 4 matches for "_ztin4llvm19machinefunctionpasse".

2008 Dec 14
3
[LLVMdev] How to correlate LLVA with native ISA
...y opt. The class has constructor, virtfn, runOnMachineFunction, getPassName, runOnFunction, and getAnalysisUsage methods where body parts of all methods are empty. Does any have a similar problem? Error opening '../../src/Release/lib/SWP.so': ../../src/Release/lib/SWP.so: undefined symbol: _ZTIN4llvm19MachineFunctionPassE (without virtfn() definition) Error opening '../../src/Release/lib/SWP.so': ../../src/Release/lib/SWP.so: undefined symbol: _ZN4llvm19MachineFunctionPass6virtfnEv Thanks in advance! - Keun Soo On Mon, Dec 8, 2008 at 2:28 PM, John Criswell <criswell at uiuc.edu> wrote: > Can y...
2008 Dec 08
0
[LLVMdev] How to correlate LLVA with native ISA
Keun Soo Yim wrote: > > Hi, > > How to correlate the LLVM IR-leve instructions and memory values > with the machine instructions and memory locations? Can you tell us what goal you are trying to accomplish that requires you to do this? There might be better ways of doing what you want. The answer to your question probably depends on whether you're trying to write a
2008 Dec 14
0
[LLVMdev] How to correlate LLVA with native ISA
...y opt. The class has constructor, virtfn, runOnMachineFunction, getPassName, runOnFunction, and getAnalysisUsage methods where body parts of all methods are empty. Does any have a similar problem? Error opening '../../src/Release/lib/SWP.so': ../../src/Release/lib/SWP.so: undefined symbol: _ZTIN4llvm19MachineFunctionPassE (without virtfn() definition) Error opening '../../src/Release/lib/SWP.so': ../../src/Release/lib/SWP.so: undefined symbol: _ZN4llvm19MachineFunctionPass6virtfnEv Thanks in advance! - Keun Soo On Mon, Dec 8, 2008 at 2:28 PM, John Criswell <criswell at uiuc.edu> wrote: Can you te...
2008 Dec 08
2
[LLVMdev] How to correlate LLVA with native ISA
Hi, How to correlate the LLVM IR-leve instructions and memory values with the machine instructions and memory locations? For example, if CMP instruction in machine ISA is selected for the ICMP instruction in LLVA, with the Instruction datastructure for ICMP, is it possible to get the memory address of CMP instruction? Assume that the code segment base address is given. Similarly, by