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
*
Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library.
Chandler Carruth
2009-11-12
1
-2
/
+2
*
Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of
Douglas Gregor
2009-11-09
1
-1
/
+1
*
This patch extends CleanupScope to support destruction
Fariborz Jahanian
2009-11-04
1
-3
/
+7
*
Merge constant array and structures. This will create a global variables for ...
Tanya Lattner
2009-11-04
1
-0
/
+15
*
Refine volatile handling, specifically, we must have the canonical
Mike Stump
2009-11-03
1
-5
/
+7
*
Patch for destruction of array of objects on block exit.
Fariborz Jahanian
2009-10-29
1
-4
/
+13
*
Fix 80-col violation.
Mike Stump
2009-10-21
1
-2
/
+2
*
ignore 'using' directive in CodeGenFunction::EmitDecl(). this fixes PR5085
Nuno Lopes
2009-10-16
1
-0
/
+1
*
Simplify pointer creation with the new Type::getInt*Ptr methods.
Benjamin Kramer
2009-10-13
1
-6
/
+3
*
Revert 83567.
Devang Patel
2009-10-09
1
-6
/
+3
*
Record location info before emiting alloca for arguments. This allows argumen...
Devang Patel
2009-10-08
1
-3
/
+6
*
Set alignment on static function level decls and VLAs. Fixes PR5060.
Anders Carlsson
2009-09-26
1
-6
/
+11
*
Improve debug info generation for __block variables.
Mike Stump
2009-09-22
1
-17
/
+3
*
Fix another byref bug. This should hopefully get QuickLookPlugins building su...
Anders Carlsson
2009-09-13
1
-10
/
+10
*
Add FIXME for alignments that won't be honored.
Mike Stump
2009-09-12
1
-0
/
+2
*
Add support for __block variables with alignment greater than __alignof(void *).
Anders Carlsson
2009-09-12
1
-22
/
+57
*
For __block variables, cache the LLVM types as well as which LLVM field where...
Anders Carlsson
2009-09-12
1
-7
/
+22
*
GlobalDecl doesn't have an explicit constructor anymore.
Anders Carlsson
2009-09-10
1
-1
/
+1
*
Make the forwarding member of block byref structs be a pointer to the block b...
Anders Carlsson
2009-09-10
1
-4
/
+13
*
Suppress build warning.
Daniel Dunbar
2009-09-09
1
-0
/
+1
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-44
/
+44
*
Make BuildByRefType take a ValueDecl instead of a QualType and an alignment.
Anders Carlsson
2009-09-09
1
-3
/
+12
*
Remove an ErrorUnsupported call.
Anders Carlsson
2009-08-17
1
-5
/
+0
*
Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries...
Anders Carlsson
2009-08-16
1
-2
/
+2
*
Update for LLVM API change.
Owen Anderson
2009-08-13
1
-10
/
+12
*
Refactor some code and implement support for global destructors for static va...
Anders Carlsson
2009-08-08
1
-1
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-08-05
1
-1
/
+1
*
assert(nyi) on attempt to destruct an array of objects.
Fariborz Jahanian
2009-08-03
1
-2
/
+6
*
ir-gen for destructor calls.
Fariborz Jahanian
2009-08-03
1
-0
/
+12
*
use CodeGenModule::EmitNullConstant in a couple of places.
Anders Carlsson
2009-08-02
1
-3
/
+2
*
Update for LLVM API change.
Owen Anderson
2009-07-31
1
-1
/
+1
*
Canonicalize else spacing.
Mike Stump
2009-07-30
1
-2
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-07-29
1
-6
/
+6
*
Update for LLVM API change.
Owen Anderson
2009-07-29
1
-2
/
+2
*
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
[next]