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
/
CodeGenFunction.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Unbreak self-host.
Anders Carlsson
2010-05-21
1
-20
/
+1
*
Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle se...
Anders Carlsson
2010-05-21
1
-1
/
+20
*
Don't copy or initialize empty classes. Fixes PR7012.
Anders Carlsson
2010-05-03
1
-0
/
+8
*
Complete reimplementation of the synthesis for implicitly-defined copy
Douglas Gregor
2010-05-01
1
-9
/
+2
*
Fix debug info for cleanup block.
Devang Patel
2010-04-13
1
-0
/
+5
*
Reapply patch for adding support for address spaces and added a isVolatile fi...
Mon P Wang
2010-04-04
1
-2
/
+4
*
Revert r100193 since it causes failures in objc in clang
Mon P Wang
2010-04-02
1
-4
/
+2
*
Reapply patch for adding support for address spaces and added a isVolatile fi...
Mon P Wang
2010-04-02
1
-2
/
+4
*
Revert Mon Ping's 99930 due to broken llvm-gcc buildbots.
Bob Wilson
2010-03-30
1
-4
/
+2
*
Added support for address spaces and added a isVolatile field to memcpy, memm...
Mon P Wang
2010-03-30
1
-2
/
+4
*
the big refactoring bits of PR3782.
Rafael Espindola
2010-03-30
1
-3
/
+3
*
Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable...
Anders Carlsson
2010-03-23
1
-1
/
+1
*
Eliminate the default arguments to ASTContext::getFunctionType(),
Douglas Gregor
2010-02-21
1
-1
/
+4
*
More refactoring around constructor/destructor code generation.
John McCall
2010-02-19
1
-73
/
+13
*
Make deleting and complete dtor variants defer to other dtor variants by
John McCall
2010-02-18
1
-12
/
+42
*
Extract out function-body code generation into its own method. No functionality
John McCall
2010-02-18
1
-71
/
+55
*
IRgen optimization: cache the value of 'this' and 'vtt' instead of
John McCall
2010-02-16
1
-3
/
+9
*
IRgen: Switch 'retval' to use CreateIRTemp.
Daniel Dunbar
2010-02-16
1
-2
/
+2
*
Pass inline keyword to optimizer as the new InlineHint function attribute.
Jakob Stoklund Olesen
2010-02-09
1
-0
/
+10
*
Make sure to set vtable pointers in the destructors as well.
Anders Carlsson
2010-02-07
1
-0
/
+2
*
Standardize the parsing of function type attributes in a way that
John McCall
2010-02-05
1
-1
/
+3
*
Rename StartConditionalBranch/FinishConditionalBranch to BeginConditionalBran...
Anders Carlsson
2010-02-04
1
-4
/
+4
*
Fix a nasty bug where temporaries weren't marked as being conditional in some...
Anders Carlsson
2010-01-24
1
-0
/
+8
*
Emit human readable names for c/c++ functions. Avoid emitting linkage name if...
Devang Patel
2010-01-14
1
-7
/
+1
*
Roll out ASTContext::getTypeSizeInChars(), replacing instances of
Ken Dyck
2010-01-11
1
-1
/
+1
*
Correctly pass VTT parameters to constructors and destructors. The VTTs aren'...
Anders Carlsson
2010-01-02
1
-21
/
+2
*
Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, s...
Douglas Gregor
2009-12-22
1
-1
/
+1
*
Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap
Mike Stump
2009-12-15
1
-1
/
+1
*
Add support for detecting undefined shift behavior. WIP.
Mike Stump
2009-12-14
1
-2
/
+2
*
Implement runtime checks for undefined behavior. WIP.
Mike Stump
2009-12-12
1
-1
/
+2
*
Get rid of static variable.
Eli Friedman
2009-12-10
1
-1
/
+2
*
Ensure we only generate one terminate handler.
Mike Stump
2009-12-10
1
-1
/
+1
*
Add cleanups for exceptional edges. WIP.
Mike Stump
2009-12-09
1
-1
/
+5
*
Use StringRef in CGDebugInfo::EmitFunctionStart.
Benjamin Kramer
2009-12-08
1
-4
/
+1
*
Add codegen support for exception specifications. WIP.
Mike Stump
2009-12-07
1
-0
/
+2
*
Add support for function try blocks.
Mike Stump
2009-12-04
1
-1
/
+10
*
Make functions returning a struct indirectly evaluate the returned struct
Eli Friedman
2009-12-04
1
-3
/
+13
*
More exception handling improvements... WIP.
Mike Stump
2009-12-02
1
-9
/
+22
*
Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used y...
Anders Carlsson
2009-11-25
1
-1
/
+33
*
Fix lifetime of conditional temporaries. Patch by Victor Zverovich!
Anders Carlsson
2009-11-20
1
-1
/
+2
*
indirectbr seems to work! Rip out the old code.
Chris Lattner
2009-11-06
1
-99
/
+0
*
If a member variable of reference type is bound to a temporary in its member ...
Anders Carlsson
2009-11-06
1
-0
/
+5
*
Cleanup ctor/dtor emission.
Anders Carlsson
2009-11-06
1
-11
/
+12
*
This patch extends CleanupScope to support destruction
Fariborz Jahanian
2009-11-04
1
-7
/
+9
*
Implement clang support for indirect branch and address of label
Chris Lattner
2009-10-28
1
-0
/
+68
*
factor a creation of Int32Ty.
Chris Lattner
2009-10-28
1
-4
/
+3
*
Fixup the return type of functions.
Mike Stump
2009-10-23
1
-2
/
+4
*
reimplement codegen for indirect goto with the following advantages:
Chris Lattner
2009-10-13
1
-31
/
+72
*
number address-taken labels from 1. This allows 0 to be used as a sentinel
Chris Lattner
2009-10-13
1
-1
/
+1
*
Use the new Type::getInt8PtrTy method. This should probably be used in a lot
Chris Lattner
2009-10-13
1
-1
/
+1
[prev]
[next]