aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JITEmitter.cpp
AgeCommit message (Expand)Author
2006-07-07Change AllocateRWX/DeallocateRWX do not throw an exception.Chris Lattner
2006-06-23Added jump table address relocation.Evan Cheng
2006-06-16Only count instructions as code size, not constant pools and other per-functi...Chris Lattner
2006-06-01Fix -pedantic warnings.Chris Lattner
2006-05-16Make this print the right start pointerChris Lattner
2006-05-12Fix a hypothetical memory leak, identified by Coverity. In practice, thisChris Lattner
2006-05-12For extra sanity checking, fill free'd memory with garbage so we know thatChris Lattner
2006-05-11Fix some bugs in the freelist manipulation code.Chris Lattner
2006-05-11Significantly revamp allocation of machine code to use free lists, realChris Lattner
2006-05-08Move some methods out of line so that MutexGuard.h isn't needed in a public h...Chris Lattner
2006-05-03minor cleanups, no functionality changeChris Lattner
2006-05-03Suck block address tracking out of targets into the JIT Emitter. ThisChris Lattner
2006-05-03Refactor TargetMachine, pushing handling of TargetData into the target-specif...Owen Anderson
2006-05-03Align function bodies correctly.Chris Lattner
2006-05-03Simplify some code. Don't add memory blocks to the Blocks list twice.Chris Lattner
2006-05-03Change the BasicBlockAddrs map to be a vector, indexed by MBB number.Chris Lattner
2006-05-03Simplify some codeChris Lattner
2006-05-02Several related changes:Chris Lattner
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