aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
AgeCommit message (Expand)Author
2011-11-15Remove all remaining uses of Value::getNameStr().Benjamin Kramer
2011-11-12Fixed the MCJIT so that it can emit not only instanceSean Callanan
2011-11-12build: Attempt to rectify inconsistencies between CMake and LLVMBuild version...Daniel Dunbar
2011-11-03build: Add initial cut at LLVMBuild.txt files.Daniel Dunbar
2011-11-01rename getHostTriple into getDefaultTargetTripleSebastian Pop
2011-11-01Ignore MachO symbol flags in the upper nibble of n_desc.Jim Grosbach
2011-10-19Adding dependencies to allow -DBUILD_SHARED_LIBS=true to complete.Joe Abbey
2011-10-18The MCJITMemoryManager takes ownership of the JMM, so don't leak it.Jim Grosbach
2011-09-30MCJIT initialization TargetDataDanil Malyshev
2011-09-29Clean up uses of switch instructions so they are not dependent on the operand...Eli Friedman
2011-09-10Fix the asserts in lib/Target/X86/X86ELFWriterInfo.cpp andRichard Trieu
2011-09-09Don't tack "Instruction not interpretable yet!" onto the end ofDuncan Sands
2011-08-24Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng
2011-08-14EE: Provide the symbol "lseek64" explicitly with <unistd.h> on Linux glibc.NAKAMURA Takumi
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-07-29Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth
2011-07-20- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng
2011-07-20Extra semi-colon.Eric Christopher
2011-07-19Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad
2011-07-19Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng
2011-07-18Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions forEvan Cheng
2011-07-18Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-13Add to RuntimeDyld support different object formatsDanil Malyshev
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner
2011-06-30Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name toEvan Cheng
2011-06-29Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng
2011-06-18eliminate the Type::getDescription() method, using "<<" instead. This Chris Lattner
2011-05-19Avoid a Twine that referenced a tmp (which proceded to go out of scope beforeJim Grosbach
2011-05-18Restore sanity to 131601.Jim Grosbach
2011-05-18Objective C functions may use a magic '\1' on the name. Handle that whenJim Grosbach
2011-05-13Be a bit more permissive about symbols we don't understand. Just skip themJim Grosbach
2011-05-13ExecutionEngine: move createJIT() definition (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: fix JIT/MCJIT selectTarget() duplication (v2)Dylan Noblesmith
2011-05-13Teach the RtDyld to tell the memory manager about how much space a functionJim Grosbach
2011-05-12MCJIT section loading should just skip non-text sections rather thanJim Grosbach
2011-05-12The MCJIT memory manager needs to initialize its Module member.Jim Grosbach
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen
2011-05-06ExecutionEngine: delete duplicated filesDylan Noblesmith
2011-05-06ExecutionEngine: add missing fileDylan Noblesmith
2011-05-06ExecutionEngine: move createJIT() definitionDylan Noblesmith
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith
2011-05-06ExecutionEngine: fix JIT/MCJIT selectTarget() duplicationDylan Noblesmith
2011-04-29Fix a C++0x portability issue with std::make_pair. Explicitly providing templ...Douglas Gregor
2011-04-28Fix the last -Wnon-pod-memset I'm seeing. This is benign, but appearsChandler Carruth
2011-04-23Remove unused STL header includes.Jay Foad
2011-04-2280-col fix.Eric Christopher
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner