- c6e2009 remove some nonascii weird stuff by Chris Lattner · 15 years ago
- cf4d2f1 add some fixme's by Chris Lattner · 15 years ago
- a276c60 Remove MallocInst from LLVM Instructions. by Victor Hernandez · 15 years ago
- 13ad5aa Autoupgrade malloc insts to malloc calls. by Victor Hernandez · 15 years ago
- a43d46f Parse PHI instruction with attached metadata. by Devang Patel · 15 years ago
- 4360298 Add an "msasm" flag to inline asm as suggested in PR 5125. by Dale Johannesen · 15 years ago
- 6225d64 Parse GEP with attached custom metadata. This happens during libprofile_rt.bca build. by Devang Patel · 15 years ago
- cf0fe8d strength reduce a ton of type equality tests to check the typeid (Through by Chris Lattner · 15 years ago
- 58a230a Only one custom meadata of each kind can be attached with an instruction. by Devang Patel · 15 years ago
- 0475c91 Parse custom metadata attached with an instruction. by Devang Patel · 15 years ago
- e30e678 s/class Metadata/class MetadataContext/g by Devang Patel · 15 years ago
- a214840 Do not use global typedef for MDKindID. by Devang Patel · 15 years ago
- 3e0c99a Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it causes regressions in the nightly tests. by Victor Hernandez · 15 years ago
- 96b930d Auto-upgrade malloc instructions to malloc calls. by Victor Hernandez · 15 years ago
- a279bc3 Tabs -> spaces, and remove trailing whitespace. by Daniel Dunbar · 15 years ago
- f633a06 Fix parsing of optional metadata for 'load', 'store' and 'alloc' instructions. by Devang Patel · 15 years ago
- cea188a Parse debug info attached with an instruction. by Devang Patel · 15 years ago
- f8dbee7 Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed. by Dan Gohman · 15 years ago
- 92a97a9 Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", this by Daniel Dunbar · 15 years ago
- 859fff4 Include optional subclass flags, such as inbounds, nsw, etc., in the by Dan Gohman · 15 years ago
- 2b4f28e plug another leak in LLParser::PerFunctionState::SetInstName() by Nuno Lopes · 15 years ago
- 531552a plug memory leak in LLParser::PerFunctionState::SetInstName() by deleting a value after replacing it by Nuno Lopes · 15 years ago
- 65c3c8f Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. by Sandeep Patel · 15 years ago
- 4190554 Minor logic simplification. by Dan Gohman · 15 years ago
- e4b2756 Reapply 79977. Use MDNodes to encode debug info in llvm IR. by Devang Patel · 15 years ago
- 8245988 Revert 79977. It causes llvm-gcc bootstrap failures on some platforms. by Devang Patel · 15 years ago
- de86d47 Add an 'inline hint' attribute to represent source by Dale Johannesen · 15 years ago
- 1c8a23c Eliminate the unused Context argument on one of the ICmpInst and FCmpInst by Dan Gohman · 15 years ago
- 2a610c7 Update DebugInfo interface to use metadata, instead of special named llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well. by Devang Patel · 15 years ago
- 5078f84 Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrap by Dan Gohman · 15 years ago
- 0e275dc Actually privatize a IntegerTypes, and fix a few bugs exposed by this. by Owen Anderson · 15 years ago
- 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
- 3845e50 Extend the AsmWriter to print unnamed numbered types as "%0 = type ..." by Dan Gohman · 15 years ago
- d7f2a6c Privatize the StructType table, which unfortunately involves routing contexts through a number of APIs. by Owen Anderson · 15 years ago
- 647e301 Move the metadata constructors back to 2.5 syntax. by Owen Anderson · 15 years ago
- a7235ea Move a few more APIs back to 2.5 forms. The only remaining ones left to change back are by Owen Anderson · 15 years ago
- 5defacc Move getTrue() and getFalse() to 2.5-like APIs. by Owen Anderson · 15 years ago
- 9e9a0d5 Move more code back to 2.5 APIs. by Owen Anderson · 15 years ago
- debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
- 5316bf0 There is no need to keep name ref in NamedMDNode. by Devang Patel · 15 years ago
- baf3c40 Move ConstantExpr to 2.5 API. by Owen Anderson · 15 years ago
- dcb40a3 Minor code simplification. by Dan Gohman · 15 years ago
- eff2ab6 Parse named metadata. by Devang Patel · 15 years ago
- 0a9f7b9 Rename MDNode.h header. It defines MDnode and other metadata classes. by Devang Patel · 15 years ago
- af7ec97 Return ConstantVector to 2.5 API. by Owen Anderson · 15 years ago
- 1fd7096 Change ConstantArray to 2.5 API. by Owen Anderson · 15 years ago
- 8fa3338 Move ConstantStruct back to 2.5 API. by Owen Anderson · 15 years ago
- dd8004d Add a new keyword 'inbounds' for use with getelementptr. See the by Dan Gohman · 15 years ago
- 6f83c9c Move ConstantFP construction back to the 2.5-ish API. by Owen Anderson · 15 years ago
- 59858cf Change the assembly syntax for nsw, nuw, and exact, putting them by Dan Gohman · 15 years ago
- 30d3b91 Test commit: fix typo by Benjamin Kramer · 15 years ago
- 92ccf70 Finish migrating VMCore to StringRef/Twine based APIs. by Daniel Dunbar · 15 years ago
- a3500da Move ExtractElementInst to ::Create instead of new. Update all uses. by Eric Christopher · 15 years ago
- eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
- 4e9bac3 Fix assert assembling zero-argument constant GEP. by Eli Friedman · 15 years ago
- 2f9c3b0 MDString by Devang Patel · 15 years ago
- db5e900 Silence "uninitialized use" warning. by Devang Patel · 15 years ago
- 104cf9e Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADATA_BLOCK in bitcode file. by Devang Patel · 15 years ago
- 0aaf4e9 Fix error message for correct opcode. by Eric Christopher · 15 years ago
- 08d012e Rename the new unsigned and signed keywords to nuw and nsw, by Dan Gohman · 15 years ago
- e54abc9 Introduce MetadataBase, a base class for MDString and MDNode. by Devang Patel · 15 years ago
- b3056fa Rename getConstantInt{True|False} to get{True|False} at Chris' behest. by Owen Anderson · 15 years ago
- 1224c38 Assembly and Bitcode support for unsigned/signed overflow flags and by Dan Gohman · 15 years ago
- 256be96 Refactor metadata parsing routines into separate functions. by Devang Patel · 15 years ago
- 3d10a5a Add plumbing for the `linker_private' linkage type. This type is meant for by Bill Wendling · 15 years ago
- c5ec8a7 Add support for naked functions by Anton Korobeynikov · 15 years ago
- 50dead0 Revert yesterday's change by removing the LLVMContext parameter to AllocaInst and MallocInst. by Owen Anderson · 15 years ago
- 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
- c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
- c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 15 years ago
- 333c400 This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 15 years ago
- d109540 Fix thinko. by Devang Patel · 15 years ago
- 2214c94 Drop "constant" from !0 = constant metadata !{...} by Devang Patel · 15 years ago
- 1c7eea6 by Devang Patel · 15 years ago
- e9b11b4 Switch GlobalVariable ctors to a sane API, where *either* a context or a module is required. by Owen Anderson · 15 years ago
- 7f6aa2b Remove the vicmp and vfcmp instructions. Because we never had a release with by Nick Lewycky · 15 years ago
- 3d29df3 Push LLVMContext through GlobalVariables and IRBuilder. by Owen Anderson · 15 years ago
- eeb4a84 switch the .ll parser to use SourceMgr. by Chris Lattner · 15 years ago
- 12c99d8 Use LLVMContext for generating MDStrings too. by Owen Anderson · 15 years ago
- e951bdf Use LLVMContext to generate metadata constants. by Owen Anderson · 15 years ago
- b43eae7 Use LLVMContext for generating UndefValue constants too! by Owen Anderson · 15 years ago
- fba933c Try again at converting the LLParser to use LLVMContext, without massive breakage this time. by Owen Anderson · 15 years ago
- aa3943b --- Reverse-merging (from foreign repository) r74648 into '.': by Bill Wendling · 15 years ago
- c137ea6 Convert LLParser to use LLVMContext for creating constants. by Owen Anderson · 15 years ago
- 923078c Support stand alone metadata syntax. by Devang Patel · 15 years ago
- 0fd3806 improve the APIs for creating struct and function types with no arguments/elements by Chris Lattner · 15 years ago
- 385f5a9 Address review comments: add 3 ARM calling conventions. by Anton Korobeynikov · 15 years ago
- 24b108b Fix a typo in a diagnostic. by Dan Gohman · 15 years ago
- a119de8 Fix old-style type names in comments. by Dan Gohman · 15 years ago
- a5f54a0 Create FunctionType::isValidArgumentType to go along with isValidReturnType. by Nick Lewycky · 15 years ago
- 00907c7 Refuse metadata* type for function arguments. by Nick Lewycky · 15 years ago
- 578efa9 Add new function attribute - noimplicitfloat by Devang Patel · 15 years ago
- ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 15 years ago
- d18e31a Add new function attribute - noredzone. by Devang Patel · 15 years ago
- e3e51c0 Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
- cb33799 Make MDNode use CallbackVH. Also change MDNode to store Value* instead of by Nick Lewycky · 15 years ago
- 040f758 testcase and asmparser fix for PR4066 by Chris Lattner · 16 years ago
- 55f64db Fix warning in .ll parser, detect and reject available_externally on function by Nick Lewycky · 16 years ago
- 266c7bb Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
- 21cc446 Add support for embedded metadata to LLVM. This introduces two new types of by Nick Lewycky · 16 years ago