| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. | Eli Friedman | 2009-04-26 | 1 | -2/+2 |
* | split ObjC and C++ Statements out into their own headers. | Chris Lattner | 2009-04-26 | 1 | -0/+1 |
* | Minor refactoring. No intended change in behavior. | Fariborz Jahanian | 2009-04-24 | 1 | -3/+3 |
* | Minor refactoring. No change in functionality. | Fariborz Jahanian | 2009-04-24 | 1 | -2/+1 |
* | Some code clean up of objc2's bitmap layout. | Fariborz Jahanian | 2009-04-24 | 1 | -30/+28 |
* | Removed bunch of FIXMEs no longer needed. | Fariborz Jahanian | 2009-04-23 | 1 | -8/+0 |
* | Mark IMAGE_INFO as constant on x86_64-darwin. | Daniel Dunbar | 2009-04-23 | 1 | -0/+1 |
* | Use std::sort instead of qsort. | Daniel Dunbar | 2009-04-23 | 1 | -15/+7 |
* | Eliminate the three SmallVectors in ObjCImplDecl (for instance | Douglas Gregor | 2009-04-23 | 1 | -20/+30 |
* | ivar layout bitmap is alive! | Fariborz Jahanian | 2009-04-22 | 1 | -10/+20 |
* | Reapply r69771, with updates & fixes: | Daniel Dunbar | 2009-04-22 | 1 | -8/+21 |
* | Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. | Daniel Dunbar | 2009-04-22 | 1 | -2/+18 |
* | Don't convert interface types (to structs) as part of CodeGenTypes. | Daniel Dunbar | 2009-04-22 | 1 | -2/+7 |
* | Add CGObjCRuntime::GetConcreteClassStruct to encapsulate access to the | Daniel Dunbar | 2009-04-22 | 1 | -26/+13 |
* | Emit meta data using the Ivar, not a looked up FieldDecl. | Daniel Dunbar | 2009-04-22 | 1 | -8/+6 |
* | Merge ivar access amongst the three runtimes. | Daniel Dunbar | 2009-04-22 | 1 | -124/+99 |
* | Make ObjCInterfaceDecl's const in some more places. | Daniel Dunbar | 2009-04-22 | 1 | -6/+5 |
* | Revert r69771, I missed some (obvious) details. :/ | Daniel Dunbar | 2009-04-22 | 1 | -16/+49 |
* | Rework the shadow struct that is layed out for Objective-C classes. | Daniel Dunbar | 2009-04-22 | 1 | -49/+16 |
* | move 64-bit abi functions to lazy model, everything is lazy now, yay. | Chris Lattner | 2009-04-22 | 1 | -75/+81 |
* | remove the last of the non-lazy objc runtime functions for the 32-bit ABI, | Chris Lattner | 2009-04-22 | 1 | -54/+56 |
* | number of non-lazy runtime functions from 9 -> 4. | Chris Lattner | 2009-04-22 | 1 | -44/+47 |
* | make message send functions lazy, we're down from 14 non-lazy functions to 9. | Chris Lattner | 2009-04-22 | 1 | -64/+65 |
* | move more EH stuff to being lazily created. An empty .m file now | Chris Lattner | 2009-04-22 | 1 | -52/+54 |
* | make try/catch objc runtime functions be lazily generated. | Chris Lattner | 2009-04-22 | 1 | -22/+26 |
* | Make sure to mark the interface as completed when we see an | Daniel Dunbar | 2009-04-21 | 1 | -5/+2 |
* | More objc2's ivar layout bitmap. No change in functionality. | Fariborz Jahanian | 2009-04-21 | 1 | -5/+26 |
* | Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things | Daniel Dunbar | 2009-04-21 | 1 | -9/+4 |
* | Assert on a few conditions that (I believe) should hold | Daniel Dunbar | 2009-04-21 | 1 | -0/+2 |
* | ObjC2's Ivar bitmap layout work. No change in functionality. | Fariborz Jahanian | 2009-04-20 | 1 | -17/+29 |
* | Move countInheritedIvars to within striking distance of | Daniel Dunbar | 2009-04-20 | 1 | -39/+34 |
* | Inline GetFirstIvarInRecord into sole caller. | Daniel Dunbar | 2009-04-20 | 1 | -28/+9 |
* | Set a bit in IMAGE_INFO to indicate that we don't contain any | Daniel Dunbar | 2009-04-20 | 1 | -3/+12 |
* | Lift out GetNamedIvarList. | Daniel Dunbar | 2009-04-20 | 1 | -30/+40 |
* | Don't emit ivar offsets for unnamed bit fields. | Daniel Dunbar | 2009-04-20 | 1 | -5/+8 |
* | Remove non-const form of lookupFieldDeclForIvar. | Daniel Dunbar | 2009-04-20 | 1 | -1/+2 |
* | Comment fixes. | Daniel Dunbar | 2009-04-20 | 1 | -6/+6 |
* | Lift GetClassSizeInfo out of GenerateClass, add a FIXME. | Daniel Dunbar | 2009-04-19 | 1 | -29/+37 |
* | Fix rdar://6804402 - crash on objc implementations declared with | Chris Lattner | 2009-04-19 | 1 | -8/+17 |
* | Fix bug in computation of ivar offsets for (adjacent) bitfields. | Daniel Dunbar | 2009-04-19 | 1 | -10/+13 |
* | Reuse ObjcIvarOffsetVariable instead of duplicating code. | Daniel Dunbar | 2009-04-19 | 1 | -22/+9 |
* | Remove some unnecessary complexity. | Daniel Dunbar | 2009-04-19 | 1 | -11/+5 |
* | Fix a bug found by inspection, class/meta references could be emitted | Daniel Dunbar | 2009-04-18 | 1 | -17/+39 |
* | fix a crash compiling code with its own definition of objc_assign_weak. | Chris Lattner | 2009-04-17 | 1 | -5/+11 |
* | Don't put msgrefs in used globals (in particular, we don't want | Daniel Dunbar | 2009-04-17 | 1 | -1/+0 |
* | Fix rdar://6800926 - crash compiling non-fragile _Bool bitfield ivar, | Chris Lattner | 2009-04-17 | 1 | -5/+5 |
* | Removed a no longer needed FIXME comment. | Fariborz Jahanian | 2009-04-16 | 1 | -2/+0 |
* | Category method synbols must be qualified by gategory name to | Fariborz Jahanian | 2009-04-16 | 1 | -0/+6 |
* | Don't use \01 in symbol name if unnecessary. | Daniel Dunbar | 2009-04-15 | 1 | -1/+1 |
* | Fix alignment on obj_msgrefs to match llvm-gcc. | Daniel Dunbar | 2009-04-15 | 1 | -2/+1 |