- Oct 25, 2007
-
-
Chris Lattner authored
some code. llvm-svn: 43322
-
Fariborz Jahanian authored
instance/class methods metadata. llvm-svn: 43320
-
Ted Kremenek authored
left and right bracket. This is useful for serialization. llvm-svn: 43318
-
Devang Patel authored
llvm-svn: 43317
-
Steve Naroff authored
Still to do: - Chris will fix a bug in the rewriting engine for nested stmts. For example, the following: NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; tranlates to: NSAutoreleasePool * pool = objc_msgSend(objc_msgSend(objc_getClass("NSAutoreleasePool"), sel_getUid("alloc")), sel_getUid("init"))utoreleasePool"), sel_getUid("alloc")) init]; ...which is correct, except there is garbage after sel_getUid("init"). This is because the rewriter isn't updating the extent of the containing message expression. - Do the crazy cast thang. llvm-svn: 43316
-
Devang Patel authored
foo()->a = 42; llvm-svn: 43315
-
- Oct 24, 2007
-
-
Fariborz Jahanian authored
llvm-svn: 43313
-
Fariborz Jahanian authored
protocol meta-data (unlike what documentation says). 2) Include objc.h so, we can compile the generated metadata with both gcc and clang. llvm-svn: 43311
-
Devang Patel authored
llvm-svn: 43310
-
Fariborz Jahanian authored
Implemented emission of category metadata, llvm-svn: 43308
-
Ted Kremenek authored
new split-header file configuration (Serialize.h and Deserialize.h) now in place in the core LLVM repository. Removed unneeded SerializeTrait specializations for enums in TokenKinds.h llvm-svn: 43306
-
Devang Patel authored
llvm-svn: 43301
-
Devang Patel authored
llvm-svn: 43300
-
Chris Lattner authored
llvm-svn: 43299
-
Chris Lattner authored
This will make nested subexprs work. llvm-svn: 43296
-
Ted Kremenek authored
This permits in-place replacement of the original AST statements. llvm-svn: 43295
-
Steve Naroff authored
Incorporate some feedback from Chris... llvm-svn: 43285
-
Devang Patel authored
Constify methods and reuse RecordOrganizer object. llvm-svn: 43284
-
Devang Patel authored
llvm-svn: 43283
-
Devang Patel authored
llvm-svn: 43282
-
Devang Patel authored
llvm-svn: 43281
-
Devang Patel authored
llvm-svn: 43280
-
Hartmut Kaiser authored
llvm-svn: 43278
-
Hartmut Kaiser authored
llvm-svn: 43277
-
Steve Naroff authored
Add some plumbing to rewrite message expressions (still under construction). llvm-svn: 43274
-
Devang Patel authored
llvm-svn: 43269
-
Devang Patel authored
typdef struct A { int i; struct A *next; } A llvm-svn: 43268
-
Ted Kremenek authored
Updated serialization test code in the driver to test serialization of these types. llvm-svn: 43266
-
- Oct 23, 2007
-
-
Devang Patel authored
llvm-svn: 43258
-
Steve Naroff authored
- Add rewrite rule for @class. - Add setter/getter to ObjcClassDecl. - Predefined key runtime functions. llvm-svn: 43257
-
Fariborz Jahanian authored
llvm-svn: 43255
-
Devang Patel authored
llvm-svn: 43236
-
Fariborz Jahanian authored
llvm-svn: 43235
-
- Oct 22, 2007
-
-
Fariborz Jahanian authored
llvm-svn: 43233
-
- Oct 19, 2007
-
-
Chris Lattner authored
llvm-svn: 43188
-
Hartmut Kaiser authored
llvm-svn: 43179
-
Gabor Greif authored
llvm-svn: 43178
-
Fariborz Jahanian authored
llvm-svn: 43159
-
Steve Naroff authored
Include a simple test case for the previous commit... llvm-svn: 43158
-
Steve Naroff authored
Fix the previous (short lived:-) FIXME. I didn't realize that GCC considers this a hard error (I thought it was built-in). Since it's not, we should simply emit an error. [dylan:~/llvm/tools/clang] admin% cc -c trivial.m trivial.m:6: error: cannot find interface declaration for 'NSConstantString' [administrators-powerbook59:~/llvm/tools/clang] admin% ../../Debug/bin/clang trivial.m trivial.m:6:16: error: cannot find interface declaration for 'NSConstantString' NSString *s = @"123"; ^ 1 diagnostic generated. llvm-svn: 43157
-