aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
AgeCommit message (Expand)Author
2006-05-12Fix a hypothetical memory leak, identified by Coverity. In practice, thisChris Lattner
2006-05-12Refactor a bunch of includes so that TargetMachine.h doesn't have to includeOwen Anderson
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-04Adjust to use proper TargetData copy ctorChris 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-04-22Fix JIT support for static ctors, which was apparently completely broken!Chris Lattner
2006-03-24Get JIT/Interpreter working on Windows again.Jeff Cohen
2006-03-23prune #includesChris Lattner
2006-03-23remove always-null IntrinsicLowering argument.Chris Lattner
2006-03-23remove the intrinsiclowering hookChris Lattner
2006-03-22Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries.Chris Lattner
2006-03-14Convert llvm.cs.uiuc.edu -> llvm.orgReid Spencer
2006-03-08Add a helper method for running static ctors/dtors in the module.Chris Lattner
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-02-07The interpreter assumes that the caller of runFunction() must be lli, andJeff Cohen
2006-02-07Teach the interpreter to handle global variables that are added to a module a...Jeff Cohen
2006-01-31Allow the specification of explicit alignments for constant pool entries.Evan Cheng
2006-01-22Add #include of <iostream>Chris Lattner
2006-01-20Fixed InitializeMemory to handle ConstantPacked.Robert Bocchino
2006-01-07Wrap long lines.Chris Lattner
2006-01-07wrap long lineChris Lattner
2005-10-23Fix a nasty bug that was causing miscompilation of global variablesChris Lattner
2005-10-23Shrinkify to match llcChris Lattner
2005-09-02Add help support for -mcpu and -mattr.Jim Laskey
2005-09-011. Use SubtargetFeatures in llc/lli.Jim Laskey
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