Skip to content
  1. Sep 28, 2010
    • Jim Ingham's avatar
      Replace the vestigial Value::GetOpaqueCLangQualType with the more correct... · 5a369128
      Jim Ingham authored
      Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Value::GetValueOpaqueClangQualType.
      
      But mostly, move the ObjC Trampoline handling code from the MacOSX dyld plugin to the AppleObjCRuntime classes.
      
      llvm-svn: 114935
      5a369128
    • Greg Clayton's avatar
      Added a DIE to clang opaque type map. · 6adffa27
      Greg Clayton authored
      Removed code that shouldn't have been checked in.
      
      llvm-svn: 114932
      6adffa27
    • Sean Callanan's avatar
      Added type lookup, so variables with user-defined types · 8fd3244a
      Sean Callanan authored
      can be allocated and manipulated.
      
      llvm-svn: 114928
      8fd3244a
    • Johnny Chen's avatar
      Trivial assert message modification. · ecb17ffc
      Johnny Chen authored
      llvm-svn: 114927
      ecb17ffc
    • Johnny Chen's avatar
      Use a better name for the abstract base class which contains the generic_type_tester() · 58aa345d
      Johnny Chen authored
      method.  Renamed it to be AbstractBase.py, which contains the GenericTester class that
      both IntegerTypesTestCase and FloatTypesTestCase inherit from.
      
      llvm-svn: 114926
      58aa345d
    • Johnny Chen's avatar
      Added "float" and "double" to types/TestBasicTypes.py. Abstracted the generic · 6316021b
      Johnny Chen authored
      type tester method into its own abstarct base class 'AbstractBase'.  And
      added TestIntegerTypes.py and TestFloatTypes.py.
      
      Added an option "-p reg-exp-pattern" to the test driver to specify a regular
      expression pattern to match against eligible filenames as our test cases.
      
      An example: 
      
      /Volumes/data/lldb/svn/trunk/test $ ./dotest.py -v -p "TestFloat.*" types
      ----------------------------------------------------------------------
      Collected 4 tests
      
      test_double_type_with_dsym (TestFloatTypes.FloatTypesTestCase)
      Test that double-type variables are displayed correctly. ... ok
      test_double_type_with_dwarf (TestFloatTypes.FloatTypesTestCase)
      Test that double-type variables are displayed correctly. ... ok
      test_float_type_with_dwarf (TestFloatTypes.FloatTypesTestCase)
      Test that float-type variables are displayed correctly. ... ok
      test_float_types_with_dsym (TestFloatTypes.FloatTypesTestCase)
      Test that float-type variables are displayed correctly. ... ok
      
      ----------------------------------------------------------------------
      Ran 4 tests in 5.592s
      
      OK
      
      llvm-svn: 114923
      6316021b
  2. Sep 27, 2010
  3. Sep 25, 2010
  4. Sep 24, 2010
    • Johnny Chen's avatar
      Added comments about the usage of int(string, 0) and long(string, 0) which pass · 264d6592
      Johnny Chen authored
      a base of 0 so that the radix of the string is determined based on the contents
      of string.
      
      llvm-svn: 114764
      264d6592
    • Johnny Chen's avatar
      Added two new .cpp files to be tested via TestBasicTypes.py for correct display · c01b78e7
      Johnny Chen authored
      of various combinations of data structures with unsigned int or unsigned long
      builtin types.
      
      llvm-svn: 114756
      c01b78e7
    • Johnny Chen's avatar
      61464fa6
    • Greg Clayton's avatar
      Added the ability to create an objective C method for an objective C · 0fffff58
      Greg Clayton authored
      interface in ClangASTContext. Also added two bool returning functions that
      indicated if an opaque clang qual type is a CXX class type, and if it is an
      ObjC class type.
      
      Objective C classes now will get their methods added lazily as they are
      encountered. The reason for this is currently, unlike C++, the 
      DW_TAG_structure_type and owns the ivars, doesn't not also contain the
      member functions. This means when we parse the objective C class interface
      we either need to find all functions whose names start with "+[CLASS_NAME"
      or "-[CLASS_NAME" and add them all to the class, or when we parse each objective
      C function, we slowly add it to the class interface definition. Since objective
      C's class doesn't change internal bits according to whether it has certain types
      of member functions (like C++ does if it has virtual functions, or if it has
      user ctors/dtors), I currently chose to lazily populate the class when each
      functions is parsed. Another issue we run into with ObjC method declarations
      is the "self" and "_cmd" implicit args are not marked as artificial in the
      DWARF (DW_AT_artifical), so we currently have to look for the parameters by
      name if we are trying to omit artificial function args if the language of the
      compile unit is ObjC or ObjC++.
      
      llvm-svn: 114722
      0fffff58
    • Johnny Chen's avatar
      Added a generic_type_tester() to the TestBasicTypes class to be used for · b052f6c5
      Johnny Chen authored
      testing various combinations of displaying variales of basic types.
      
      The generic_type_tester() works by first capturing the golden output produced
      by the printf stmts of ./a.out, creating a list of (var, value) pairs, and then
      running the a.out to a stop point, and comparing the 'frame variable var' output
      against the list of (var, value) pairs.
      
      Modified int_type() and added long_type() to use generic_type_tester().
      
      Also modified TestBase.expect() such that substring matching also return ok if
      the substring starts at the 0-th position.
      
      llvm-svn: 114708
      b052f6c5
  5. Sep 23, 2010
  6. Sep 22, 2010
Loading