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
/
CGObjCGNU.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fix copy-and-paste bug that I introduced while tidying up the code.
David Chisnall
2011-04-05
1
-1
/
+1
*
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
Jay Foad
2011-03-30
1
-8
/
+4
*
(Almost) always call reserveOperandSpace() on newly created PHINodes.
Jay Foad
2011-03-30
1
-0
/
+4
*
Reformatted doc comments so that they are now difficult to edit in any editor...
David Chisnall
2011-03-26
1
-339
/
+186
*
Added some doc comments.
David Chisnall
2011-03-25
1
-14
/
+263
*
Continuing work on ObjC tidyup:
David Chisnall
2011-03-25
1
-340
/
+99
*
Fixed type error in last commit (forgot that now that selectors are not
David Chisnall
2011-03-23
1
-147
/
+199
*
Revert r128156 because of CodeGenObjC/messages.m and Coverage/codegen-gnu.m.
Andrew Trick
2011-03-23
1
-9
/
+10
*
Remove the redundant loads / stores to globals that we were generating for se...
David Chisnall
2011-03-23
1
-10
/
+9
*
Initial work on refactoring GNU runtime code (long overdue - it's quite obvious
David Chisnall
2011-03-23
1
-298
/
+349
*
Make the ivar offset always be a ptrdiff_t, because stuff in CGObjC.cpp expec...
David Chisnall
2011-03-22
1
-3
/
+5
*
Fix Objective-C++ exceptions (GNU runtime).
David Chisnall
2011-03-20
1
-2
/
+197
*
Fix foreign exception handling (GNU runtime).
David Chisnall
2011-03-16
1
-6
/
+17
*
Fix incorrect linkage specifiers for selectors.
David Chisnall
2011-03-14
1
-2
/
+2
*
Fix type mismatch between property function that CGObjCGNU was returning and ...
David Chisnall
2011-02-23
1
-4
/
+4
*
The instance size of a metaclass should be the size of a class. This is not,...
David Chisnall
2011-02-21
1
-1
/
+6
*
Convert RecordLayout::Size to CharUnits from bits. No changes to
Ken Dyck
2011-02-09
1
-2
/
+3
*
A few more tweaks to the blocks AST representation:
John McCall
2011-02-07
1
-2
/
+2
*
Move all the cleanups framework code into a single file.
John McCall
2011-01-28
1
-1
/
+1
*
Add support for GNU runtime property set / get structure functions. Minor re...
David Chisnall
2010-12-26
1
-14
/
+39
*
Remove the use of aliases in outputted code from ObjC (GNU runtime).
David Chisnall
2010-11-09
1
-4
/
+6
*
Some fixes for synthesized ivar metadata (GNU runtime).
David Chisnall
2010-11-03
1
-12
/
+19
*
Death to blocks, or at least the word "block" in one particular obnoxiously
John McCall
2010-10-15
1
-1
/
+1
*
Fixes an obscure bug in importd block variable layout
Fariborz Jahanian
2010-09-11
1
-1
/
+1
*
Convert all uses of StringLiteral::getStrData() to StringLiteral::getString()
Benjamin Kramer
2010-08-17
1
-1
/
+1
*
Some early work for providing block layout info.
Fariborz Jahanian
2010-08-04
1
-0
/
+4
*
Support catching Objective C pointers in C++ under the non-fragile NeXT runtime.
John McCall
2010-07-24
1
-0
/
+6
*
Revise cleanup IR generation to fix a major bug with cleanups (PR7686)
John McCall
2010-07-23
1
-7
/
+5
*
Don't crash when sending a message inside a block with the non-fragile ABI (G...
David Chisnall
2010-07-21
1
-1
/
+1
*
Mark the load after calling objc_msg_lookup_sender() so that it doesn't get o...
David Chisnall
2010-07-21
1
-2
/
+2
*
Rename LazyCleanup -> Cleanup. No functionality change for these last three
John McCall
2010-07-21
1
-3
/
+2
*
Convert the ObjC @synchronized cleanups to laziness. This is not actually
John McCall
2010-07-21
1
-7
/
+16
*
Adopt objc_assign_threadlocal() for __thread variables of GC types.
Fariborz Jahanian
2010-07-20
1
-3
/
+9
*
Teach IR generation how to lazily emit cleanups. This has a lot of advantages,
John McCall
2010-07-13
1
-2
/
+1
*
Validated by nightly-test runs on x86 and x86-64 darwin, including after
John McCall
2010-07-06
1
-214
/
+140
*
Objective-c++ IRGen. Support for @selector expression as
Fariborz Jahanian
2010-06-17
1
-3
/
+6
*
Give Type::isIntegralType() an ASTContext parameter, so that it
Douglas Gregor
2010-06-16
1
-2
/
+2
*
Patch adds support for copying of those
Fariborz Jahanian
2010-06-15
1
-8
/
+3
*
Push a return-value slot throughout ObjC message-send codegen. Will be
John McCall
2010-05-22
1
-2
/
+6
*
Fix my inability to spell 'continue' and a case where message sends returning...
David Chisnall
2010-05-20
1
-4
/
+7
*
Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointed
John McCall
2010-05-17
1
-4
/
+4
*
Substantially alter the design of the Objective C type AST by introducing
John McCall
2010-05-15
1
-1
/
+2
*
Tweaked selector mangling again (GNU runtime).
David Chisnall
2010-05-09
1
-6
/
+17
*
Fixed linkage problem from last commit (GNU runtime).
David Chisnall
2010-05-08
1
-2
/
+2
*
Tweaked selector generation (GNU runtime). Removed the use of GlobalAliases ...
David Chisnall
2010-05-08
1
-9
/
+15
*
As per Chris' request, return the Instruction from EmitCall and add the metad...
David Chisnall
2010-05-02
1
-3
/
+8
*
Attach message send metadata to the lookup as well as to the call (GNU runtime).
David Chisnall
2010-05-01
1
-7
/
+10
*
Make super message lookups cacheable (GNUstep Runtime)
David Chisnall
2010-05-01
1
-14
/
+34
*
Tweaked EmitCall() to permit the caller to provide some metadata to attach to...
David Chisnall
2010-05-01
1
-9
/
+18
*
Fixed incorrect type of alloca (GNU runtime).
David Chisnall
2010-04-30
1
-2
/
+5
[prev]
[next]