index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
CodeGen
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Make the StackProtector bitfield use enums instead of obscure numbers.
Bill Wendling
2009-06-28
1
-2
/
+2
*
Add stack protector support to clang. This generates the 'ssp' and 'sspreq'
Bill Wendling
2009-06-28
1
-0
/
+5
*
OpenCL 1.0 Support: fix a bug with lvalue swizzles
Nate Begeman
2009-06-26
1
-3
/
+4
*
Implement enough of the 'auto' keyword so we can claim to support N2546.
Anders Carlsson
2009-06-26
1
-0
/
+3
*
typo
Devang Patel
2009-06-26
1
-1
/
+1
*
Revrt PR4228 fix for now.
Devang Patel
2009-06-26
2
-43
/
+21
*
Simplify, and fix a possible crash (never happens however, because we don't ever
Daniel Dunbar
2009-06-26
1
-10
/
+7
*
Add a DecltypeType type.
Anders Carlsson
2009-06-24
1
-0
/
+3
*
Patch fixes an obscure bug when 'used' attribute is applied to
Fariborz Jahanian
2009-06-23
4
-36
/
+29
*
fix PR4423.
Chris Lattner
2009-06-23
1
-1
/
+2
*
Parsing and AST support for using declarations, from John Thompson!
Douglas Gregor
2009-06-20
1
-0
/
+3
*
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.
Douglas Gregor
2009-06-18
9
-54
/
+62
*
Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.
Argyrios Kyrtzidis
2009-06-17
1
-1
/
+1
*
First step toward fixing <rdar://problem/6613046> refactor clang objc type re...
Steve Naroff
2009-06-17
2
-2
/
+2
*
Update clang for the add ->add/fadd split. Likewise for sub and mul.
Chris Lattner
2009-06-17
2
-36
/
+105
*
It is possible that main input file does not have any symbol with debug info....
Devang Patel
2009-06-16
2
-21
/
+43
*
Handle temporaries in default arguments.
Anders Carlsson
2009-06-16
1
-0
/
+5
*
"GCC emits an __objc_class_name_{classname} symbol for every class, and a cor...
Chris Lattner
2009-06-15
1
-4
/
+29
*
PR4390: Make sure to handle anonymous unions correctly while building
Eli Friedman
2009-06-14
1
-5
/
+2
*
Sink the BuiltinInfo object from ASTContext into the
Chris Lattner
2009-06-14
2
-0
/
+2
*
move the various builtins stuff from libast to libbasic. This
Chris Lattner
2009-06-14
1
-1
/
+1
*
move GetBuiltinType from Builtin::Context to ASTContext.
Chris Lattner
2009-06-14
1
-3
/
+3
*
Simplify mangleFunctionDecl by unnesting a crazy condition. This fixes
Chris Lattner
2009-06-13
1
-13
/
+14
*
Fix the calling convention for structs/unions containing SSE vectors on
Eli Friedman
2009-06-13
1
-4
/
+34
*
Fix PR4372, another case where non-prototyped functions can prevent
Chris Lattner
2009-06-13
2
-6
/
+37
*
Don't assert when generating code with static_asserts.
Anders Carlsson
2009-06-11
1
-1
/
+5
*
Support complex properties, ivars and message expressions.
Daniel Dunbar
2009-06-10
2
-6
/
+44
*
Remove a few more vector builtins.
Eli Friedman
2009-06-07
1
-23
/
+0
*
Now that LLVM CodeGen can handle the generic variations a bit better,
Eli Friedman
2009-06-07
1
-22
/
+0
*
PR4339: make sure to properly extend/trunc the index of a vector element
Eli Friedman
2009-06-06
1
-4
/
+4
*
Add new ABIArgInfo kind: Extend. This allows target to implement its own argu...
Anton Korobeynikov
2009-06-06
3
-29
/
+52
*
Get rid of a bunch of dead builtins.
Eli Friedman
2009-06-06
1
-199
/
+0
*
As an optimization, we maintain a cache of generated
Mike Stump
2009-06-05
3
-15
/
+55
*
weak_import should not make definitions have weak linkage.
Daniel Dunbar
2009-06-05
1
-2
/
+2
*
Update cmake script
Anton Korobeynikov
2009-06-05
1
-0
/
+1
*
Factor out TargetABIInfo stuff into separate file. No functionality change.
Anton Korobeynikov
2009-06-05
3
-1382
/
+1398
*
Set function Attribute::NoImplicitFloat appropriately.
Devang Patel
2009-06-05
1
-0
/
+2
*
ABI handling: Fix nasty thinko where IRgen could generate an out-of-bounds read
Daniel Dunbar
2009-06-05
1
-7
/
+8
*
Fix -Asserts build warnings.
Daniel Dunbar
2009-06-05
1
-3
/
+3
*
Set function attribute llvm::Attribute::NoRedZone appropriately.
Devang Patel
2009-06-04
1
-0
/
+4
*
Make ReplaceUsesOfNonProtoTypeWithRealFunction verify that a call is *to* the
Chris Lattner
2009-06-04
1
-1
/
+2
*
Use PushConditionalTempDestruction/PopConditionalTempDestruction for the tern...
Anders Carlsson
2009-06-04
2
-1
/
+9
*
Use conditional temp destruction for || and &&.
Anders Carlsson
2009-06-04
1
-0
/
+6
*
Make PushCXXTemporary and PopCXXTemporary handle conditional temporaries.
Anders Carlsson
2009-06-04
1
-13
/
+57
*
Add PushConditionalTempDestruction/PopConditionalTempDestruction.
Anders Carlsson
2009-06-04
2
-0
/
+30
*
Make sure to push a cleanup block.
Anders Carlsson
2009-06-04
1
-0
/
+2
*
Cleanup/Refactoring of ivar collection. No change in functionality.
Fariborz Jahanian
2009-06-04
2
-44
/
+10
*
Fix cmake builds.
Mike Stump
2009-06-03
1
-0
/
+1
*
PR4316: Fix IRGen for cast-to-union extension.
Eli Friedman
2009-06-03
1
-6
/
+6
*
More temporary work.
Anders Carlsson
2009-06-03
2
-10
/
+25
[prev]
[next]