aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Expand)Author
2011-08-03Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets.Bill Wendling
2011-08-03Kill the export list as well.Evan Cheng
2011-08-02lldb doesn't need the edis dylib any more.Evan Cheng
2011-08-02Move methods in PassManagerBuilder offline.Rafael Espindola
2011-08-02move PassManagerBuilder.h to IPO. This is a non intuitive place to put it,Rafael Espindola
2011-07-29Switch the CMake edis build over to add_llvm_library_dependenciesDouglas Gregor
2011-07-29Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth
2011-07-26Fix llvm-mc target detection code to match llc.Evan Cheng
2011-07-26Don't try to dereference syms[0] on an empty vector. Reported by Todd JacksonNick Lewycky
2011-07-26Rename createCodeEmitter to createMCCodeEmitter; createObjectStreamer to crea...Evan Cheng
2011-07-26Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...Evan Cheng
2011-07-25Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCA...Evan Cheng
2011-07-25I will save before I commit.Benjamin Kramer
2011-07-25llvm-objdump: Ignore unreachable blocks when printing the CFG.Benjamin Kramer
2011-07-25Separate MCInstPrinter registration from AsmPrinter registration.Evan Cheng
2011-07-25Fix typo.Nick Lewycky
2011-07-25Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMa...Evan Cheng
2011-07-25Builds llvmc and its examples with CMake.Oscar Fuentes
2011-07-25Fixes VS support for llvmc mcc16 llvmc example.Oscar Fuentes
2011-07-23Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng
2011-07-22Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng
2011-07-22llvm-objdump: Don't ignore errors from raw_fd_ostream.Benjamin Kramer
2011-07-22llvm-objdump: Skip branches that leave the current function.Benjamin Kramer
2011-07-22Move the registered target printing in version strings completely out ofChandler Carruth
2011-07-21Convert ConstantExpr::getGetElementPtr andJay Foad
2011-07-20Unbreak the MSVC build. Since the "next" function already exists in the MSVC ...Francois Pichet
2011-07-20Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng
2011-07-20Fix cmake.Benjamin Kramer
2011-07-20Sketch out an CFG reconstruction mode for llvm-objdump.Benjamin Kramer
2011-07-20- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng
2011-07-20Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng
2011-07-19Fix off-by-one.Benjamin Kramer
2011-07-19Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng
2011-07-18Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-18LLC doesn't need to create MCInstrInfo's.Evan Cheng
2011-07-15Teach llvm-objdump to disassemble sections symbol by symbol.Benjamin Kramer
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-14Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge...Evan Cheng
2011-07-14CMake: Add a new configuration option LLVM_BUILD_CLANG that'sDouglas Gregor
2011-07-14Unfortunately several files in MC are badly violating layering rule by usingEvan Cheng
2011-07-13Revert accidental commit.Evan Cheng
2011-07-13It's not safe to fold (fptrunc (sqrt (fpext x))) to (sqrtf x) if there is ano...Evan Cheng
2011-07-12Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad
2011-07-12Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling
2011-07-11Fix LTO after the recent MC subtarget refactoring.Cameron Zwarich
2011-07-11Disassembler doesn't need TargetMachine anymore.Evan Cheng
2011-07-11De-constify Types in StructType::get() and TargetData::getIntPtrType().Jay Foad
2011-07-11- Eliminate MCCodeEmitter's dependency on TargetMachine. It now uses MCInstrInfoEvan Cheng
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner