- e92dee1 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 16 years ago
- d5d5172 Add support for a union type in LLVM IR. Patch by Talin! by Chris Lattner · 16 years ago
- 62de4e7 Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 16 years ago
- 7fb6c5d Fix the bitcode reader to deserialize nuw/nsw/etc. bits properly in the case by Dan Gohman · 16 years ago
- 1c41942 Fix a crasher trying to fold each element in a comparison between two vectors by Nick Lewycky · 16 years ago
- 062f37c Parse function-local metadata inside function blocks by Victor Hernandez · 16 years ago
- b7074b0 s/NextValueNo/NextMDValueNo while processing metadata. by Devang Patel · 16 years ago
- c426124 Compute isFunctionLocal in MDNode ctor or via argument in new function getWhenValsUnresolved(). by Victor Hernandez · 16 years ago
- 444ec8f clean up this code, add a fixme. by Chris Lattner · 16 years ago
- b2a44e0 NamedMDNode element is either null or MDNode. Otherwise this is a malformed NamedMDNode record. by Devang Patel · 16 years ago
- 148981c Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null} by Devang Patel · 16 years ago
- c5bb725 NamedMDNode is a collection MDNodes. by Devang Patel · 16 years ago
- f2052d5 Avoid going through the LLVMContext for type equality where it's safe to dereference the type pointer. by Benjamin Kramer · 16 years ago
- a0d451f Final step in the metadata API restructuring: move the by Chris Lattner · 16 years ago
- dcf0657 This is a major cleanup of the instruction metadata interfaces that by Chris Lattner · 16 years ago
- 9741b1d rename getMDKind -> getMDKindID, make it autoinsert if an MD Kind by Chris Lattner · 16 years ago
- 955449e Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions. by Victor Hernandez · 16 years ago
- 2243fcd Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM by Victor Hernandez · 16 years ago
- e67ebab Update CreateMalloc so that its callers specify the size to allocate: by Victor Hernandez · 16 years ago
- 620cead Revert 85678/85680. The decision is to stay with the current form of by Chris Lattner · 16 years ago
- 7bc5f36 Make blockaddress(@func, null) be valid, and make 'deleting a basic by Chris Lattner · 16 years ago
- 1bd1d9e add bitcode reader support for blockaddress. We can now fully by Chris Lattner · 16 years ago
- 4c3800f rename indbr -> indirectbr to appease the residents of #llvm. by Chris Lattner · 16 years ago
- e078728 add enough support for indirect branch for the feature test to pass by Chris Lattner · 16 years ago
- f756c16 Suppress -Asserts warning. by Daniel Dunbar · 16 years ago
- 9394608 Auto-upgrade free instructions to calls to the builtin free function. by Victor Hernandez · 16 years ago
- b10e68d Hide MetadataContext implementation details. by Devang Patel · 16 years ago
- 5ee3e4b Rename msasm to alignstack per review. by Dale Johannesen · 16 years ago
- 67439f0 Make changes to rev 84292 as requested by Chris Lattner. by Victor Hernandez · 16 years ago
- 6203d9d Autoupgrade malloc insts to malloc calls. by Victor Hernandez · 16 years ago
- 2477bfe Add an "msasm" flag to inline asm as suggested in PR 5125. by Dale Johannesen · 16 years ago
- 3314e60 Remove unnecessary assert. by Devang Patel · 16 years ago
- 82cdc06 strength reduce a ton of type equality tests to check the typeid (Through by Chris Lattner · 16 years ago
- 3402a11 Only one custom meadata of each kind can be attached with an instruction. by Devang Patel · 16 years ago
- 6de78e2 s/class Metadata/class MetadataContext/g by Devang Patel · 16 years ago
- b589616 Do not use global typedef for MDKindID. by Devang Patel · 16 years ago
- 131e0fc Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it causes regressions in the nightly tests. by Victor Hernandez · 16 years ago
- b493c97 Auto-upgrade malloc instructions to malloc calls. by Victor Hernandez · 16 years ago
- 3be44e6 Tabs -> spaces, and remove trailing whitespace. by Daniel Dunbar · 16 years ago
- adc3761 Write and read metadata attachments. by Devang Patel · 16 years ago
- f3a08b8 Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed. by Dan Gohman · 16 years ago
- e0223c2 Public and private corrections, warned about by icc (#304). by Duncan Sands · 16 years ago
- 4f34518 Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", this by Daniel Dunbar · 16 years ago
- 99da1c0 Include optional subclass flags, such as inbounds, nsw, etc., in the by Dan Gohman · 16 years ago
- deda395 Add new value for given index in MDValuePtrs. by Devang Patel · 16 years ago
- 5838baa Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. by Sandeep Patel · 16 years ago
- 15e723d Reapply 79977. Use MDNodes to encode debug info in llvm IR. by Devang Patel · 16 years ago
- 9406042 Revert 79977. It causes llvm-gcc bootstrap failures on some platforms. by Devang Patel · 16 years ago
- e6803b8 Eliminate the unused Context argument on one of the ICmpInst and FCmpInst by Dan Gohman · 16 years ago
- 57b83c7 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 · 16 years ago
- b5ed449 Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrap by Dan Gohman · 16 years ago
- 768e97d Switch to SmallString::str from SmallString::c_str, and remove by Daniel Dunbar · 16 years ago
- 02f7bd5 Actually privatize a IntegerTypes, and fix a few bugs exposed by this. by Owen Anderson · 16 years ago
- 35b4707 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
- d2ed745 Privatize the StructType table, which unfortunately involves routing contexts through a number of APIs. by Owen Anderson · 16 years ago
- ea27c23 Use separate ValueList for metadata. This fixes PR4666. by Devang Patel · 16 years ago
- 20be058 Move the metadata constructors back to 2.5 syntax. by Owen Anderson · 16 years ago
- aac2837 Move a few more APIs back to 2.5 forms. The only remaining ones left to change back are by Owen Anderson · 16 years ago
- b99ecca Move more code back to 2.5 APIs. by Owen Anderson · 16 years ago
- 3e1ef93 Read and write NamedMDNode. by Devang Patel · 16 years ago
- 6b6e2d9 Move types back to the 2.5 API. by Owen Anderson · 16 years ago
- 02b48c3 Move ConstantExpr to 2.5 API. by Owen Anderson · 16 years ago
- 7c36885 Rename MDNode.h header. It defines MDnode and other metadata classes. by Devang Patel · 16 years ago
- 2f422e0 Return ConstantVector to 2.5 API. by Owen Anderson · 16 years ago
- 7b4f9f8 Change ConstantArray to 2.5 API. by Owen Anderson · 16 years ago
- 9c9f10e Move ConstantStruct back to 2.5 API. by Owen Anderson · 16 years ago
- 106b2ae Add a new keyword 'inbounds' for use with getelementptr. See the by Dan Gohman · 16 years ago
- d363a0e Move ConstantFP construction back to the 2.5-ish API. by Owen Anderson · 16 years ago
- 1be1386 Remove Value::setName(const char*, unsigned). by Daniel Dunbar · 16 years ago
- a49de6f Finish migrating VMCore to StringRef/Twine based APIs. by Daniel Dunbar · 16 years ago
- 1ba3687 Move ExtractElementInst to ::Create instead of new. Update all uses. by Eric Christopher · 16 years ago
- eacb44d Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 16 years ago
- 5417dcf MDString by Devang Patel · 16 years ago
- 54199ef Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADATA_BLOCK in bitcode file. by Devang Patel · 16 years ago
- 0c0a6ca Introduce MetadataBase, a base class for MDString and MDNode. by Devang Patel · 16 years ago
- 799a8c8 Assembly and Bitcode support for unsigned/signed overflow flags and by Dan Gohman · 16 years ago
- 41a0785 Add plumbing for the `linker_private' linkage type. This type is meant for by Bill Wendling · 16 years ago
- 140166d Revert yesterday's change by removing the LLVMContext parameter to AllocaInst and MallocInst. by Owen Anderson · 16 years ago
- 9f5b2aa Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 16 years ago
- 6601fcd This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 16 years ago
- e17fc1d Switch GlobalVariable ctors to a sane API, where *either* a context or a module is required. by Owen Anderson · 16 years ago
- 8f5253b Remove the vicmp and vfcmp instructions. Because we never had a release with by Nick Lewycky · 16 years ago
- e0f136d Push LLVMContext through GlobalVariables and IRBuilder. by Owen Anderson · 16 years ago
- 4956cde LLVMContext-ify the bitcode reader. by Owen Anderson · 16 years ago
- afadbf2 !"i" is a valid MDString. by Devang Patel · 16 years ago
- 92adb18 Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the by Owen Anderson · 16 years ago
- a148fdd Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 16 years ago
- 25209b4 Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 16 years ago
- 6b69fff Fix PR4336: Iterating over use-def chains doesn't seem to be deterministic. by Chris Lattner · 16 years ago
- 7ce405e Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
- cd36a36 Update the bitcode reader to support reading .bc files where the embedded by Nick Lewycky · 16 years ago
- dc9b1b5 Fix typo in error message. by Nick Lewycky · 16 years ago
- 29aaef8 Give embedded metadata its own type instead of relying on EmptyStructTy. by Nick Lewycky · 16 years ago
- 117f438 Make MDNode use CallbackVH. Also change MDNode to store Value* instead of by Nick Lewycky · 16 years ago
- 25a6abf Make a major API change to BitstreamReader: split all the reading by Chris Lattner · 16 years ago
- 6843344 Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
- abd0e44 Teach llvm-bcanalyzer to skip over the header we use on LLVM IR files. by Chris Lattner · 16 years ago
- 4dcf810 Add support for embedded metadata to LLVM. This introduces two new types of by Nick Lewycky · 16 years ago
- da486ce fix a serious regression I introduced in my previous patch. by Chris Lattner · 16 years ago
- ed490d1 reimplement BitcodeReaderValueList in terms of WeakVH instead of making by Chris Lattner · 16 years ago