aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86JITInfo.cpp
AgeCommit message (Expand)Author
2012-02-13Fix various issues (or do cleanups) found by enabling certain MSVC warnings.Ahmed Charles
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2011-12-03Creating multiple JITs on X86 in multiple threads causes multiple writes (ofNick Lewycky
2011-02-05lib/Target/X86/X86JITInfo.cpp: Add Win64 stuff.NAKAMURA Takumi
2011-02-05Target/X86: Fix whitespace.NAKAMURA Takumi
2010-11-29Merge System into Support.Michael J. Spencer
2010-10-23Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth
2010-03-15Tell Valgrind when we modify already-executed machine code so it knowsJeffrey Yasskin
2010-02-08Fix x86 JIT stub on MSVC.Torok Edwin
2010-01-05Change errs() to dbgs().David Greene
2009-12-15Change indirect-globals to use a dedicated allocIndirectGV. This lets usJeffrey Yasskin
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-16Make X86-64 in the Large model always emit 64-bit calls.Jeffrey Yasskin
2009-09-15Change the marker byte for stubs from 0xcd to 0xce (another form ofDale Johannesen
2009-09-06Do not create calls via PLT in compilation callback - this is higly platformAnton Korobeynikov
2009-09-03Unbreak x86_64 build.Evan Cheng
2009-09-03X86JITInfo::getLazyResolverFunction() should not read cpu id to determine whe...Evan Cheng
2009-08-28Short-term workaround for frame-related weirdness on win64.Anton Korobeynikov
2009-08-23remove the last uses of Config/alloca.hChris Lattner
2009-08-19Modify an assert to avoid what looks like a GCC 4.2.4 signed-ness bug.Reid Kleckner
2009-08-051) Proper emit displacements for x86, using absolute relocations where necessaryBruno Cardoso Lopes
2009-08-03- s/DOUT/DEBUG(errs()/gBill Wendling
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-12Remove extra \n from LLVM_UNREACHABLE calls.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-08Start converting to new error handling API.Torok Edwin
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-02-06Use .size and .type on ELF systems; this helps tools that mapDan Gohman
2008-12-10Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...Evan Cheng
2008-11-10Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used.Evan Cheng
2008-11-08Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ...Evan Cheng
2008-11-05Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS XEvan Cheng
2008-10-25Support for allocation of TLS variables in the JIT. Allocation of a globalNicolas Geoffray
2008-08-12When resolving a stub in x86-64 JIT, use a PC-relative branchDale Johannesen
2008-07-16Mark function used by asm block as used, otherwise optimizer may not see the ...Devang Patel
2008-07-16X86-64 PIC jump table values are different from x86-32 cases, they are dest -...Evan Cheng
2008-06-24Fixes for being compiled PIC on Linux. This isn't the mostDan Gohman
2008-06-05Don't break strict aliasing.Evan Cheng
2008-04-16Unbreak build on x86-64.Dale Johannesen
2008-04-16Correlate stubs with functions in JIT: when emitting a stub, the JIT tells th...Nicolas Geoffray
2008-03-23Add Win64 compilation callback. This allows easy examples to be JITed on Win64!Anton Korobeynikov
2008-03-23Code cleanup. Provide generic way of selecting JIT pointer bitwidth regardlessAnton Korobeynikov
2008-03-23Remove old-standing obsolete code.Anton Korobeynikov
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov
2008-01-08Silence warning about loss of precision.Bill Wendling
2008-01-05X86 JIT PIC jumptable support.Evan Cheng
2008-01-04X86 PIC JIT support fixes: encoding bugs, add lazy pointer stubs support.Evan Cheng
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner