aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JITEmitter.cpp
AgeCommit message (Expand)Author
2006-05-02Do not make the JIT memory manager manage the memory for globals. InsteadChris Lattner
2006-05-02Minor cleanups, no functionality change.Chris Lattner
2006-05-02Refactor the machine code emitter interface to pull the pointers for the currentChris Lattner
2006-05-02Remove dead methodChris Lattner
2006-04-25Fix a warningNate Begeman
2006-04-22JumpTable support! What this represents is working asm and jit support forNate Begeman
2006-02-09simplify this code now that each constant pool entry is not separately allocatedChris Lattner
2006-02-09Adjust to MachineConstantPool interface change: instead of keeping aChris Lattner
2006-02-09rename fields of constant pool entriesChris Lattner
2006-01-31Allow the specification of explicit alignments for constant pool entries.Evan Cheng
2006-01-22Add #include of <iostream>Chris Lattner
2006-01-07Wrap long lines.Chris Lattner
2005-08-01one cannot allocate a global, until one is done initializing the global pointersAndrew Lenharth
2005-07-30Keep tabs and trailing spaces out.Jeff Cohen
2005-07-29support near allocations for the JITAndrew Lenharth
2005-07-28Like constants, globals on some platforms are GOT relative. This means they ...Andrew Lenharth
2005-07-27Eliminate all remaining tabs and trailing spaces.Jeff Cohen
2005-07-25fix a warning on 32-bit systemsChris Lattner
2005-07-22the JIT memory manager will construct a GOT if you want it too. Also, it pla...Andrew Lenharth
2005-07-20count the number of relocations performed.Chris Lattner
2005-07-12For PR540:Reid Spencer
2005-04-22Convert tabs to spacesMisha Brukman
2005-04-21Remove trailing whitespaceMisha Brukman
2005-04-18Add support for targets that require stubs for external functions.Chris Lattner
2005-03-17Fix the missing symbols problem Bill was hitting. Patch contributed byChris Lattner
2005-02-20Fix problems running the HowToUseJIT on powerpc, and probably problems withChris Lattner
2005-01-10Rework constant pool handling so that function constant pools are no longerChris Lattner
2005-01-08Silence VS warnings.Chris Lattner
2004-12-13Get rid of some leaks found by VC leak detector.Reid Spencer
2004-12-05Properly implement a fix for PR475Chris Lattner
2004-12-01Remove unneeded cast.Chris Lattner
2004-11-30Fix the JIT when being used from llvm-dbChris Lattner
2004-11-22Rename Emitter.cpp -> JITEmitter.cppChris Lattner
2004-11-22Fix the FIXME, nuke the JIT specific forceCompilationOf method.Chris Lattner
2004-11-22These methods are obsoleteChris Lattner
2004-11-22Support targets that require stubs for external functions betterChris Lattner
2004-11-21Clean up DEBUG outputChris Lattner
2004-11-21Allow targets to avoid emitting a stub for EVERY lazily resolved call. InChris Lattner
2004-11-20Implement relocation support by adding a target independent resolver interface.Chris Lattner
2004-11-20Add getCurrentPCOffset() and addRelocation() methods.Chris Lattner
2004-11-19Match change in MachineCodeEmitter prototype.Chris Lattner
2004-11-15Now that we have ghost linkage, we can force resolution of external symbolsChris Lattner
2004-10-29When emitting debug msgs for function stubs, don't truncate theBrian Gaeke
2004-09-13Simplify the sys::Memory interface per Chris' request.Reid Spencer
2004-09-11Convert the Emitter to use the lib/System "Memory" interface instead of theReid Spencer
2004-09-01Changes For Bug 352Reid Spencer
2004-05-28Use the SystemUtils.h file to do our dirty work.Chris Lattner
2004-05-27This code is a real mess, but at least get the JIT *building* on platformsChris Lattner
2004-04-23Implement emitWordAt() for the JIT emitter.Brian Gaeke
2004-02-08There is no reason to #define fdChris Lattner