aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser
AgeCommit message (Expand)Author
2011-03-03Use X86_thiscall calling convention for Win64 as well.Tilmann Scheller
2011-03-02Add Win64 thiscall calling convention.Tilmann Scheller
2011-03-02Add a special streamer to libLTO that just records symbols definitions andRafael Espindola
2011-02-15convert ConstantVector::get to use ArrayRef.Chris Lattner
2011-02-14revert my ConstantVector patch, it seems to have made the llvm-gccChris Lattner
2011-02-14Switch ConstantVector::get to use ArrayRef instead of a pointer+sizeChris Lattner
2011-02-07implement .ll and .bc support for nsw/nuw on shl and exact on lshr/ashr.Chris Lattner
2011-02-06enhance vmcore to know that udiv's can be exact, and add a trivialChris Lattner
2011-01-25Move unnamed_addr after the function arguments on Sabre's request.Rafael Espindola
2011-01-15Allow unnamed_addr on declarations.Rafael Espindola
2011-01-13Reject uses of unnamed_addr in declarations.Rafael Espindola
2011-01-08First step in fixing PR8927:Rafael Espindola
2010-12-19Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky
2010-12-19Add missing std:: prefixes to some calls. C++ doesn't require that <cfoo>Nick Lewycky
2010-12-16MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer
2010-12-09Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer
2010-12-07PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad
2010-10-25Add a new 'hotpatch' attribute. This attribute will insert a two-byte no-opCharles Davis
2010-10-21AlignLoc is never used for anything - zap it (gcc-4.6 warning).Duncan Sands
2010-10-16Eliminate some calls to Value::getNameStr.Benjamin Kramer
2010-09-30Pacify a noisy compiler, and sink this variable declaration closer to its uses.Nick Lewycky
2010-09-29Silence compiler warning.Nick Lewycky
2010-09-27Push twines deeper into SourceMgr's error handling methods.Benjamin Kramer
2010-09-25Add ret instruction to PTX backendChe-Liang Chiou
2010-09-13Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."Michael J. Spencer
2010-09-10CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.Michael J. Spencer
2010-09-10Add X86 MMX type to bitcode and Type.Dale Johannesen
2010-08-28remove unions from LLVM IR. They are severely buggy and notChris Lattner
2010-08-24Add a comment explaining why this code doesn't just callDan Gohman
2010-08-24Add a comment explaining why this code is more complex than itDan Gohman
2010-08-24Extend function-local metadata to be usable as attachments.Dan Gohman
2010-08-24Give ParseInstructionMetadata access to the PerFunctionState object.Dan Gohman
2010-08-20Create the new linker type "linker_private_weak_def_auto".Bill Wendling
2010-08-20Introduce a new temporary MDNode concept. Temporary MDNodes areDan Gohman
2010-08-04Don't print the filename twice in file-not-found errors.Dan Gohman
2010-07-30Move MaximumAlignment to be a member of the Value class.Dan Gohman
2010-07-28Define a maximum supported alignment value for load, store, andDan Gohman
2010-07-24Revert r109361; it's impossible to write a call with an argument with anEli Friedman
2010-07-24Minor simplification.Eli Friedman
2010-07-24Make the ll parser check that arguments have valid types.Eli Friedman
2010-07-21Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman
2010-07-21Disallow null as a named metadata operand.Dan Gohman
2010-07-14Factor out metadata parsing into a separate function.Dan Gohman
2010-07-13Add support for empty named metadata too. This isn't particularlyDan Gohman
2010-07-13Add support for empty metadata nodes: !{}.Dan Gohman
2010-07-01Implement the "linker_private_weak" linkage type. This will be used forBill Wendling
2010-06-29Revert r107205 and r107207.Bill Wendling
2010-06-29Introducing the "linker_weak" linkage type. This will be used for Objective-CBill Wendling
2010-05-28Eliminate the restriction that the array size in an alloca must be i32.Dan Gohman
2010-05-16Add support for thiscall calling convention.Anton Korobeynikov