Skip to content
  1. Jun 20, 2013
  2. Jun 19, 2013
    • Bill Wendling's avatar
    • David Blaikie's avatar
      DebugInfo: PR14763/r183329 correct the location of indirect parameters · 81a4dc75
      David Blaikie authored
      We had been papering over a problem with location info for non-trivial
      types passed by value by emitting their type as references (this caused
      the debugger to interpret the location information correctly, but broke
      the type of the function). r183329 corrected the type information but
      lead to the debugger interpreting the pointer parameter as the value -
      the debug info describing the location needed an extra dereference.
      
      Use a new flag in DIVariable to add the extra indirection (either by
      promoting an existing DW_OP_reg (parameter passed in a register) to
      DW_OP_breg + 0 or by adding DW_OP_deref to an existing DW_OP_breg + n
      (parameter passed on the stack).
      
      llvm-svn: 184368
      81a4dc75
    • Michael Gottesman's avatar
      [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. · b5101ab3
      Michael Gottesman authored
      I forgot to to do this in r184356. The only references were in APFloatTest.cpp.
      
      llvm-svn: 184366
      b5101ab3
    • David Blaikie's avatar
      DebugInfo: Specify that a value is stored indirectly · 59eb322c
      David Blaikie authored
      This is a precursor to fix a regression caused by PR14763/r183329 where
      the location of a non-trivial pass-by-value parameter ends up
      incorrectly referring directly to the parameter (a pointer) rather than
      the object pointed to by the pointer.
      
      llvm-svn: 184365
      59eb322c
    • David Blaikie's avatar
      Spell correct (s/begining/beginning/) · b9a18708
      David Blaikie authored
      llvm-svn: 184362
      b9a18708
    • David Blaikie's avatar
      llvm-dwarfdump: Add support for dumping the .debug_loc section · 18e73508
      David Blaikie authored
      This is a basic implementation - we still don't have any support (that I
      know of) for dumping DWARF expressions in a meaningful way, so the
      location information itself is just printed as a sequence of bytes as we
      do elsewhere.
      
      llvm-svn: 184361
      18e73508
    • Bill Wendling's avatar
      Access the TargetLoweringInfo from the TargetMachine object instead of caching... · a3cd3502
      Bill Wendling authored
      Access the TargetLoweringInfo from the TargetMachine object instead of caching it. The TLI may change between functions. No functionality change.
      
      llvm-svn: 184360
      a3cd3502
    • Rafael Espindola's avatar
      Remove unused function. · 8079be83
      Rafael Espindola authored
      llvm-svn: 184359
      8079be83
    • Ulrich Weigand's avatar
      · 64f44051
      Ulrich Weigand authored
      [MC/DWARF] Generate multiple .debug_line entries for adjacent .loc directives
      
      The compiler occasionally generates multiple .loc directives in a row
      (at the same instruction address).  These need to be transformed into
      multple actual .debug_line table entries, since they are used to signal
      certain information to the debugger (e.g. if the opening brace of a
      function body is on the same line as the declaration).
      
      The MCAsmStreamer version of EmitDwarfLocDirective handles this
      correctly by emitting a .loc directive every time it is called.
      However, the MCObjectStream version simply defaults to recording
      the information and emitting only a single table entry later,
      e.g. when EmitInstruction is called.
      
      This patch introduces a MCAsmStreamer::EmitDwarfLocDirective
      version that emits a line table entry for a .loc directive
      that may already be pending before recording the new directive.
      (This is similar to how this is handled in GNU as.)
      
      With this patch (and the code alignment factor patch) applied,
      I'm now getting identical DWARF .debug sections for all test-suite
      object files on PowerPC for the internal and the external assembler.
      
      llvm-svn: 184357
      64f44051
    • Michael Gottesman's avatar
      [APFloat] Converted all references to APFloat::isNormal => APFloat::isFiniteNonZero. · 3cb77ab9
      Michael Gottesman authored
      Turns out all the references were in llvm and not in clang.
      
      llvm-svn: 184356
      3cb77ab9
    • Rafael Espindola's avatar
      Really fix the missing header :-( · 38e6b86d
      Rafael Espindola authored
      llvm-svn: 184355
      38e6b86d
    • Rafael Espindola's avatar
      Add missing include found by the bots. · e20437df
      Rafael Espindola authored
      llvm-svn: 184354
      e20437df
    • Rafael Espindola's avatar
      Remove last use of PathV1.h from Archive.h · fca03890
      Rafael Espindola authored
      Store the individual fields we need instead of a sys::FileStatus.
      
      llvm-svn: 184353
      fca03890
    • Bill Wendling's avatar
      Access the TargetLoweringInfo from the TargetMachine object instead of caching... · 7a639ea2
      Bill Wendling authored
      Access the TargetLoweringInfo from the TargetMachine object instead of caching it. The TLI may change between functions. No functionality change.
      
      llvm-svn: 184352
      7a639ea2
    • Aaron Ballman's avatar
      Modified the implementation of fs::GetUniqueID on Windows such that it... · 9fbe530d
      Aaron Ballman authored
      Modified the implementation of fs::GetUniqueID on Windows such that it actually finds a unique identifier for a file.  Also adds unit tests for GetUniqueID.
      
      llvm-svn: 184351
      9fbe530d
    • Michael Gottesman's avatar
      [APFloat] Added isFiniteNonZero predicate. · d95d4478
      Michael Gottesman authored
      This is the first patch in a series of patches to rename isNormal =>
      isFiniteNonZero and isIEEENormal => isNormal. In order to prevent careless
      errors on my part the overall plan is:
      
      1. Add the isFiniteNonZero predicate with tests. I can do this in a method
      independent of isNormal. (This step is this patch).
      2. Convert all references to isNormal with isFiniteNonZero. My plan is to
      comment out isNormal locally and continually convert isNormal references =>
      isFiniteNonZero until llvm/clang compiles.
      3. Remove old isNormal and rename isIEEENormal to isNormal.
      4. Look through all of said references from patch 2 and see if we can simplify
      them by using the new isNormal.
      
      llvm-svn: 184350
      d95d4478
Loading