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
/
IR
/
AttributeImpl.h
Age
Commit message (
Expand
)
Author
2013-02-28
Don't add the 'Value' string if there isn't one.
Bill Wendling
2013-02-13
Add some accessor and query methods for retrieving Attribute objects and such.
Bill Wendling
2013-02-11
Add support for printing out the attribute groups.
Bill Wendling
2013-02-06
Remove unused private field to suppress a build warning.
Craig Topper
2013-02-05
Convert to storing the attribute's internals as enums, integers, and strings.
Bill Wendling
2013-02-02
Use the AttributeSet's iterators.
Bill Wendling
2013-02-01
Change the AttributeImpl to hold a single Constant* for the values.
Bill Wendling
2013-02-01
Remove some dead code, improve some asserts, and other assorted changes. No f...
Bill Wendling
2013-02-01
Remove one of the odious 'Raw' methods.
Bill Wendling
2013-01-31
Remove the AttrBuilder form of the Attribute::get creators.
Bill Wendling
2013-01-31
Add support for emitting a string attribute.
Bill Wendling
2013-01-31
Remove the Attribute::hasAttributes() function.
Bill Wendling
2013-01-31
Revert r174026, "Remove Attribute::hasAttributes() and make Attribute::hasAtt...
NAKAMURA Takumi
2013-01-31
Remove Attribute::hasAttributes() and make Attribute::hasAttribute() private.
Bill Wendling
2013-01-29
s/Data/Kind/g. No functionality change.
Bill Wendling
2013-01-29
Convert getAttributes() to return an AttributeSetNode.
Bill Wendling
2013-01-29
Reorder some functions and add comments. No functionality change.
Bill Wendling
2013-01-28
Try to appease some broken compilers by using 'unsigned' instead of 'uint64_t'.
Bill Wendling
2013-01-28
Remove the AttributeWithIndex class.
Bill Wendling
2013-01-28
Remove a use of AttributeWithIndex.
Bill Wendling
2013-01-27
Use proper return type for attribute index.
Bill Wendling
2013-01-27
Push the calculation of the 'Raw' attribute mask down into the implementation...
Bill Wendling
2013-01-27
Privitize some the copy c'tor and assignment operator of uniquified objects.
Bill Wendling
2013-01-27
Add some helpful comments.
Bill Wendling
2013-01-27
Start using more of the AttrNode in the AttributeSetImpl class.
Bill Wendling
2013-01-27
In the AttributeSetImpl c'tor, fill in the AttrNodes data structure with the ...
Bill Wendling
2013-01-25
Remove some introspection functions.
Bill Wendling
2013-01-25
Add an accessor method to get the slot's index. This will limit the use of At...
Bill Wendling
2013-01-24
Add a profile for uniquifying the AttributeSet with the AttributeSetNodes.
Bill Wendling
2013-01-24
Create a new class: AttributeSetNode.
Bill Wendling
2013-01-23
Remove dead methods.
Bill Wendling
2013-01-21
Make AttributeSet::getFnAttributes() return an AttributeSet instead of an Att...
Bill Wendling
2013-01-09
Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hang...
Bill Wendling
2013-01-09
Add the integer value of the ConstantInt instead of the Constant* value.
Bill Wendling
2013-01-07
Rough out a new c'tor for the AttrBuilder class.
Bill Wendling
2013-01-05
Add a method to create an AttributeSet from an AttrBuilder.
Bill Wendling
2013-01-04
General cleanups.
Bill Wendling
2013-01-03
Revert everything to r171366 to try to fix the build.
Bill Wendling
2013-01-03
Try again to revert the bad patch. The tree was reverted for some unknown reason
Bill Wendling
2013-01-03
Remove the 'contains' methods in favor of the 'operator==' method.
Bill Wendling
2013-01-03
Make the type signature more strict.
Bill Wendling
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
Rename VMCore directory to IR.
Chandler Carruth