index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
VMCore
/
Attributes.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Change ForceSizeOpt attribute into MinSize attribute
Quentin Colombet
2012-10-30
1
-3
/
+3
*
Add the "ForceSizeOpt" attribute.
Nadav Rotem
2012-10-22
1
-2
/
+5
*
Cleanup whitespace.
Bill Wendling
2012-10-16
1
-1
/
+2
*
Cleanup whitespace.
Bill Wendling
2012-10-16
1
-37
/
+35
*
Have AttributesImpl defriend the Attributes class.
Bill Wendling
2012-10-16
1
-1
/
+1
*
Have AttrBuilder defriend the Attributes class.
Bill Wendling
2012-10-16
1
-3
/
+3
*
Put simple c'tors inline.
Bill Wendling
2012-10-16
1
-6
/
+1
*
Move the Attributes::Builder outside of the Attributes class and into its own...
Bill Wendling
2012-10-15
1
-25
/
+63
*
Use a ::get method to create the attribute from Attributes::AttrVals instead ...
Bill Wendling
2012-10-15
1
-8
/
+7
*
Move the AttributesImpl header file into the VMCore directory so that it can ...
Bill Wendling
2012-10-15
1
-0
/
+5
*
Attributes Rewrite
Bill Wendling
2012-10-15
1
-19
/
+16
*
Remove dead methods.
Bill Wendling
2012-10-14
1
-8
/
+0
*
Remove operator cast method in favor of querying with the correct method.
Bill Wendling
2012-10-14
1
-2
/
+2
*
Don't use the new syntax just yet.
Bill Wendling
2012-10-14
1
-2
/
+2
*
Remove the bitwise AND operators from the Attributes class. Replace it with t...
Bill Wendling
2012-10-14
1
-8
/
+0
*
Remove the bitwise assignment OR operator from the Attributes class. Replace ...
Bill Wendling
2012-10-14
1
-6
/
+5
*
Remove the bitwise OR operator from the Attributes class. Replace it with the...
Bill Wendling
2012-10-14
1
-7
/
+9
*
Remove the bitwise XOR operator from the Attributes class. Replace it with th...
Bill Wendling
2012-10-14
1
-3
/
+0
*
Remove the bitwise NOT operator from the Attributes class. Replace it with th...
Bill Wendling
2012-10-14
1
-8
/
+10
*
Decode the LLVM attributes from bitcode using the attributes builder.
Bill Wendling
2012-10-14
1
-0
/
+5
*
Use builder to create alignment attributes. Remove dead function.
Bill Wendling
2012-10-14
1
-4
/
+6
*
Add the LLVM context to this c'tor. It will be needed in the future.
Bill Wendling
2012-10-11
1
-1
/
+1
*
Support a common idiom on how to build an Attributes class with a single attr...
Bill Wendling
2012-10-11
1
-0
/
+3
*
Cleanup. Get rid of now dead code.
Bill Wendling
2012-10-10
1
-2
/
+0
*
Remove the final bits of Attributes being declared in the Attribute
Bill Wendling
2012-10-10
1
-3
/
+14
*
Revert r165547 to fix build.
Bill Wendling
2012-10-09
1
-4
/
+10
*
Use a single location for calculating the alignments.
Bill Wendling
2012-10-09
1
-10
/
+4
*
Use appropriate method calls to get the alignment value.
Bill Wendling
2012-10-09
1
-4
/
+5
*
Move the 'FunctionOnly' attributes thingy inside of the Attributes class.
Bill Wendling
2012-10-09
1
-13
/
+15
*
Use the enum value of the attributes when removing them from the attributes b...
Bill Wendling
2012-10-09
1
-83
/
+0
*
Use the enum value of the attributes when adding them to the attributes builder.
Bill Wendling
2012-10-09
1
-86
/
+18
*
Create enums for the different attributes.
Bill Wendling
2012-10-09
1
-111
/
+69
*
Convert to using the Attributes::Builder interface.
Bill Wendling
2012-10-09
1
-0
/
+16
*
Use the Attributes::Builder to build the attributes in the parser.
Bill Wendling
2012-10-08
1
-0
/
+22
*
Convert the LLVM parser over to using the new Attributes::Builder to build its
Bill Wendling
2012-10-08
1
-0
/
+6
*
Begin the transition to using the AttributesImpl object for the Attributes ivar.
Bill Wendling
2012-10-08
1
-63
/
+170
*
Move more methods out-of-line. This is in preparation for changing the internal
Bill Wendling
2012-10-07
1
-0
/
+28
*
Move methods out-of-line.
Bill Wendling
2012-10-05
1
-13
/
+210
*
Initial commit for the AttributesImpl class.
Bill Wendling
2012-09-26
1
-0
/
+32
*
Move Attribute::typeIncompatible inside of the Attributes class.
Bill Wendling
2012-09-25
1
-4
/
+5
*
Make the 'get*AlignmentFromAttr' functions into member functions within the A...
Bill Wendling
2012-09-21
1
-7
/
+8
*
Revert r164308 to fix buildbots.
Bill Wendling
2012-09-20
1
-8
/
+7
*
Make the 'get*AlignmentFromAttr' functions into member functions within the A...
Bill Wendling
2012-09-20
1
-7
/
+8
*
Remove more bare uses of the different Attribute enums.
Bill Wendling
2012-09-20
1
-6
/
+6
*
Make the 'getAsString' function a method of the Attributes class.
Bill Wendling
2012-09-20
1
-30
/
+30
*
Convert some attribute existence queries over to use the predicate methods.
Bill Wendling
2012-09-19
1
-25
/
+25
*
Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...
Craig Topper
2012-09-18
1
-2
/
+2
*
[ms-inline asm] Remove the Inline Asm Non-Standard Dialect attribute. This
Chad Rosier
2012-09-04
1
-3
/
+0
*
[ms-inline asm] Add a new Inline Asm Non-Standard Dialect attribute.
Chad Rosier
2012-08-10
1
-0
/
+3
*
switch AttrListPtr::get to take an ArrayRef, simplifying a lot of clients.
Chris Lattner
2012-05-28
1
-15
/
+14
[next]