| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Change the marker byte for stubs from 0xcd to 0xce (another form of | Dale Johannesen | 2009-09-15 | 1 | -3/+6 | 
| *  | Do not create calls via PLT in compilation callback - this is higly platform | Anton Korobeynikov | 2009-09-06 | 1 | -11/+12 | 
| *  | Unbreak x86_64 build. | Evan Cheng | 2009-09-03 | 1 | -2/+6 | 
| *  | X86JITInfo::getLazyResolverFunction() should not read cpu id to determine whe... | Evan Cheng | 2009-09-03 | 1 | -17/+8 | 
| *  | Short-term workaround for frame-related weirdness on win64. | Anton Korobeynikov | 2009-08-28 | 1 | -1/+1 | 
| *  | remove the last uses of Config/alloca.h | Chris Lattner | 2009-08-23 | 1 | -1/+0 | 
| *  | Modify an assert to avoid what looks like a GCC 4.2.4 signed-ness bug. | Reid Kleckner | 2009-08-19 | 1 | -3/+5 | 
| *  | 1) Proper emit displacements for x86, using absolute relocations where necessary | Bruno Cardoso Lopes | 2009-08-05 | 1 | -0/+1 | 
| *  | - s/DOUT/DEBUG(errs()/g | Bill Wendling | 2009-08-03 | 1 | -4/+4 | 
| *  | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -2/+2 | 
| *  | Remove extra \n from LLVM_UNREACHABLE calls. | Torok Edwin | 2009-07-12 | 1 | -2/+2 | 
| *  | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+1 | 
| *  | Start converting to new error handling API. | Torok Edwin | 2009-07-08 | 1 | -2/+2 | 
| *  | First patch in the direction of splitting MachineCodeEmitter in two subclasses: | Bruno Cardoso Lopes | 2009-05-30 | 1 | -41/+40 | 
| *  | Add support to the JIT for true non-lazy operation.  When a call to a function | Nate Begeman | 2009-02-18 | 1 | -0/+15 | 
| *  | Use .size and .type on ELF systems; this helps tools that map | Dan Gohman | 2009-02-06 | 1 | -3/+19 | 
| *  | Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some... | Evan Cheng | 2008-12-10 | 1 | -1/+1 | 
| *  | Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used. | Evan Cheng | 2008-11-10 | 1 | -2/+2 | 
| *  | Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ... | Evan Cheng | 2008-11-08 | 1 | -9/+9 | 
| *  | Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS X | Evan Cheng | 2008-11-05 | 1 | -2/+2 | 
| *  | Support for allocation of TLS variables in the JIT. Allocation of a global | Nicolas Geoffray | 2008-10-25 | 1 | -0/+10 | 
| *  | When resolving a stub in x86-64 JIT, use a PC-relative branch | Dale Johannesen | 2008-08-12 | 1 | -2/+14 | 
| *  | Mark function used by asm block as used, otherwise optimizer may not see the ... | Devang Patel | 2008-07-16 | 1 | -1/+3 | 
| *  | X86-64 PIC jump table values are different from x86-32 cases, they are dest -... | Evan Cheng | 2008-07-16 | 1 | -0/+4 | 
| *  | Fixes for being compiled PIC on Linux. This isn't the most | Dan Gohman | 2008-06-24 | 1 | -3/+10 | 
| *  | Don't break strict aliasing. | Evan Cheng | 2008-06-05 | 1 | -6/+6 | 
| *  | Unbreak build on x86-64. | Dale Johannesen | 2008-04-16 | 1 | -1/+1 | 
| *  | Correlate stubs with functions in JIT: when emitting a stub, the JIT tells th... | Nicolas Geoffray | 2008-04-16 | 1 | -13/+16 | 
| *  | Add Win64 compilation callback. This allows easy examples to be JITed on Win64! | Anton Korobeynikov | 2008-03-23 | 1 | -5/+4 | 
| *  | Code cleanup. Provide generic way of selecting JIT pointer bitwidth regardless | Anton Korobeynikov | 2008-03-23 | 1 | -22/+30 | 
| *  | Remove old-standing obsolete code. | Anton Korobeynikov | 2008-03-23 | 1 | -9/+11 | 
| *  | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 1 | -0/+1 | 
| *  | Silence warning about loss of precision. | Bill Wendling | 2008-01-08 | 1 | -1/+1 | 
| *  | X86 JIT PIC jumptable support. | Evan Cheng | 2008-01-05 | 1 | -0/+6 | 
| *  | X86 PIC JIT support fixes: encoding bugs, add lazy pointer stubs support. | Evan Cheng | 2008-01-04 | 1 | -0/+12 | 
| *  | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 | 
| *  | Erm, really disable :) | Anton Korobeynikov | 2007-12-22 | 1 | -1/+1 | 
| *  | Disable, until we'll really need it | Anton Korobeynikov | 2007-12-22 | 1 | -0/+3 | 
| *  | Preliminary PIC JIT support for X86 (32-bit) / Darwin. | Evan Cheng | 2007-12-22 | 1 | -1/+8 | 
| *  | Correct typo for Linux: s/esp/%rsp/ | Scott Michel | 2007-12-12 | 1 | -1/+1 | 
| *  | Hey, English is not my native language :) | Anton Korobeynikov | 2007-12-10 | 1 | -1/+1 | 
| *  | Clarify the need of CFI() stuff | Anton Korobeynikov | 2007-12-10 | 1 | -0/+3 | 
| *  | Provide convenient way to disable CFI stuff for old/broken assemblers. | Anton Korobeynikov | 2007-12-10 | 1 | -70/+76 | 
| *  | Disable cfi directives for now, darwin does't support them. | Chris Lattner | 2007-12-10 | 1 | -67/+70 | 
| *  | And finally annotate X86-64 version of callback.  | Anton Korobeynikov | 2007-12-10 | 1 | -24/+51 | 
| *  | Provide annotation for SSE version of callback. It's even more | Anton Korobeynikov | 2007-12-10 | 1 | -1/+26 | 
| *  | Annotate JIT callback function with call frame infromation.  | Anton Korobeynikov | 2007-12-10 | 1 | -1/+19 | 
| *  | Oops. | Evan Cheng | 2007-03-14 | 1 | -1/+1 | 
| *  | x86-64 JIT stub codegen. | Evan Cheng | 2007-03-14 | 1 | -0/+11 | 
| *  | Preliminary support for X86-64 JIT stub codegen. | Evan Cheng | 2007-03-14 | 1 | -3/+35 |