- cbb170d Make it possible to set the target triple and expose that with an option in the by Rafael Espindola · 15 years ago
- 0b5b102 Don't try to build a plugin on windows. by Rafael Espindola · 15 years ago
- c9234c5 llc: Fix help typo as pointed out by Nick Lewycky. by Michael J. Spencer · 15 years ago
- ec62d53 Add a opt-args option that can be used to pass arguments to every opt by Rafael Espindola · 15 years ago
- 53843f8 s/libLLVMgold/LLVMgold/g by Rafael Espindola · 15 years ago
- 8261dfe Most of bugpoint now only needs to know the pass names. by Rafael Espindola · 15 years ago
- 6b01837 Try to fix cmake build. by Rafael Espindola · 15 years ago
- 7f99f74 Run opt instead of bugpoint itself. by Rafael Espindola · 15 years ago
- 5b77cce Another missing file :-( by Rafael Espindola · 15 years ago
- f47d709 Add missing file. by Rafael Espindola · 15 years ago
- 3cb9626 Move the bugpoint test passes to a plugin in preparation for having bugpoint by Rafael Espindola · 15 years ago
- e68cd26 llc: Clarify -mc-relax-all description. by Michael J. Spencer · 15 years ago
- 90c579d Reapply r110396, with fixes to appease the Linux buildbot gods. by Owen Anderson · 15 years ago
- 1f74590 Revert r110396 to fix buildbots. by Owen Anderson · 15 years ago
- 9ccaf53 Don't use PassInfo* as a type identifier for passes. Instead, use the address of the static by Owen Anderson · 15 years ago
- b8be03b0 Revert bugpoint change due to buildbot breakage. by Bob Wilson · 15 years ago
- d02dc8d Run opt instead of bugpoint itself. by Rafael Espindola · 15 years ago
- 248d1c6 Add const to compileProgram and to the various test functions in CrashDebugger. by Rafael Espindola · 15 years ago
- 5d8cace Add a Module argument to the remaining runPasses methods and mark getContext by Rafael Espindola · 15 years ago
- ca356af Make EmitProgressBitcode const and add a Module argument to runPasses. Use by Rafael Espindola · 15 years ago
- b259c01 build: Don't pass -avoid-version or -no-undefined on Darwin, they don't do by Daniel Dunbar · 15 years ago
- 7c380ed llc: Add -mc-relax-all. by Michael J. Spencer · 15 years ago
- 1379326 Add const to some methods and change TestMergedProgram to return the merged by Rafael Espindola · 15 years ago
- d720670 The BlockExtractorPass() constructor was not reading the BlockFile and that was by Rafael Espindola · 15 years ago
- 10757dd Add a Program argument to diffProgram to avoid a use of swapProgramIn. by Rafael Espindola · 15 years ago
- 80a0985 Do not pass a copy of the value map, pass a reference to it. by Duncan Sands · 15 years ago
- 44a9860 Transcribe IRC to svn. Also don't print basic block names twice if they match. by John McCall · 15 years ago
- 73b21b7 Make the header self-contained and follow #include guidelines. by John McCall · 15 years ago
- e5cbaf1 Switch to using the LLVM CommandLine library so that our help by John McCall · 15 years ago
- 1abcd06 Plug the remaining MC leaks by giving MCObjectStreamer/MCAsmStreamer ownership of the TargetAsmBackend and the MCCodeEmitter. by Benjamin Kramer · 15 years ago
- 115a932 Make the test while reducing blocks functional. This avoids accessing freed by Rafael Espindola · 15 years ago
- 82bd5ea Centralize the logic to permanently unify two instructions and make sure by John McCall · 15 years ago
- e292143 Diagnose non-structural differences in the case where blocks were by John McCall · 15 years ago
- 02e116c When unifying instructions during a block diff, actually complain about by John McCall · 15 years ago
- dfb44ac Somehow I was getting reasonable results for the test cases I was interested by John McCall · 15 years ago
- 62dc1f3 Cache the result of errs() and implement formatted logging. by John McCall · 15 years ago
- 3dd706b Add the llvm-diff tool, which performs a relatively naive structural by John McCall · 15 years ago
- 887b703 Use the right gcc tool args for IsARMArchitecture. by Jakob Stoklund Olesen · 15 years ago
- 7d3056b simplify by using CallSite constructors; virtually eliminates CallSite::get from the tree by Gabor Greif · 15 years ago
- bae1b71 Instead of abusing swapProgramIn, just add a Module argument to by Rafael Espindola · 15 years ago
- 84ae206 Clone and restore the module being reduced in by Rafael Espindola · 15 years ago
- b30cdd8 Revert unintended white space change. by Rafael Espindola · 15 years ago
- 97595eb Fix a trivial use after free. by Rafael Espindola · 15 years ago
- b374d4f Get rid of exceptions in llvmc. by Mikhail Glushenkov · 15 years ago
- c510a70 there is now no reason to link in TARGETS_TO_BUILD since we list by Chris Lattner · 15 years ago
- 6f2cea0 fix edis to only try to link in the x86 parts if the x86 backend is by Chris Lattner · 15 years ago
- aad9c4c Fix edis makefile by Douglas Gregor · 15 years ago
- e744ab2 fix DISABLE_EDIS by Chris Lattner · 15 years ago
- 56ff3f1 this logic is handled by tools/makefile. by Chris Lattner · 15 years ago
- ce61aed edis needs to link in mcdisassembler. by Chris Lattner · 15 years ago
- 9ae2e33 update cmake. by Chris Lattner · 15 years ago
- feb9cf4 edinfo doesn't need to be built here. by Chris Lattner · 15 years ago
- 847da55 start straightening out libedis's dependencies and make it fit by Chris Lattner · 15 years ago
- 8be3291 Speculatively revert r108813, in an attempt to get the self-host buildbots working again. I don't see why this patch by Owen Anderson · 15 years ago
- 9e08100 Reapply r108794, a fix for the failing test from last time. by Owen Anderson · 15 years ago
- e8a469c Revert r108794, "Separate PassInfo into two classes: a constructor-free by Daniel Dunbar · 15 years ago
- 8ba15cb Separate PassInfo into two classes: a constructor-free superclass (StaticPassInfo) and a constructor-ful subclass (PassInfo). by Owen Anderson · 15 years ago
- fc97aeb llvmc: Add a new option type (switch_list). by Mikhail Glushenkov · 15 years ago
- d73ada7 Target: Give the TargetAsmParser access to the TargetMachine. by Daniel Dunbar · 15 years ago
- 0261243 edis: Save the TargetMachine in the EDDisassembler object. by Daniel Dunbar · 15 years ago
- 9fbb37e MC: Move several clients to using AsmParser constructor function. by Daniel Dunbar · 15 years ago
- 346cc61 llvm-mc: Fix llvm-mc -as-lex. by Daniel Dunbar · 15 years ago
- cba3da0 Fix what seems like a clear buffer overflow, noticed by cppcheck. by Duncan Sands · 15 years ago
- 43906f9 Make llvm-bcanalyzer print out the full enum name for all metadata by Dan Gohman · 15 years ago
- 48bf8f0 build/Darwin: Add an LLVM_LTO_VERSION_OFFSET make variable to allow offsetting by Daniel Dunbar · 15 years ago
- 8f70c3d Remove some broken code to check the DISABLE_EDIS flag (edis is now in the by Bob Wilson · 15 years ago
- 3472766 Convert some tab stops into spaces. by Duncan Sands · 15 years ago
- 5e721d7 Implement the "linker_private_weak" linkage type. This will be used for by Bill Wendling · 15 years ago
- 9186fa6 MC: Pass the target instance to the AsmParser constructor. by Daniel Dunbar · 15 years ago
- c1874b7 Preserve debug info for only extracted symbols. by Devang Patel · 15 years ago
- 002dd18 Make -filelist work with -linker=c++. by Mikhail Glushenkov · 15 years ago
- 07d3177 Revert r107205 and r107207. by Bill Wendling · 15 years ago
- 207855c Introducing the "linker_weak" linkage type. This will be used for Objective-C by Bill Wendling · 15 years ago
- 5137029 Remove variables that are written by not read. by Duncan Sands · 15 years ago
- e9916a3 Use ValueMap instead of DenseMap. by Devang Patel · 15 years ago
- 11f403c Add an extra-library-path option to the plugin. This is used to support by Rafael Espindola · 15 years ago
- bebb640 add_input_file and add_input_library now take const arguments, remove the by Rafael Espindola · 15 years ago
- bc2ed59 Save more temps with -save-temps. by Rafael Espindola · 15 years ago
- dd76f18 Add a pass-through option to the plugin. The use case for this option is to by Rafael Espindola · 15 years ago
- 38a979b Don't produce output only if *all* files are unused. by Rafael Espindola · 15 years ago
- 9a56c32 llvm-mc: Don't set NO_INSTALL on llvm-mc. by Daniel Dunbar · 15 years ago
- 3982c2c Change another reference to the "indirect callgraph node" to by Duncan Sands · 15 years ago
- c0ccc70 Output "external node" rather than "Indirect CallGraph node" when printing by Duncan Sands · 15 years ago
- 221aec6 Plug a leak in the non-error case by removing one level of indirection. by Nick Lewycky · 15 years ago
- d0a6a8c Run dead type elimination after dead argument elimination. by Dan Gohman · 15 years ago
- e49a13e Use ->isVoidTy(). by Dan Gohman · 15 years ago
- 6c80992 Misc cleanups to the gold plugin. by Rafael Espindola · 15 years ago
- 70972bb No need to special-case structs here; structs are first-class now. by Dan Gohman · 15 years ago
- b304ba9 No need to special-case structs here; structs are first-class now. by Dan Gohman · 15 years ago
- c4b5561 Add a emit-llvm option to the plugin and make the path argument to also-emit-llvm optional. by Rafael Espindola · 15 years ago
- 662f738 Perfer !string.empty() over string != "". by Nick Lewycky · 15 years ago
- fc55def Whitespace cleanup. by Nick Lewycky · 15 years ago
- c72f8e9 Don't preserve all symbols in a .so and instead trust gold to know what is by Rafael Espindola · 15 years ago
- d27047f Eliminate some unnessary Path::exists() calls. by Dan Gohman · 15 years ago
- 4b7416b When handling raw_ostream errors manually, use clear_error() so that by Dan Gohman · 15 years ago
- d928fb6 Don't special-case stdout in llvm::WriteBitcodeToFile; just consider by Dan Gohman · 15 years ago
- 7f924a3 Don't create an output stream when output is disabled. by Dan Gohman · 15 years ago
- 26a7074 Avoid calling outs() and fouts() when the stream isn't really needed. by Dan Gohman · 15 years ago
- 4139630 Apply timeouts and memory limits in more places. In particular, when by Duncan Sands · 15 years ago
- fdb5a86 MC: Add an MCLoggingStreamer, for use in debugging integrated-as mismatches. by Daniel Dunbar · 15 years ago