Skip to content
  1. Apr 30, 2009
  2. Apr 29, 2009
  3. Apr 28, 2009
  4. Apr 27, 2009
  5. Apr 26, 2009
  6. Apr 25, 2009
  7. Apr 24, 2009
  8. Apr 23, 2009
  9. Apr 22, 2009
    • Daniel Dunbar's avatar
      Reapply r69771, with updates & fixes: · e4f25b70
      Daniel Dunbar authored
      Rework the shadow struct that is layed out for Objective-C classes.
      
       - Superclasses are now always laid out in their shadow structure at
         the first field.
      
       - Prior to this, the entire class heirarchy was flattened into a
         single structure which meant that alignment, padding, and bitfields
         were incorrect (the ASTRecordLayout was correct however, which
         meant our debug info didn't coincide with ivar offsets, for
         example).
      
       - This is still very suboptimal (for example, ivar are looked up
         recursively, but I believe the ivar layout itself is now at least
         close to correct.
      
       - <rdar://problem/6773388> error: objc[29823]: layout bitmap sliding
         backwards
      
      llvm-svn: 69811
      e4f25b70
    • Daniel Dunbar's avatar
      Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. · 202f3dc5
      Daniel Dunbar authored
       - This is only used by CGObjCRuntime now.
      
      llvm-svn: 69800
      202f3dc5
    • Daniel Dunbar's avatar
      Don't convert interface types (to structs) as part of CodeGenTypes. · 7d4e1c5e
      Daniel Dunbar authored
       - This has pros and cons, but for now the pros seem to significantly
         outway the con.
      
      The con is that we will always need to cast in the runtime
      implementation to a struct type, if we wish to access an interface
      directly.
      
      The pros are:
       - Avoid the cost of generating types which are used. Most
         manipulation of Objective-C objects is done through messages, and
         only the implementation of a class will directly access
         memory. Previously, we would convert the type even if it only
         appear as a function parameter, for example.
      
       - We don't need to worry about incomplete types, and
         UpdateCompletedType for interfaces is gone.
      
       - It becomes easier to narrow the interface to the shadow struct for
         Objective-C interfaces (so it can be eliminated).
      
      Currently the runtimes still use the CodeGenTypes machinery to
      generate the LLVM structure they need via ConvertTagDecl, but this can
      eventually be replaced.
      
      llvm-svn: 69797
      7d4e1c5e
    • Daniel Dunbar's avatar
      Add CGObjCRuntime::GetConcreteClassStruct to encapsulate access to the · 7b4dfc8b
      Daniel Dunbar authored
      underlying llvm::StructType for an interface.
      
      llvm-svn: 69796
      7b4dfc8b
    • Daniel Dunbar's avatar
      Simplify. · 83a66f78
      Daniel Dunbar authored
      llvm-svn: 69793
      83a66f78
    • Daniel Dunbar's avatar
      Emit meta data using the Ivar, not a looked up FieldDecl. · 725dc2c5
      Daniel Dunbar authored
      llvm-svn: 69790
      725dc2c5
    • Daniel Dunbar's avatar
      Use ComputeIvarBaseOffset instead of looking up by hand. · 89623dec
      Daniel Dunbar authored
      llvm-svn: 69789
      89623dec
    • Daniel Dunbar's avatar
      Merge ivar access amongst the three runtimes. · 9fd114d5
      Daniel Dunbar authored
       - For now, this means we are always doing the address computations by
         hand instead of constructing a proper GEP. Right now, however, this
         is less important than having fewer entry points to dealing with
         Objective-C interface layout.
      
      llvm-svn: 69787
      9fd114d5
Loading