aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JITEmitter.cpp
AgeCommit message (Expand)Author
2009-11-23* Move stub allocation inside the JITEmitter, instead of exposing aJeffrey Yasskin
2009-11-23Allow more than one stub to be being generated at the same time.Jeffrey Yasskin
2009-11-19Try to fix JITTest.FarCallToKnownFunction on ARM and PPC.Jeffrey Yasskin
2009-11-16Make X86-64 in the Large model always emit 64-bit calls.Jeffrey Yasskin
2009-11-12Use stubs when we have them, otherwise use code we already have,Eric Christopher
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin
2009-11-07Make the need-stub variables accurate and consistent. In the case ofJeffrey Yasskin
2009-11-07Give the JITResolver a direct pointer to its JITEmitter, and use that insteadJeffrey Yasskin
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin
2009-10-27Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin
2009-10-20Move the Function*->allocated blocks map from the JITMemoryManager to theJeffrey Yasskin
2009-10-19Clean up the JITResolver stub/callsite<->function maps.Jeffrey Yasskin
2009-10-13s/DebugLoc.CompileUnit/DebugLoc.Scope/gDevang Patel
2009-10-13Keep track of stubs that are created. This fixes PR5162 and probably PR4822 andJeffrey Yasskin
2009-10-06Update processDebugLoc() to handle requests to process debug info, before and...Devang Patel
2009-10-06Fix http://llvm.org/PR5116 by rolling back r60822. This passes `make unittestsJeffrey Yasskin
2009-09-20Implement the JIT side of the GDB JIT debugging interface. To enable thisReid Kleckner
2009-08-25Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI Xerxes Ranby
2009-08-23remove a few DOUTs here and there.Chris Lattner
2009-08-12This void is implicit in C++.Dan Gohman
2009-08-11SjLj based exception handling unwinding support. This patch is nasty, brutishJim Grosbach
2009-07-25More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar
2009-07-23Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner
2009-07-23Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner
2009-07-23Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner
2009-07-21Simplify / normalize some uses of Value::getName.Daniel Dunbar
2009-07-16Add line numbers to OProfile. To do this, I added a processDebugLoc()Jeffrey Yasskin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-08Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin
2009-06-25Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin
2009-06-04Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman
2009-06-04Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes
2009-06-03Revert 72650Bruno Cardoso Lopes
2009-05-30Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes
2009-05-18Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-04-30Set FnEnd in JITEmitter::finishFunction to point strictly to the end of funct...Argyrios Kyrtzidis
2009-04-27Under unusual circumstances (jitting a function that causes the creation ofNick Lewycky
2009-04-19Use an AssertingVH to detect the case where the Function was deleted butNick Lewycky
2009-03-13Fix some significant problems with constant pools that resulted in unnecessar...Evan Cheng
2009-03-11Allow cross-process JIT to handle MachineRelocations of the ExternalSymbolNate Begeman
2009-03-07Finish cross-process JIT work, and clean up previous work.Nate Begeman
2009-03-05switch this message back to only being in -debug mode.Chris Lattner
2009-03-05When allocating stubs, keep track of which Functions are referencing the stub.Nate Begeman
2009-03-04Fix a thinko in the JIT where the address of a GV was only recorded in the mapNate Begeman
2009-03-02Fix the calculation for how big the allocated stub needs to be.Nate Begeman
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands