Displaying 4 results from an estimated 4 matches for "findsym".
2006 Mar 23
1
[LLVMdev] JIT: LibDeps.txt does not include all dependencies
If I try to link HowToUseJIT.cpp against the JIT without also linking
the interpreter, I get the following linker error:
ld: Undefined symbols:
__ZN4llvm11Interpreter6createEPNS_6ModuleEPNS_17IntrinsicLoweringE
It's not obvious, from the source, what depends on this symbol, or
why GenLibDep.pl didn't detect this dependency. Linking against the
interpreter fixes this.
Cheers,
Eric
2012 Dec 06
1
[LLVMdev] LLVM Archive Format Extension Proposal
On Mon, Dec 3, 2012 at 2:08 PM, Relph, Richard <Richard.Relph at amd.com> wrote:
> On Nov 21, 2012, at 4:28 PM, "Relph, Richard" <Richard.Relph at amd.com> wrote:
>
>> On Nov 21, 2012, at 12:09 PM, Michael Spencer <bigcheesegs at gmail.com> wrote:
>>
>>> Note that I plan to remove llvm/Bitcode/Archive once Object/Archive is
>>>
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...);
extern int yyparse (void);
extern int flexscan (void);
extern void set_input_file (char*);
extern int yywrap (void);
extern int addsym (register char[], char*, int, hash_table, int);
extern void cclinstal (unsigned char [], int);
extern int ccllookup (unsigned char []);
extern struct hash_entry *findsym (register char[], hash_table, int );
extern void ndinstal (char[], unsigned char[]);
extern unsigned char *ndlookup (char[]);
extern void scextend (void);
extern void scinstal (char[], int);
extern int sclookup (char[]);
extern void bldtbl (int[], int, int, int, int);
extern void cmptmps (void);
ex...