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
/
CGDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Switch to using llvm::Value::getName()
Daniel Dunbar
2009-07-26
1
-2
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-07-24
1
-3
/
+3
*
Fix thinko.
Daniel Dunbar
2009-07-19
1
-4
/
+1
*
Avoid generation of dead code in a few more situations.
Daniel Dunbar
2009-07-19
1
-2
/
+24
*
Update for LLVM API change, and contextify a bunch of related stuff.
Owen Anderson
2009-07-14
1
-12
/
+13
*
Update for LLVM API change.
Owen Anderson
2009-07-13
1
-1
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-07-08
1
-6
/
+6
*
Update for LLVM API change.
Owen Anderson
2009-07-08
1
-2
/
+4
*
Remove the ASTContext parameter from the attribute-related methods of Decl.
Argyrios Kyrtzidis
2009-06-30
1
-6
/
+6
*
typo
Devang Patel
2009-06-26
1
-1
/
+1
*
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.
Douglas Gregor
2009-06-18
1
-6
/
+6
*
As an optimization, we maintain a cache of generated
Mike Stump
2009-06-05
1
-8
/
+11
*
Add IRGen support for local variables of reference type.
Eli Friedman
2009-05-27
1
-6
/
+4
*
Targets like PIC16 generate Static decls for automatic variables, emit the ap...
Sanjiv Gupta
2009-05-22
1
-1
/
+4
*
Pass the destination QualType to EmitStoreOfScalar. No functionality change.
Anders Carlsson
2009-05-19
1
-2
/
+3
*
Since we miscompile many cases when declaring a variable with a reference typ...
Anders Carlsson
2009-05-18
1
-0
/
+10
*
Fixup debug information for the location information for __block
Mike Stump
2009-05-15
1
-2
/
+4
*
push GlobalDecl through enough of the CodeGenModule interfaces
Chris Lattner
2009-05-12
1
-1
/
+1
*
When calling the cleanup function specified by __attribute__((cleanup)), make...
Anders Carlsson
2009-04-26
1
-2
/
+13
*
PR3247: Handle a couple of cases where we weren't emitting VLA sizes (and
Eli Friedman
2009-04-20
1
-0
/
+4
*
PR3853: Add CodeGen support for __thread.
Eli Friedman
2009-04-19
1
-6
/
+3
*
Audit __private_extern__ handling.
Daniel Dunbar
2009-04-14
1
-6
/
+7
*
Update to use hasAttr() instead of getAttr().
Daniel Dunbar
2009-04-13
1
-3
/
+3
*
Make messages consistent.
Chris Lattner
2009-04-10
1
-1
/
+1
*
reject codegen of __thread variables as unimplemented, rdar://6775265
Chris Lattner
2009-04-10
1
-0
/
+4
*
Add a destination type argument to EmitConstantExpr. This will be used for wh...
Anders Carlsson
2009-04-08
1
-1
/
+1
*
Don't use static globals for params as it confuses the optimzer that their va...
Sanjiv Gupta
2009-04-02
1
-6
/
+0
*
When compiling C++ code, always mangle the names of static block var decls.
Anders Carlsson
2009-04-02
1
-10
/
+16
*
Code gen does not yet supports __asm__ on a variable
Fariborz Jahanian
2009-03-30
1
-0
/
+3
*
don't set the name of a call instruction to "call" in release-asserts
Chris Lattner
2009-03-22
1
-1
/
+1
*
fix CreateTempAlloca to not set a name on the alloca for temporaries
Chris Lattner
2009-03-22
1
-3
/
+5
*
Fixup codegen for nested block literals so that we generate
Mike Stump
2009-03-21
1
-2
/
+0
*
Fix codegen for support for super inside block literal expressions.
Mike Stump
2009-03-20
1
-4
/
+0
*
Mangle param names with .arg. only.
Sanjiv Gupta
2009-03-07
1
-1
/
+1
*
Remove some FIXMEs for block literals that should be close to working.
Mike Stump
2009-03-07
1
-2
/
+5
*
Complete __Block_byref_id_object_copy cogegen for block literals.
Mike Stump
2009-03-06
1
-1
/
+2
*
Finish off __Block_byref_id_object_dispose codegen for block literals.
Mike Stump
2009-03-06
1
-5
/
+7
*
Remove extra arg.
Mike Stump
2009-03-06
1
-1
/
+1
*
More codegen support for the copy/dispose helpers for block literals.
Mike Stump
2009-03-06
1
-2
/
+2
*
Framework for codegen for copy/dispose helpers.
Mike Stump
2009-03-06
1
-2
/
+2
*
Don't mangle names of local variables.
Daniel Dunbar
2009-03-05
1
-2
/
+2
*
prep work for copy/destroy helpers for block literals.
Mike Stump
2009-03-05
1
-2
/
+9
*
Avoid dispose calls when only doing gc.
Mike Stump
2009-03-05
1
-1
/
+1
*
Add codegen support for __block variables to call _Block_object_dispose as ne...
Mike Stump
2009-03-05
1
-0
/
+7
*
Continuation of PR3687: fix more places to use the right type for
Eli Friedman
2009-03-04
1
-5
/
+5
*
Comment fix: change a question to an answer.
Eli Friedman
2009-03-04
1
-5
/
+3
*
Improved ABI compliance for __block variables. No testcases yet as we
Mike Stump
2009-03-04
1
-5
/
+106
*
First cut CodeGen support for __block variables.
Mike Stump
2009-02-28
1
-0
/
+4
*
Allow constant initializers to reference their defining decl.
Daniel Dunbar
2009-02-25
1
-0
/
+9
*
Fold GeneraticStaticBlockVarDecl into callers.
Daniel Dunbar
2009-02-25
1
-26
/
+14
[prev]
[next]