aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLLexer.cpp
AgeCommit message (Expand)Author
2009-10-28full asmparser support for blockaddress. We can now do:Chris Lattner
2009-10-28rename indbr -> indirectbr to appease the residents of #llvm.Chris Lattner
2009-10-27add enough support for indirect branch for the feature test to passChris Lattner
2009-10-26Remove FreeInst.Victor Hernandez
2009-10-21Rename msasm to alignstack per review.Dale Johannesen
2009-10-18add some fixme'sChris Lattner
2009-10-17Autoupgrade malloc insts to malloc calls.Victor Hernandez
2009-10-13Add an "msasm" flag to inline asm as suggested in PR 5125.Dale Johannesen
2009-09-29Parse custom metadata attached with an instruction.Devang Patel
2009-09-25Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it c...Victor Hernandez
2009-09-24Auto-upgrade malloc instructions to malloc calls.Victor Hernandez
2009-09-16Parse debug info attached with an instruction.Devang Patel
2009-08-26Add an 'inline hint' attribute to represent sourceDale Johannesen
2009-08-24Fix the build with gcc-4.4 on linux: header neededDuncan Sands
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-13Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef.Daniel Dunbar
2009-07-29Move types back to the 2.5 API.Owen Anderson
2009-07-29Parse named metadata.Devang Patel
2009-07-27Add a new keyword 'inbounds' for use with getelementptr. See theDan Gohman
2009-07-22Rename the new unsigned and signed keywords to nuw and nsw,Dan Gohman
2009-07-20Assembly and Bitcode support for unsigned/signed overflow flags andDan Gohman
2009-07-20Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling
2009-07-17Add support for naked functionsAnton Korobeynikov
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-08Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky
2009-07-07Use LLVMContext in the LLLexer.Owen Anderson
2009-07-02switch the .ll parser to use SourceMgr.Chris Lattner
2009-07-02switch the .ll parser into SMDiagnostic.Chris Lattner
2009-06-16Address review comments: add 3 ARM calling conventions.Anton Korobeynikov
2009-06-05Add new function attribute - noimplicitfloatDevang Patel
2009-06-04Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman
2009-06-04Add new function attribute - noredzone. Devang Patel
2009-05-30Give embedded metadata its own type instead of relying on EmptyStructTy.Nick Lewycky
2009-04-13Add a new "available_externally" linkage type. This is intendedChris Lattner
2009-04-04Add support for embedded metadata to LLVM. This introduces two new types ofNick Lewycky
2009-03-23Fix internal representation of fp80 to be theDale Johannesen
2009-03-11It makes no sense to have a ODR version of commonDuncan Sands
2009-03-11Remove the one-definition-rule version of extern_weakDuncan Sands
2009-03-07Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands
2009-01-15Add the private linkage.Rafael Espindola
2009-01-02Alphabetized #includes.Misha Brukman
2009-01-02Down with trailing whitespace!Misha Brukman
2009-01-02add a #include to hopefully get the x86-64-linux buildbot building.Chris Lattner
2009-01-02Reimplement the old and horrible bison parser for .ll files with a niceChris Lattner
2008-12-19Commit missed files from nocapture change.Nick Lewycky
2008-12-16Temporarily revert r61019, r61030, and r61040. These were breaking LLVM ReleaseBill Wendling
2008-12-15Introducing nocapture, a parameter attribute for pointers to indicate that theNick Lewycky
2008-11-13Implement stack protectors as function attributes: "ssp" and "sspreq".Bill Wendling
2008-09-26Implement function notes as function attributes. Devang Patel