Skip to content
  1. Jun 19, 2013
    • Anna Zaks's avatar
      [analyzer] Do not create a CompoundVal for lvalue InitListExprs. · d60a41d9
      Anna Zaks authored
      These should be treated like scalars. This fixes a crash reported in radar://14164698.
      
      llvm-svn: 184257
      d60a41d9
    • Anna Zaks's avatar
      [analyzer] Do not report uninitialized value warnings inside swap functions. · 03256467
      Anna Zaks authored
      This silences warnings that could occur when one is swapping partially initialized structs. We suppress
      not only the assignments of uninitialized members, but any values inside swap because swap could
      potentially be used as a subroutine to swap class members.
      
      This silences a warning from std::try::function::swap() on partially initialized objects.
      
      llvm-svn: 184256
      03256467
    • Sean Silva's avatar
      [yaml2obj][ELF] Rudimentary symbol table support. · 6b083889
      Sean Silva authored
      Currently, we only output the name.
      
      llvm-svn: 184255
      6b083889
    • JF Bastien's avatar
      Small correction to unordered memory code generation of ARM LDRD · e84854a1
      JF Bastien authored
      The information was correct pre-LPAE.
      
      llvm-svn: 184253
      e84854a1
    • Adrian Prantl's avatar
      Emit forward decls for structs with declarations only when we are · c1a3fe7f
      Adrian Prantl authored
      limiting debug info.
      
      FIXME: There is still work left to do here, the testcase should work even with -flimit-debug-info.
      
      rdar://problem/14101097
      
      llvm-svn: 184252
      c1a3fe7f
    • Greg Clayton's avatar
      Added the ability to get a list of types from a SBModule or SBCompileUnit.... · f02500c7
      Greg Clayton authored
      Added the ability to get a list of types from a SBModule or SBCompileUnit. Sebastien Metrot wanted this, and sent a hollowed out patch. I filled in the blanks and did the low level implementation. The new functions are:
      
      //------------------------------------------------------------------
      /// Get all types matching \a type_mask from debug info in this
      /// module.
      ///
      /// @param[in] type_mask
      ///     A bitfield that consists of one or more bits logically OR'ed
      ///     together from the lldb::TypeClass enumeration. This allows
      ///     you to request only structure types, or only class, struct
      ///     and union types. Passing in lldb::eTypeClassAny will return
      ///     all types found in the debug information for this module.
      ///
      /// @return
      ///     A list of types in this module that match \a type_mask
      //------------------------------------------------------------------
      lldb::SBTypeList
      SBModule::GetTypes (uint32_t type_mask)
      
      
      //------------------------------------------------------------------
      /// Get all types matching \a type_mask from debug info in this
      /// compile unit.
      ///
      /// @param[in] type_mask
      ///    A bitfield that consists of one or more bits logically OR'ed
      ///    together from the lldb::TypeClass enumeration. This allows
      ///    you to request only structure types, or only class, struct
      ///    and union types. Passing in lldb::eTypeClassAny will return
      ///    all types found in the debug information for this compile
      ///    unit.
      ///
      /// @return
      ///    A list of types in this compile unit that match \a type_mask
      //------------------------------------------------------------------
      lldb::SBTypeList
      SBCompileUnit::GetTypes (uint32_t type_mask = lldb::eTypeClassAny);
      
      This lets you request types by filling out a mask that contains one or more bits from the lldb::TypeClass enumerations, so you can only get the types you really want.
      
      llvm-svn: 184251
      f02500c7
    • Eli Friedman's avatar
      Introduce a new mangling for protocol-qualified ObjC types in C++. This allows · 5f508953
      Eli Friedman authored
      to provide proper overloading, and also prevents mangling conflicts with
      template arguments of protocol-qualified type.
      
      This is a non-backward-compatible mangling change, but per discussion with
      John, the benefits outweigh this cost.
      
      Fixes <rdar://problem/14074822>.
      
      llvm-svn: 184250
      5f508953
    • Fariborz Jahanian's avatar
    • Enrico Granata's avatar
      <rdar://problem/14194128> · a2e7f9ab
      Enrico Granata authored
      ClangASTContext was failing to retrieve fields and base class info for ObjC variables
      This checkin fixes that and adds a test case
      
      llvm-svn: 184248
      a2e7f9ab
    • Bill Wendling's avatar
      Identify me on IRC. · 07ac4719
      Bill Wendling authored
      llvm-svn: 184247
      07ac4719
  2. Jun 18, 2013
Loading