aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Module.cpp
Commit message (Expand)AuthorAgeFilesLines
* s/ModAttrBehavior/ModFlagBehavior/g to be consistent with how module flags ar...Bill Wendling2012-02-161-3/+3
* Use the enum instead of 'unsigned'.Bill Wendling2012-02-151-1/+2
* Add a module flags accessor method which returns the flags in a vector.Bill Wendling2012-02-151-0/+15
* [WIP] Initial code for module flags.Bill Wendling2012-02-111-0/+40
* Remove the last improper use of getGlobalContext() from LLVM.Nick Lewycky2011-08-131-18/+1
* move tier out of an anonymous namespace, it doesn't make senseChris Lattner2011-07-211-6/+9
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-7/+7
* DebugLoc's don't hide any interesting types for TypeFinder to find.Chris Lattner2011-07-141-1/+1
* Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad2011-07-121-4/+4
* Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling2011-07-121-4/+4
* De-constify Types in FunctionType::get().Jay Foad2011-07-111-4/+4
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-091-49/+129
* Clarify the ownership model of LLVMContext and Module. Namely, contexts ownOwen Anderson2010-09-081-0/+2
* Eliminate unnecessary empty string literals.Dan Gohman2010-08-041-1/+1
* Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman2010-07-211-6/+15
* Use single interface, using twine, to get named metadata.Devang Patel2010-06-221-5/+1
* Tidy.Bob Wilson2010-06-191-2/+2
* Use separate named MDNode to hold each function's local variable info.Devang Patel2010-06-161-0/+7
* fix an infinite loop in Module::getEndianness, PR6684Chris Lattner2010-03-231-1/+1
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-1/+48
* Use ilist_tratis to autoinsert and remove NamedMDNode from MDSymbolTable.Devang Patel2010-01-121-6/+0
* Reimplement getToken and SplitString as "StringRef helper functions"Benjamin Kramer2010-01-111-7/+10
* Delete NamedMDSymTable while destrucing Module.Devang Patel2010-01-091-0/+1
* Use separate namespace for named metadata.Devang Patel2010-01-071-3/+9
* Final step in the metadata API restructuring: move the Chris Lattner2009-12-291-0/+14
* Qualify a bunch of explicit template instantiations to satisfy clang++.John McCall2009-12-191-3/+3
* Pass StringRef by value.Daniel Dunbar2009-11-061-17/+17
* remove a bunch of extraneous LLVMContext argumentsChris Lattner2009-11-061-2/+1
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-3/+4
* Add getOrInsertNamedMetadata().Devang Patel2009-07-301-3/+14
* Do not use getNamedValue() to lookup NamedMDNode. NamedMDNode is not a Global...Devang Patel2009-07-301-1/+1
* Move types back to the 2.5 API.Owen Anderson2009-07-291-6/+6
* Move ConstantExpr to 2.5 API.Owen Anderson2009-07-291-2/+2
* Keep track of named mdnodes in a Module using an ilist.Devang Patel2009-07-291-0/+8
* Finish migrating VMCore to StringRef/Twine based APIs.Daniel Dunbar2009-07-251-25/+16
* Switch ValueSymbolTable to StringRef based API.Daniel Dunbar2009-07-231-1/+1
* LLVMContext-ification.Owen Anderson2009-07-081-6/+8
* Switch GlobalVariable ctors to a sane API, where *either* a context or a modu...Owen Anderson2009-07-081-10/+6
* Push LLVMContext through GlobalVariables and IRBuilder.Owen Anderson2009-07-081-3/+7
* Make the use of const with respect to LLVMContext sane. Hopefully this is th...Owen Anderson2009-07-011-1/+1
* Hold the LLVMContext by reference rather than by pointer.Owen Anderson2009-07-011-1/+1
* Add a pointer to the owning LLVMContext to Module. This requires threading L...Owen Anderson2009-07-011-2/+3
* "ghostify" the ilist<Function> sentinelGabor Greif2009-03-271-8/+0
* further simplifications arising from peruse of the more declarative interfaceGabor Greif2009-03-071-10/+0
* Add Module::getNamedValue; use to normalize access to Module symbolDaniel Dunbar2009-03-061-19/+21
* Reapply 63765. Patches for clang and llvm-gcc to follow.Dale Johannesen2009-02-051-0/+19
* Reverting 63765. This broke the build of both clangDale Johannesen2009-02-041-19/+0
* New feature: add support for target intrinsics being defined in theNate Begeman2009-02-041-0/+19
* Add the private linkage.Rafael Espindola2009-01-151-6/+5
* Add a mechanism to specify attributes in getOrInsertFunction.Nick Lewycky2009-01-041-2/+29