- 071c62f Rearrange handling of jump tables. Highlights: by Chris Lattner · 16 years ago
- c99fd87 Avoid including DebugInfo.h in AsmPrinter.h by Devang Patel · 16 years ago
- 6b61f58 Replace DebugLocTuple with DILocation. by Devang Patel · 16 years ago
- c9ec993 Change errs() to dbgs(). by David Greene · 16 years ago
- c5818fb Partially revert r91626. Materializing extra functions to determine whether by Jeffrey Yasskin · 16 years ago
- aad0d52 Don't codegen available_externally functions. Fixes http://llvm.org/PR5735. by Jeffrey Yasskin · 16 years ago
- 32d7e6e Change indirect-globals to use a dedicated allocIndirectGV. This lets us by Jeffrey Yasskin · 16 years ago
- 108c838 * Move stub allocation inside the JITEmitter, instead of exposing a by Jeffrey Yasskin · 16 years ago
- 0261d79 Allow more than one stub to be being generated at the same time. by Jeffrey Yasskin · 16 years ago
- e03a39b Try to fix JITTest.FarCallToKnownFunction on ARM and PPC. by Jeffrey Yasskin · 16 years ago
- d1ba06b Make X86-64 in the Large model always emit 64-bit calls. by Jeffrey Yasskin · 16 years ago
- 116664a Use stubs when we have them, otherwise use code we already have, by Eric Christopher · 16 years ago
- 6f348e4 Remove dlsym stubs, with Nate Begeman's permission. by Jeffrey Yasskin · 16 years ago
- 2d27441 Make the need-stub variables accurate and consistent. In the case of by Jeffrey Yasskin · 16 years ago
- e637c19 Give the JITResolver a direct pointer to its JITEmitter, and use that instead by Jeffrey Yasskin · 16 years ago
- dc85724 Change the JIT to compile eagerly by default as agreed in by Jeffrey Yasskin · 16 years ago
- 7a9034c Automatically do the equivalent of freeMachineCodeForFunction(F) when F is by Jeffrey Yasskin · 16 years ago
- 23e5fcf Fix http://llvm.org/PR4822: allow module deletion after a function has been by Jeffrey Yasskin · 16 years ago
- 1e86132 Move the Function*->allocated blocks map from the JITMemoryManager to the by Jeffrey Yasskin · 16 years ago
- ebbcef9 Clean up the JITResolver stub/callsite<->function maps. by Jeffrey Yasskin · 16 years ago
- 1619dc3 s/DebugLoc.CompileUnit/DebugLoc.Scope/g by Devang Patel · 16 years ago
- e5f8798 Keep track of stubs that are created. This fixes PR5162 and probably PR4822 and by Jeffrey Yasskin · 16 years ago
- 02c0423 Update processDebugLoc() to handle requests to process debug info, before and after emitting instructions. by Devang Patel · 16 years ago
- ea5ed00 Fix http://llvm.org/PR5116 by rolling back r60822. This passes `make unittests by Jeffrey Yasskin · 16 years ago
- 2763217 Implement the JIT side of the GDB JIT debugging interface. To enable this by Reid Kleckner · 16 years ago
- 3d47db5 Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI by Xerxes Ranby · 16 years ago
- bbbfa99 remove a few DOUTs here and there. by Chris Lattner · 16 years ago
- a9ad041 This void is implicit in C++. by Dan Gohman · 16 years ago
- 1b747ad SjLj based exception handling unwinding support. This patch is nasty, brutish by Jim Grosbach · 16 years ago
- ce63ffb More migration to raw_ostream, the water has dried up around the iostream hole. by Daniel Dunbar · 16 years ago
- 10b4fc5 Re-committing r76828 with the JIT memory manager changes now that the build by Reid Kleckner · 16 years ago
- 4bf3706 Reverting r76825 and r76828, since they caused clang runtime errors and some build failure involving memset. by Reid Kleckner · 16 years ago
- 81ce3ed Make the JIT code emitter properly retry and ask for more memory when it runs by Reid Kleckner · 16 years ago
- fbee579 Simplify / normalize some uses of Value::getName. by Daniel Dunbar · 16 years ago
- 32360a7 Add line numbers to OProfile. To do this, I added a processDebugLoc() by Jeffrey Yasskin · 16 years ago
- 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
- 489393d Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 16 years ago
- df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 16 years ago
- ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
- 186c670 Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 16 years ago
- bae049c Revert 72650 by Bruno Cardoso Lopes · 16 years ago
- af90a1c Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 16 years ago
- a3f99f9 First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 16 years ago
- b3a847d Allow the JIT ExecutionEngine to report details about the generated machine code. by Argyrios Kyrtzidis · 16 years ago
- 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
- 19fee41 Set FnEnd in JITEmitter::finishFunction to point strictly to the end of function's machine code. by Argyrios Kyrtzidis · 16 years ago
- e2bcf13 Under unusual circumstances (jitting a function that causes the creation of by Nick Lewycky · 16 years ago
- 848b314 Use an AssertingVH to detect the case where the Function was deleted but by Nick Lewycky · 16 years ago
- 1606e8e Fix some significant problems with constant pools that resulted in unnecessary paddings between constant pool entries, larger than necessary alignments (e.g. 8 byte alignment for .literal4 sections), and potentially other issues. by Evan Cheng · 16 years ago
- 841c6a4 Allow cross-process JIT to handle MachineRelocations of the ExternalSymbol by Nate Begeman · 16 years ago
- b9c6c9b Finish cross-process JIT work, and clean up previous work. by Nate Begeman · 16 years ago
- be3ae8e switch this message back to only being in -debug mode. by Chris Lattner · 16 years ago
- 50cd6fd When allocating stubs, keep track of which Functions are referencing the stub. by Nate Begeman · 16 years ago
- 6694198 Fix a thinko in the JIT where the address of a GV was only recorded in the map by Nate Begeman · 16 years ago
- 0b82f77 Fix the calculation for how big the allocated stub needs to be. by Nate Begeman · 16 years ago
- d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
- ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
- 69f9378 Handle weak_extern in the JIT. This fixes by Dan Gohman · 17 years ago
- 5788d1a Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin. by Evan Cheng · 17 years ago
- 369e02d Fix a bug introduced by r59265. If lazy compilation is disabled, return actual function ptr instead of ptr to stub if function is already compiled. by Evan Cheng · 17 years ago
- 704bff9 Always emit a function pointer as a pointer to the function stub (if there is one). This makes it possible to compare function pointer values in lazy compilation mode. This fixes PR3043. by Evan Cheng · 17 years ago
- e7c3551 Change binary dump format. by Evan Cheng · 17 years ago
- e4d783d Comments and indentation. by Evan Cheng · 17 years ago
- 5594f12 Forgot these. by Evan Cheng · 17 years ago
- fff484f Remove a InvalidateInstructionCache call with incorrect size. by Evan Cheng · 17 years ago
- ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 17 years ago
- d7398c9 Rename isString -> isExternalSymbol; getString -> getExternalSymbol since these work on externsym machine relocations. by Evan Cheng · 17 years ago
- ca66b08 More debug output. by Evan Cheng · 17 years ago
- 366cf29 More debug output. by Evan Cheng · 17 years ago
- 47c01a0 Jump tables may be emitted by target. by Evan Cheng · 17 years ago
- eb5d95a Improve JIT debugging outputs format consistency. by Evan Cheng · 17 years ago
- 6863fb0 Need a \n. by Evan Cheng · 17 years ago
- a7916f5 Undo 58778 but makes the binary dump prettier. by Evan Cheng · 17 years ago
- 5e136c0 Remove debug output that's not really useful. by Evan Cheng · 17 years ago
- c96a8e7 Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS X by Evan Cheng · 17 years ago
- 9200605 Silence a compiler warning. by Evan Cheng · 17 years ago
- 8fe9535 Revert errant deletion. The target needs to be able to specify that it doesn't want the generic constant pool to be emitted. by Jim Grosbach · 17 years ago
- ef5784e Let target resolve some relocation results. by Evan Cheng · 17 years ago
- bc6d876 Support for constant islands in the ARM JIT. by Jim Grosbach · 17 years ago
- cef7527 fix a tricky bug in the JIT global variable emitter, that was triggered when JITing a variable independently of a function. This lead to sharing memory memory between functions and GVs thus changing the value of a GV could change the code in execution. more details on the ML. by Nuno Lopes · 17 years ago
- cce6c29 On Darwin ARM, memory needs special handling to do JIT. This patch expands by Jim Grosbach · 17 years ago
- d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 17 years ago
- dcb31e1 Acquire the lock only when necessary. More precisely, do not acquire by Nicolas Geoffray · 17 years ago
- bc4707a Preliminary support for systems which require changing JIT memory regions privilege from read / write to read / executable. by Evan Cheng · 17 years ago
- 19e861a Make safer variant of alias resolution routine to be default by Anton Korobeynikov · 17 years ago
- 252ddfb MMI may be null. by Evan Cheng · 17 years ago
- a044dfc Get rid of a couple of dynamic_cast. by Evan Cheng · 17 years ago
- 50dd1d0 Some fixes for x86-64 JIT. Make it use small code by Dale Johannesen · 17 years ago
- dd947ea Rewrite JIT handling of GlobalVariables so they by Dale Johannesen · 17 years ago
- 18e0459 Implement JIT support for global aliases, patch by David Chisnall! by Chris Lattner · 17 years ago
- bc52cad Switch the PPC backend and target-independent JIT to use the libsystem by Chris Lattner · 17 years ago
- 210539e Provide generic hooks for icache invalidation. Add PPC implementation. by Anton Korobeynikov · 17 years ago
- f44085a Fix a backwards check in the JIT symbol table code by Nate Begeman · 17 years ago
- bdb6ca1 Disable JIT symbol table for now. by Evan Cheng · 17 years ago
- 580631a Be pessimistic in computing the buffer size when aligning. by Nicolas Geoffray · 17 years ago
- 5913e6c Cosmetic changes, as suggested by Evan. No functionality changes. by Nicolas Geoffray · 17 years ago
- dc17ab2 Enable jitting with a known memory size. by Nicolas Geoffray · 17 years ago
- 51cc3c1 Correlate stubs with functions in JIT: when emitting a stub, the JIT tells the memory manager which function by Nicolas Geoffray · 17 years ago
- 3b37448 Fix some serious logic errors that broke the jit on darwin/x86-64. by Chris Lattner · 17 years ago
- 97b8c40 Add debugging code. by Evan Cheng · 17 years ago