Skip to content
  1. Jun 27, 2013
  2. Jun 26, 2013
    • Matt Kopec's avatar
      Remove unneeded limbo state flag. · eb7f2315
      Matt Kopec authored
      llvm-svn: 185010
      eb7f2315
    • Rafael Espindola's avatar
      Remove unused include. · 68770d24
      Rafael Espindola authored
      llvm-svn: 184954
      68770d24
    • Ed Maste's avatar
      Don't explicitly set update version · 4ba58652
      Ed Maste authored
      Host::GetOSVersion's caller already sets it to UINT32_MAX to determine
      which version number components are set.
      
      llvm-svn: 184953
      4ba58652
    • Rafael Espindola's avatar
      Fix the lldb build. · 4609ea89
      Rafael Espindola authored
      llvm-svn: 184948
      4609ea89
    • Enrico Granata's avatar
      Remove the #define USE_CACHE since the formatters cache has been operational... · c2a96407
      Enrico Granata authored
      Remove the #define USE_CACHE since the formatters cache has been operational for a while now and has not caused issues that warrant disabling it
      Also, print the cache hits statistics if the log is in debugging mode vs. LLDB being a debug build - this should make it easier to gather useful metrics on cache success rate for real users
      
      llvm-svn: 184900
      c2a96407
    • Enrico Granata's avatar
      <rdar://problem/14266578> · 15571f15
      Enrico Granata authored
      "command source" was not properly setting the stop-on-error option
      
      llvm-svn: 184899
      15571f15
    • Enrico Granata's avatar
      <rdar://problem/14243761> · fb1d9fe1
      Enrico Granata authored
      The argument to -w (--category) in type * list is a regular expression
      This caused unhappiness with the gnu-libstdc++ category because of the double ++
      
      Now we check for exact textual match as-well-as regexp matching
      
      llvm-svn: 184898
      fb1d9fe1
    • Enrico Granata's avatar
      <rdar://problem/14266411> · b4675a4e
      Enrico Granata authored
      The semi-unofficial way of returning a status from a Python command was to return a string (e.g. return "no such variable was found") that LLDB would pick as a clue of an error having happened
      
      This checkin changes that:
      - SBCommandReturnObject now exports a SetError() call, which can take an SBError or a plain C-string
      - script commands now drop any return value and expect the SBCommandReturnObject ("return object") to be filled in appropriately - if you do nothing, a success will be assumed
      
      If your commands were relying on returning a value and having LLDB pick that up as an error, please change your commands to SetError() through the return object or expect changes in behavior
      
      llvm-svn: 184893
      b4675a4e
    • Sean Callanan's avatar
      Fixed a bug in ClangASTSource where we would return · 6b2f22de
      Sean Callanan authored
      the target of a typedef when asked for a typedef.
      
      llvm-svn: 184886
      6b2f22de
  3. Jun 25, 2013
  4. Jun 24, 2013
  5. Jun 22, 2013
  6. Jun 21, 2013
    • Han Ming Ong's avatar
      <rdar://problem/13980489> · 399289e9
      Han Ming Ong authored
      I added scan type to ‘qGetProfileData’ previously but forgot to update the check to be a substring search.
      
      llvm-svn: 184588
      399289e9
    • Enrico Granata's avatar
      Adding two new markers to the ${var..} specifier · 2c75f11e
      Enrico Granata authored
      - %N = show the name of the variable
      - %> = show the expression path of the variable
      
      llvm-svn: 184502
      2c75f11e
    • Enrico Granata's avatar
      In thread and frame format strings, it is now allowed to use Python functions... · aad8e480
      Enrico Granata authored
      In thread and frame format strings, it is now allowed to use Python functions to generate part or all of the output text
      Specifically, the ${target ${process ${thread and ${frame specifiers have been extended to allow a subkeyword .script:<fctName> (e.g. ${frame.script:FooFunction})
      The functions are prototyped as
      
      def FooFunction(Object,unused)
      
      where object is of the respective SB-type (SBTarget for target.script, ... and so on)
      
      This has not been implemented for ${var because it would be akin to a Python summary which is already well-defined in LLDB
      
      llvm-svn: 184500
      aad8e480
  7. Jun 20, 2013
  8. Jun 19, 2013
Loading