NAKAMURA Takumi
1e5ec2fcb4
test/Rewriter/rewrite-modern-ivars-2.mm: Add "-triple i386-apple-darwin9".
...
llvm-svn: 152476
2012-03-10 03:02:29 +00:00
Fariborz Jahanian
c2e2ad6486
objective-c modern rewriter. More fixes related to rewriting
...
ivars in the modern rewriter.
llvm-svn: 152451
2012-03-09 23:46:23 +00:00
Fariborz Jahanian
d7a3261dfb
objective-c modern translator. Don't ignore unnamed bitfields
...
when rewriting.
llvm-svn: 152123
2012-03-06 17:16:27 +00:00
Fariborz Jahanian
265a421dd9
Modern objective-c translator. rewriting ivars of aggregate type.
...
llvm-svn: 151662
2012-02-28 22:45:07 +00:00
Fariborz Jahanian
7e75de84bd
test for writing modern ivar of struct type.
...
llvm-svn: 151378
2012-02-24 18:17:50 +00:00
Fariborz Jahanian
5e6842bfea
more objective-c modern translator ivar tests.
...
llvm-svn: 151376
2012-02-24 18:03:42 +00:00
Fariborz Jahanian
dd5a59baed
objc modern translator. Fixes writing of block pointer ivar access.
...
llvm-svn: 151371
2012-02-24 17:35:35 +00:00
Fariborz Jahanian
eee9bca03d
Add an ivar test for modern objc abi translator.
...
llvm-svn: 151316
2012-02-24 00:34:58 +00:00
Fariborz Jahanian
77a9255329
Make test works with FileCheck.
...
llvm-svn: 151314
2012-02-24 00:29:20 +00:00
Fariborz Jahanian
77171d343b
another test for modern ivar access rewrite.
...
llvm-svn: 151208
2012-02-22 22:32:05 +00:00
Fariborz Jahanian
31ebebfb58
more tests for modern objc translator.
...
llvm-svn: 151201
2012-02-22 21:13:49 +00:00
Fariborz Jahanian
5e49eb95b5
modern objc translator. more writing of modern ivar access
...
abi.
llvm-svn: 151176
2012-02-22 18:13:25 +00:00
Fariborz Jahanian
8e1118cbd5
modern objc translator: fixes a bug where a class declaration with not
...
any implementation in tu was not being translated.
llvm-svn: 151106
2012-02-21 23:58:41 +00:00
Fariborz Jahanian
c481c0c0f5
objective-c modern translator. accessing ivars using modern abi - wip.
...
llvm-svn: 151103
2012-02-21 23:46:48 +00:00
Fariborz Jahanian
a7765fea90
modern objc translator. Finish off first cut of the
...
modern meta-data translation by commenting out private ivar
declarations in user source. Also, added several tests.
llvm-svn: 150985
2012-02-20 20:09:20 +00:00
Argyrios Kyrtzidis
75627ad8ba
Fix the rewriter that broke with r149987.
...
r149987 changed the way parsing happens inside an @implementation;
it aggregates the declarations inside and reports them together as a DeclGroup.
This had the side effect that function declarations were reported together with
their definition, while the rewriter expected for function declarations to be
reported immediately to the consumer and thus not have a body.
Fix this by having the rewriter actually check with isThisDeclarationADefinition()
to make sure the body comes from the current decl before rewriting it.
llvm-svn: 150325
2012-02-12 04:48:45 +00:00
Fariborz Jahanian
42d05f2faf
Also, these objc++ rewriter tests are meant to run in NeXt's
...
fragile-abi mode.
llvm-svn: 149788
2012-02-04 19:06:06 +00:00
Fariborz Jahanian
27062dd7d2
These tests are intended to run in NeXt's legacy objective-c abi (fragile-abi).
...
Make this explicit since default is now nonfragile-abi.
llvm-svn: 149787
2012-02-04 18:56:43 +00:00
Jean-Daniel Dupas
400dd1c3d0
Remove the "C" in "implicitly declaring C library function" diagnostic
...
because all functions are not C functions (i.e. NSLog).
llvm-svn: 149150
2012-01-27 23:21:02 +00:00
Fariborz Jahanian
87b4ae6cab
objective-c: Use class definition AST in several situations when
...
building related objc ASTs which require a class definition AST.
These were uncovered when testing objc rewriter.
llvm-svn: 147210
2011-12-23 00:31:02 +00:00
Fariborz Jahanian
a4b2a86353
objc, objc rewriter. Fixes couple of bugs one
...
because of recent refactoring and one in the
rewriter.
llvm-svn: 147070
2011-12-21 19:48:07 +00:00
Argyrios Kyrtzidis
78181b4b45
Fix the rewriter, rdar://10234024.
...
llvm-svn: 141201
2011-10-05 19:37:56 +00:00
Fariborz Jahanian
9f0bc5757c
objc rewriter - more fixes to support compiling the rewritten
...
test case having instancetype. Fix in rewriter is unrelated to
using of instancetype. Test case uses other feature not yet
supported in the rewriter. There is more work to do, but this
is an ongoing task and not urgent at this time.
llvm-svn: 139473
2011-09-10 17:01:56 +00:00
Fariborz Jahanian
e1378a4313
objc rewriter - Add rewriter test for new instancetype
...
along with minor rewriter fix to handle that. This
test is still incomplete due to rewriter issues
unrelated to instancetype.
llvm-svn: 139403
2011-09-09 20:35:22 +00:00
Fariborz Jahanian
abc11aa3bc
Fix a rewriter bug caused by recent changes in objc's
...
group decls.
llvm-svn: 138772
2011-08-29 22:21:46 +00:00
Fariborz Jahanian
3a039e339f
objective-c: Treat top-level objective-c declarations
...
, such as list of forward @class decls, in a DeclGroup
node. Deal with its consequence throught clang. This
is in preparation for more Sema work ahead. // rdar://8843851.
Feel free to reverse if it breaks something important
and I am unavailable.
llvm-svn: 138709
2011-08-27 20:50:59 +00:00
Fariborz Jahanian
9e7dbd1cc6
objc rewriter: Fixes a rewriting of implicit casting of an integral
...
argument to bool. // rdar://9899834
llvm-svn: 136946
2011-08-04 23:58:03 +00:00
Fariborz Jahanian
c7c346fd13
objective-c rewrite: Fixes rewriting of objective-c collection
...
statement inside a block. // rdar://9878420
llvm-svn: 136717
2011-08-02 20:28:46 +00:00
Fariborz Jahanian
c81decc0f5
Test for // rdar://9846759
...
llvm-svn: 136602
2011-07-31 20:27:31 +00:00
Fariborz Jahanian
fae2e8df37
Fixup more objc rwriter bug having to do with
...
rewriting of blocks which have objective-c
stuff which need be rewritten as well. // rdar://9254348
llvm-svn: 129300
2011-04-11 21:17:02 +00:00
Fariborz Jahanian
eae9c0e3df
Fixes a rewrting bug of a property-dot syntax expression inside
...
a block. First part of // rdar://9254348
llvm-svn: 129171
2011-04-08 23:48:29 +00:00
Fariborz Jahanian
c6078c87d1
Fixes a rewriter bug rewriting call to a byref
...
block pointer nested inside a block. // rdar:// 9204669
llvm-svn: 128747
2011-04-01 23:08:13 +00:00
Fariborz Jahanian
5bba75f1a7
ANother rewrite bug, rewriting a call of
...
__byref block. // rdar://9204669
llvm-svn: 128726
2011-04-01 19:19:28 +00:00
Fariborz Jahanian
ff51d4e559
Fix couple of rewriter bugs related to rewriting a
...
__block block declaration. //rdar://9204669
llvm-svn: 128682
2011-03-31 22:49:32 +00:00
Fariborz Jahanian
8f4903397d
Fix objc rewriting bug casting to qualified objective-c pointetr.
...
// rdar://9056351
llvm-svn: 126536
2011-02-26 01:31:36 +00:00
Fariborz Jahanian
f2890fc93f
Fix a rewriter bug involving call to property's
...
block. // rdar://9055596
llvm-svn: 126535
2011-02-26 00:33:41 +00:00
Fariborz Jahanian
40c5e1ada7
Teach objc-rewriter to pass -fobjc-exceptions along.
...
llvm-svn: 126497
2011-02-25 17:24:55 +00:00
Fariborz Jahanian
74405b02f9
Fix a rewrite bug. // rdar://9039342
...
llvm-svn: 126435
2011-02-24 21:29:21 +00:00
Anders Carlsson
3320e1575f
Make clang -cc1 disable Objective-C exceptions by default, and add a -fobjc-exceptions flag to turn them on.
...
Update all tests accordingly.
llvm-svn: 126177
2011-02-22 01:52:06 +00:00
John McCall
8377967543
Warn about code that uses variables and functions with internal linkage
...
without defining them. This should be an error, but I'm paranoid about
"uses" that end up not actually requiring a definition. I'll revisit later.
Also, teach IR generation to not set internal linkage on variable
declarations, just for safety's sake. Doing so produces an invalid module
if the variable is not ultimately defined.
Also, fix several places in the test suite where we were using internal
functions without definitions.
llvm-svn: 126016
2011-02-19 02:53:41 +00:00
Fariborz Jahanian
9cd649d376
Block rewriting bug. Don't take address of captured
...
byref variables again when passing them to inner blocks.
// rdar://9006279
llvm-svn: 125690
2011-02-16 22:37:10 +00:00
Fariborz Jahanian
ee504a0881
Fix an objective-c rewriter bug rewriting a __block
...
variable declaration of a struct declared type.
// rdar://8918702
llvm-svn: 124451
2011-01-27 23:18:15 +00:00
John McCall
4bb483629f
Change the wording of the bad-decl-for-attribute warning and error
...
to make it clear that we're talking about the declarations and not the types.
llvm-svn: 124175
2011-01-25 03:51:08 +00:00
Fariborz Jahanian
83e7d5a90a
Fix rewriter to match recent changes in property ref
...
AST.
llvm-svn: 120919
2010-12-04 21:22:13 +00:00
John McCall
bd35f73b6b
Apparently properties.m does not always fail; make it.
...
llvm-svn: 120894
2010-12-04 05:22:10 +00:00
John McCall
34376a68c4
Although we currently have explicit lvalue-to-rvalue conversions, they're
...
not actually frequently used, because ImpCastExprToType only creates a node
if the types differ. So explicitly create an ICE in the lvalue-to-rvalue
conversion code in DefaultFunctionArrayLvalueConversion() as well as several
other new places, and consistently deal with the consequences throughout the
compiler.
In addition, introduce a new cast kind for loading an ObjCProperty l-value,
and make sure we emit those nodes whenever an ObjCProperty l-value appears
that's not on the LHS of an assignment operator.
This breaks a couple of rewriter tests, which I've x-failed until future
development occurs on the rewriter.
Ted Kremenek kindly contributed the analyzer workarounds in this patch.
llvm-svn: 120890
2010-12-04 03:47:34 +00:00
Fariborz Jahanian
086a24a2be
Fixes a rewrite bug, rewriting nested property usage
...
inside blocks. Fixes //rdar: //8608293.
llvm-svn: 118425
2010-11-08 18:37:50 +00:00
Fariborz Jahanian
90d2e57ff7
Proper rewriting of block envokation with
...
qualified ObjC pointer types in its argument list.
// rdar: //8608902
llvm-svn: 118286
2010-11-05 18:34:46 +00:00
Fariborz Jahanian
733dde6035
Fixes a rewriting bug when type in a block argument type
...
is a objc qualified class type. // rdar: //8608902
llvm-svn: 118208
2010-11-03 23:50:34 +00:00
Fariborz Jahanian
147e1cbb49
Patch to rewrite objc qualified types which occur in
...
block pointer type arguments. Partial fix for
// rdar: //8608902
llvm-svn: 118205
2010-11-03 23:29:24 +00:00