summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/LLVMContext.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Move ConstantStruct back to 2.5 API.Owen Anderson2009-07-271-32/+0
| | | | llvm-svn: 77266
* Add a comment about the "getelementptr null" trick.Dan Gohman2009-07-271-0/+1
| | | | llvm-svn: 77262
* Move ConstantFP construction back to the 2.5-ish API.Owen Anderson2009-07-271-66/+8
| | | | llvm-svn: 77247
* Finish migrating VMCore to StringRef/Twine based APIs.Daniel Dunbar2009-07-251-8/+4
| | | | llvm-svn: 77051
* Revert the ConstantInt constructors back to their 2.5 forms where possible, ↵Owen Anderson2009-07-241-52/+7
| | | | | | thanks to contexts-on-types. More to come. llvm-svn: 77011
* Privatize the ConstantVector tables.Owen Anderson2009-07-241-1/+5
| | | | llvm-svn: 76922
* Privatize the ConstantStruct table.Owen Anderson2009-07-231-1/+10
| | | | llvm-svn: 76912
* MDStringDevang Patel2009-07-231-3/+3
| | | | | | | - Rename member function size(). New name is length(). - Store string beginning and length. Earlier it used to store string end. llvm-svn: 76841
* Add newline at end of file.Duncan Sands2009-07-221-1/+1
| | | | llvm-svn: 76736
* Privatize the ConstantArray table.Owen Anderson2009-07-211-1/+10
| | | | llvm-svn: 76639
* Privatize the first of the value maps.Owen Anderson2009-07-211-1/+5
| | | | llvm-svn: 76634
* Rename getConstantInt{True|False} to get{True|False} at Chris' behest.Owen Anderson2009-07-211-4/+4
| | | | llvm-svn: 76598
* Move a bit more state over to the LLVMContext.Owen Anderson2009-07-211-2/+6
| | | | llvm-svn: 76533
* Fix "no newline at end of file" warning from gcc.Jeffrey Yasskin2009-07-161-1/+1
| | | | llvm-svn: 76127
* Privatize the MDNode uniquing table.Owen Anderson2009-07-161-1/+5
| | | | llvm-svn: 76126
* Privatize the MDString uniquing table.Owen Anderson2009-07-161-2/+6
| | | | llvm-svn: 76113
* Privatize the ConstantFP table. I'm on a roll!Owen Anderson2009-07-161-1/+1
| | | | llvm-svn: 76097
* Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a ↵Owen Anderson2009-07-161-2/+2
| | | | | | | | number of issues in our current context-passing stuff, which is also fixed here llvm-svn: 76089
* Move a few more convenience factory functions from Constant to LLVMContext.Owen Anderson2009-07-151-4/+7
| | | | llvm-svn: 75840
* Move the ConstantStruct factory methods over to LLVMContext.Owen Anderson2009-07-151-3/+8
| | | | llvm-svn: 75830
* Move EVER MORE stuff over to LLVMContext.Owen Anderson2009-07-141-6/+43
| | | | llvm-svn: 75703
* Move more functionality over to LLVMContext.Owen Anderson2009-07-131-18/+18
| | | | llvm-svn: 75559
* Move a bit more functionality to LLVMContext, which apparently wasn't being ↵Owen Anderson2009-07-131-1/+29
| | | | | | used anyways. llvm-svn: 75546
* Move more functionality over to LLVMContext.Owen Anderson2009-07-131-12/+11
| | | | llvm-svn: 75497
* Fix build on Linux.Nick Lewycky2009-07-131-0/+1
| | | | llvm-svn: 75453
* Begin the painful process of tearing apart the rat'ss nest that is ↵Owen Anderson2009-07-131-7/+79
| | | | | | | | | Constants.cpp and ConstantFold.cpp. This involves temporarily hard wiring some parts to use the global context. This isn't ideal, but it's the only way I could figure out to make this process vaguely incremental. llvm-svn: 75445
* This started as a small change, I swear. Unfortunately, lots of things call ↵Owen Anderson2009-07-091-0/+7
| | | | | | the [I|F]CmpInst constructors. Who knew!? llvm-svn: 75200
* Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky2009-07-081-10/+0
| | | | | | | these instructions, no autoupgrade or backwards compatibility support is provided. llvm-svn: 74991
* More LLVMContext-ification.Owen Anderson2009-07-051-0/+8
| | | | llvm-svn: 74807
* Even more passes being LLVMContext'd.Owen Anderson2009-07-031-1/+2
| | | | llvm-svn: 74781
* Fill in a few more missing accessors.Owen Anderson2009-07-021-1/+7
| | | | llvm-svn: 74739
* Add accessors for metadata constants.Owen Anderson2009-07-021-0/+9
| | | | llvm-svn: 74707
* Add accessor for MDNode.Owen Anderson2009-07-021-0/+6
| | | | llvm-svn: 74705
* Add accessor for getting UndefValue's.Owen Anderson2009-07-021-0/+5
| | | | llvm-svn: 74702
* Add a few methods that got left out earlier.Owen Anderson2009-07-011-1/+14
| | | | llvm-svn: 74670
* Make the use of const with respect to LLVMContext sane. Hopefully this is ↵Owen Anderson2009-07-011-1/+1
| | | | | | | | the last time, for the moment, that I will need to make far-reaching changes. llvm-svn: 74655
* --- Reverse-merging (from foreign repository) r74648 into '.':Bill Wendling2009-07-011-107/+89
| | | | | | | | | | | U include/llvm/LLVMContext.h U lib/VMCore/LLVMContext.cpp U lib/AsmParser/LLParser.cpp U lib/AsmParser/LLParser.h Temporarily reverting r74648. It was causing massive failures in release mode. llvm-svn: 74653
* Fix typo.Owen Anderson2009-07-011-1/+1
| | | | llvm-svn: 74649
* Convert LLParser to use LLVMContext for creating constants.Owen Anderson2009-07-011-90/+108
| | | | llvm-svn: 74648
* Hold the LLVMContext by reference rather than by pointer.Owen Anderson2009-07-011-2/+2
| | | | llvm-svn: 74640
* Add a global context, for easing backwards compatibility.Owen Anderson2009-06-301-0/+7
| | | | llvm-svn: 74574
* Add wrappers for type construction to LLVMContext.Owen Anderson2009-06-301-0/+58
| | | | llvm-svn: 74542
* Fix up header comments to make Chris happy.Owen Anderson2009-06-301-0/+5
| | | | llvm-svn: 74537
* Add LLVMContext, which will eventually be used as a container for ↵Owen Anderson2009-06-301-0/+379
privatizing a lot of (currently) global state, including the constant and type uniquing tables. For now, just make it a wrapper around the existing APIs. llvm-svn: 74488
OpenPOWER on IntegriCloud