- fbee579 Simplify / normalize some uses of Value::getName. by Daniel Dunbar · 16 years ago
- 4b1511b Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 16 years ago
- 32360a7 Add line numbers to OProfile. To do this, I added a processDebugLoc() by Jeffrey Yasskin · 16 years ago
- 1da8be2 Remove unused header. by Daniel Dunbar · 16 years ago
- 1d92921 Switch llc and createJIT to use simpler command line parsing for -march. by Daniel Dunbar · 16 years ago
- 51b198a Reapply TargetRegistry refactoring commits. by Daniel Dunbar · 16 years ago
- 2286f8d Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repair broken LLVM-GCC build. by Stuart Hastings · 16 years ago
- 54785e6 Migrate llc and the JIT to using the TargetRegistry for lookups. by Daniel Dunbar · 16 years ago
- 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 16 years ago
- c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
- deb052a Match declaration to definition. by Daniel Dunbar · 16 years ago
- c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
- 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
- dd9f8bb Oops. s/#if defined(USE_OPROFILE)/#if USE_OPROFILE/. We #define by Jeffrey Yasskin · 16 years ago
- 8f6d9a7 Add a --with-oprofile flag to configure, which uses OProfile's agent by Jeffrey Yasskin · 16 years ago
- 489393d Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 16 years ago
- 31e2466 Introduce new error handling API. by Torok Edwin · 16 years ago
- 0fd3806 improve the APIs for creating struct and function types with no arguments/elements by Chris Lattner · 16 years ago
- f2641eb add file to cmake by Chris Lattner · 16 years ago
- df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 16 years ago
- e46161f Fix the Ocaml bindings for the ExecutionEngine: with the change to build by Bob Wilson · 16 years ago
- 7e9e36a Eliminate object-relinking support from CMake. Fixes PR 4429 and by Douglas Gregor · 16 years ago
- e91208c After obtaining the lock, look if the function has been codegen'd by by Nicolas Geoffray · 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
- 434dd4f Fix new CodeEmitter stuff to follow LLVM codying style. Patch by Aaron Gray 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
- 1f04462 stat64/open64/lseek64 for the interpreter by Torok Edwin · 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
- 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
- 5e5cb79 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 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
- 3f91bb3ce make sure to unlock keymgr if the JIT is created and destroyed, all by Chris Lattner · 16 years ago
- 00f1628 Mac OS X 10.6 and above do not use key manager to register EH frames. by Evan Cheng · 16 years ago
- de551f9 Use CHAR_BIT instead of hard-coding 8 in several places where it by Dan Gohman · 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
- 96c96b4 Fix PR3724 by searching for the largest free block when by Chris Lattner · 16 years ago
- 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 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
- 44e3dd1 don't #include a header into the middle of an anon namespace. by Chris Lattner · 16 years ago
- 0b82f77 Fix the calculation for how big the allocated stub needs to be. by Nate Begeman · 16 years ago
- 07ab52b Fix the logic in this assertion to properly validate the number of arguments. by Dan Gohman · 16 years ago
- a3ac0c1 Reapply r57340. VMKit does not presently rely on materializeFunction by Dan Gohman · 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
- 42cc8f1 On 64bit we may have a personality function which requires 64 bits to by Nicolas Geoffray · 16 years ago
- 21afcda Split the locking out of JIT::runJITOnFunction so that callers by Dan Gohman · 17 years ago
- 2d5424d Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. by Evan Cheng · 17 years ago
- 60789e4 Add support for deleting a module provider from a JIT in such a way that it does not cause the owned module to be fully materialized. by Nate Begeman · 17 years ago
- 4d544a2 Change isGVCompilationDisabled() semantics again. It should abort on any GV that's not constant whether it's "internal" or not. In a server / client environment, GV is returned in the same block of memory as code. However, the memory might not be writable. by Evan Cheng · 17 years ago
- 2388a58 Registry.h should not depend on CommandLine.h. by Mikhail Glushenkov · 17 years ago
- 5c1799b Delete trailing whitespace. by Mikhail Glushenkov · 17 years ago
- bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
- ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
- 9b8f542 Removed trailing whitespace from Makefiles. by Misha Brukman · 17 years ago
- 5951368 Fix misplaced right parentheses. by Evan Cheng · 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
- 77f86ad DisableGVCompilation should not abort on internal GlobalValue's. by Evan Cheng · 17 years ago
- cdfc51f Make JIT::runFunction handle functions with non-C calling conventions. by Chris Lattner · 17 years ago
- 67c8c4c Implement support for JIT exceptions on X86_64. Relative offsets are by Nicolas Geoffray · 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
- b0b5349 For some targets, it's not possible to place GVs in the same memory buffer as the MachineCodeEmitter allocated memory. Code and data has different read / write / execution privilege requirements. 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
- 46fa139 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 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
- 77fcca8 Revert r57340 move guard mutex in getPointerToFunction as this can cause by Mon P Wang · 17 years ago
- 1c341c8 Moved guard mutex upwards to guard materializing a function by Mon P Wang · 17 years ago
- 4520dd2 Add <cstdio> include where needed by gcc-4.4. Patch by Samuel Tardieu. by Duncan Sands · 17 years ago
- 489032a Unbreak build. by Daniel Dunbar · 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
- 446531e Add DisableGVCompilation which forces the JIT to assert when it tries to allocate space for a GlobalVariable. by Evan Cheng · 17 years ago