index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
VMCore
/
LLVMContextImpl.cpp
Age
Commit message (
Expand
)
Author
2012-01-23
start the implementation of a new ConstantDataVector and ConstantDataArray
Chris Lattner
2012-01-23
convert CAZ, UndefValue, and CPN to use DenseMap's again, this time without
Chris Lattner
2012-01-23
revert r148691 and 148693
Chris Lattner
2012-01-23
switch UndefValue and ConstantPointerNull over to DenseMap's for uniquing.
Chris Lattner
2012-01-23
Replace a use of ConstantUniqueMap for CAZ constants with a simple DenseMap.
Chris Lattner
2011-12-20
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...
David Blaikie
2011-12-17
The powers that be have decided that LLVM IR should now support 16-bit
Dan Gohman
2011-07-15
bump pointer allocate LLVM IR types, since they are never deallocated.
Chris Lattner
2011-07-13
stop leaking all named struct types with an empty name. Thanks
Chris Lattner
2011-07-12
TypeMap had a destructor that destroyed the types it held. DenseMap did not, so
Nick Lewycky
2011-07-09
Land the long talked about "type system rewrite" patch. This
Chris Lattner
2010-10-12
More SmallVectorImpls.
Dan Gohman
2010-09-10
Add X86 MMX type to bitcode and Type.
Dale Johannesen
2010-09-08
Clarify the ownership model of LLVMContext and Module. Namely, contexts own
Owen Anderson
2010-08-28
remove unions from LLVM IR. They are severely buggy and not
Chris Lattner
2010-04-15
Fix a bunch of namespace polution.
Dan Gohman
2010-04-06
give LLVMContext an inline asm diagnostic hook member.
Chris Lattner
2010-03-22
Free all Constants in ~LLVMConstantImpl. We avoid assertion failures
Jeffrey Yasskin
2010-03-21
Re-add the Metadata.h include to LLVMContextImpl.h so that MDNode is complete
Jeffrey Yasskin
2010-03-21
Move the LLVMContextImpl implementation into a .cpp file.
Jeffrey Yasskin
2009-08-04
Factor some of the constants+context related code out into a separate header,...
Owen Anderson
2009-08-04
Privatize the last bit of Constant-creation state.
Owen Anderson
2009-08-02
One two many newlines at end of file LLVMContextImpl.cpp
Edward O'Callaghan
2009-08-02
Fix no newline at end of LLVMContextImpl.cpp
Edward O'Callaghan
2009-07-31
Move the metadata constructors back to 2.5 syntax.
Owen Anderson
2009-07-30
Move more code back to 2.5 APIs.
Owen Anderson
2009-07-28
Rename MDNode.h header. It defines MDnode and other metadata classes.
Devang Patel
2009-07-28
Return ConstantVector to 2.5 API.
Owen Anderson
2009-07-28
Change ConstantArray to 2.5 API.
Owen Anderson
2009-07-27
Move ConstantStruct back to 2.5 API.
Owen Anderson
2009-07-27
Move ConstantFP construction back to the 2.5-ish API.
Owen Anderson
2009-07-25
Remove Value::{isName, getNameRef}.
Daniel Dunbar
2009-07-24
Revert the ConstantInt constructors back to their 2.5 forms where possible, t...
Owen Anderson
2009-07-24
Privatize the ConstantVector tables.
Owen Anderson
2009-07-23
Privatize the ConstantStruct table.
Owen Anderson
2009-07-23
Convert StringMap to using StringRef for its APIs.
Daniel Dunbar
2009-07-23
MDString
Devang Patel
2009-07-23
Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA...
Devang Patel
2009-07-21
Privatize the ConstantArray table.
Owen Anderson
2009-07-21
Privatize the first of the value maps.
Owen Anderson
2009-07-16
Privatize the MDNode uniquing table.
Owen Anderson
2009-07-16
Privatize the MDString uniquing table.
Owen Anderson
2009-07-16
Privatize the ConstantFP table. I'm on a roll!
Owen Anderson
2009-07-16
Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num...
Owen Anderson