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
/
CGObjC.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Do not apply the ARC move optimization to 'const'-qualified xvalues.
John McCall
2011-06-25
1
-1
/
+1
*
LValue carries a type now, so simplify the main EmitLoad/Store APIs
John McCall
2011-06-25
1
-16
/
+12
*
Honor objc_precise_lifetime in GC mode by feeding the value
John McCall
2011-06-24
1
-0
/
+18
*
Change the IR-generation of VLAs so that we capture bounds,
John McCall
2011-06-24
1
-13
/
+12
*
Try to silence GCC warning
Douglas Gregor
2011-06-22
1
-0
/
+2
*
Implement the C++0x move optimization for Automatic Reference Counting
Douglas Gregor
2011-06-22
1
-0
/
+25
*
When binding a reference to an Automatic Reference Counting temporary,
Douglas Gregor
2011-06-22
1
-4
/
+42
*
Remove dead variables.
Benjamin Kramer
2011-06-18
1
-2
/
+0
*
Objective-C fast enumeration loop variables are not retained in ARC, but
John McCall
2011-06-17
1
-3
/
+8
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-17
/
+1362
*
Put local variables in appropriate debug info scope.
Devang Patel
2011-06-13
1
-5
/
+5
*
Implement Objective-C Related Result Type semantics.
Douglas Gregor
2011-06-11
1
-23
/
+52
*
Fix location of setter/getter synthesized for a property.
Devang Patel
2011-05-19
1
-7
/
+8
*
Use arrays and SmallVectors instead of std::vectors when building function
John McCall
2011-05-15
1
-5
/
+3
*
Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and
Alexis Hunt
2011-05-09
1
-1
/
+1
*
Simplify code a bit by using CallArgList::add. No intended functionality cha...
Eli Friedman
2011-05-02
1
-37
/
+25
*
Refine rules for atomic property api to
Fariborz Jahanian
2011-04-06
1
-2
/
+17
*
Fixes a regression caused by my last patch.
Fariborz Jahanian
2011-04-05
1
-1
/
+2
*
Generate atomic api for atomic properties (x86 and x86_64
Fariborz Jahanian
2011-04-05
1
-8
/
+59
*
Fix IRGen issues related to using property-dot syntax
Fariborz Jahanian
2011-03-30
1
-11
/
+3
*
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
Jay Foad
2011-03-30
1
-4
/
+2
*
(Almost) always call reserveOperandSpace() on newly created PHINodes.
Jay Foad
2011-03-30
1
-0
/
+2
*
Implements property of reference types. Adding
Fariborz Jahanian
2011-03-28
1
-5
/
+14
*
Make the property accessor functions that take a ptrdiff_t actually take a pt...
David Chisnall
2011-03-22
1
-2
/
+4
*
The emission of an Objective-C++'s class .cxx_destruct method should be
John McCall
2011-03-22
1
-38
/
+95
*
Use the "undergoes default argument promotion" bit on parameters to
John McCall
2011-03-09
1
-7
/
+5
*
DebugInfo can be enabled or disabled at function level (e.g. using an attribu...
Devang Patel
2011-03-07
1
-2
/
+2
*
Fix a typo.
Dan Gohman
2011-03-02
1
-1
/
+1
*
Revert "Add CC_Win64ThisCall and set it in the necessary places."
Tilmann Scheller
2011-03-02
1
-2
/
+1
*
Add CC_Win64ThisCall and set it in the necessary places.
Tilmann Scheller
2011-03-02
1
-1
/
+2
*
Establish the iteration variable of an ObjC for-in loop before
John McCall
2011-02-22
1
-7
/
+18
*
Objective-c armv7 API for atomic properties of
Fariborz Jahanian
2011-02-18
1
-97
/
+135
*
Fix an IRGen bug in property setter calls when
Fariborz Jahanian
2011-02-08
1
-1
/
+11
*
Replace calls to getTypeSize() and getTypeAlign() with their 'InChars'
Ken Dyck
2011-01-19
1
-4
/
+6
*
Emit DW_TAG_lexical_scope to surround foreach.
Devang Patel
2011-01-19
1
-0
/
+12
*
Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and
Jeffrey Yasskin
2011-01-18
1
-3
/
+0
*
Move name mangling support from CodeGen to AST. In the
Peter Collingbourne
2011-01-13
1
-0
/
+2
*
Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter,
Alexis Hunt
2011-01-08
1
-3
/
+3
*
Rework a few things about how we emit ObjC's for enumeration statement.
John McCall
2011-01-07
1
-95
/
+126
*
Add support for GNU runtime property set / get structure functions. Minor re...
David Chisnall
2010-12-26
1
-4
/
+4
*
Fix a bug in the emission of __real/__imag l-values on scalar operands.
John McCall
2010-12-05
1
-2
/
+1
*
More anonymous struct/union redesign. This one deals with anonymous field use...
Francois Pichet
2010-12-04
1
-2
/
+2
*
Test case for the l-value base only being evaluated once.
John McCall
2010-12-04
1
-44
/
+43
*
Kill the KVC l-value kind and calculate the base expression when emitting
John McCall
2010-12-04
1
-20
/
+12
*
Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope...
John McCall
2010-12-02
1
-63
/
+55
*
Calculate the value kind of an expression when it's created and
John McCall
2010-11-18
1
-4
/
+4
*
Eliminate usage of ObjCSuperExpr used for
Fariborz Jahanian
2010-10-14
1
-4
/
+4
*
one piece of code is responsible for the lifetime of every aggregate
John McCall
2010-09-15
1
-4
/
+2
*
IRGen fix for using property-dot syntax to pass
Fariborz Jahanian
2010-09-10
1
-1
/
+2
*
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-25
1
-3
/
+3
[prev]
[next]