aboutsummaryrefslogtreecommitdiff
path: root/tools/bugpoint/ExtractFunction.cpp
AgeCommit message (Expand)Author
2010-09-01Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman
2010-08-20Convert tools to use tool_output_file, and introduce errorDan Gohman
2010-08-10Use RunPassesOn as in the rest of bugpoint.Rafael Espindola
2010-08-08Most of bugpoint now only needs to know the pass names.Rafael Espindola
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-07-31The BlockExtractorPass() constructor was not reading the BlockFile and that wasRafael Espindola
2010-07-30Do not pass a copy of the value map, pass a reference to it.Duncan Sands
2010-07-28Instead of abusing swapProgramIn, just add a Module argument toRafael Espindola
2010-07-20Speculatively revert r108813, in an attempt to get the self-host buildbots wo...Owen Anderson
2010-07-20Reapply r108794, a fix for the failing test from last time.Owen Anderson
2010-07-20Revert r108794, "Separate PassInfo into two classes: a constructor-freeDaniel Dunbar
2010-07-20Separate PassInfo into two classes: a constructor-free superclass (StaticPass...Owen Anderson
2010-06-24Use ValueMap instead of DenseMap.Devang Patel
2010-06-07Run dead type elimination after dead argument elimination.Dan Gohman
2010-06-07Use ->isVoidTy().Dan Gohman
2010-06-04No need to special-case structs here; structs are first-class now.Dan Gohman
2010-05-27Eliminate some unnessary Path::exists() calls.Dan Gohman
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-01-28Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer
2009-09-19Remove the default value for ConstantStruct::get's isPacked parameter andNick Lewycky
2009-09-07Add -output-prefix option to bugpoint (to change the default output name).Daniel Dunbar
2009-08-25Make LLVM command-line tools overwrite their output files without -f.Dan Gohman
2009-08-23Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner
2009-08-23Change raw_fd_ostream to take flags as an optional bitmask Chris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-05Privatize the StructType table, which unfortunately involves routing contexts...Owen Anderson
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson
2009-07-30Move more code back to 2.5 APIs.Owen Anderson
2009-07-29Move types back to the 2.5 API.Owen Anderson
2009-07-28Change ConstantArray to 2.5 API.Owen Anderson
2009-07-27Move ConstantStruct back to 2.5 API.Owen Anderson
2009-07-26Remove Value::setName(const char*, unsigned).Daniel Dunbar
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-24Switch to getNameStr().Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-16Convert more tools code from cerr and cout to errs() and outs().Dan Gohman
2009-07-15Use errs() instead of std::cerr.Dan Gohman
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson
2009-07-13#include "llvm/Assembly/Writer.h" to get the declaration for WriteAsOperand.Dan Gohman
2009-07-13Fix the build.Owen Anderson
2009-07-13Begin the painful process of tearing apart the rat'ss nest that is Constants....Owen Anderson
2009-07-08Switch GlobalVariable ctors to a sane API, where *either* a context or a modu...Owen Anderson
2009-07-08Push LLVMContext through GlobalVariables and IRBuilder.Owen Anderson
2009-04-22Use CloneModule's ValueMap in more places, instead of lookingDan Gohman
2009-01-15Add the private linkage.Rafael Espindola
2008-07-08Global variables beginning with \01 have special meaning on Darwin, so we nee...Owen Anderson
2008-04-28several multiple-retval fixes for bugpoint.Chris Lattner
2008-01-08Fix PR1797Chris Lattner