Skip to content
  1. Jun 18, 2013
    • Sean Silva's avatar
      [yaml2obj][ELF] Refer specifically to the section header string table. · fde4ab0f
      Sean Silva authored
      A bug in libObject will cause it to assert() if a symbol table's string
      table and the section header string table are the same section, so we
      need to ensure that we emit two different string tables (among other
      things). The problematic code is the hardcoded usage of ".strtab"
      (`dot_strtab_sec`) for looking up symbol names in
      ELFObjectFile<ELFT>::getSymbolName.
      
      I discussed this with Michael, and he has some local improvements to the
      ELF code in libObject that, among other things, should fix our handling
      of this scenario.
      
      llvm-svn: 184161
      fde4ab0f
    • Sean Silva's avatar
      [yaml2obj][ELF] Ensure more fields are zero'd. · f62a6005
      Sean Silva authored
      I was spotting garbage in the output. I'd like to just zero the entire
      ELFYAML::Section to be sure, but it contains non-POD types. (I'm also
      trying to avoid bloating the ELFYAML::Foo classes with a bunch of
      constructor code).
      
      No test, since this is by its very nature unpredictable. I'm pretty sure
      that one of the sanitizers would catch it immediately though.
      
      llvm-svn: 184160
      f62a6005
    • Rafael Espindola's avatar
      Fix the build with gcc 4.7 and -std=c++11. · d9a5608d
      Rafael Espindola authored
      The error message was:
      
      /home/espindola/llvm/llvm/tools/gold/gold-plugin.cpp: In function ‘ld_plugin_status cleanup_hook()’:
      /home/espindola/llvm/llvm/tools/gold/gold-plugin.cpp:461:30: error: cannot pass objects of non-trivially-copyable type ‘std::string {aka class std::basic_string<char>}’ through ‘...’
      
      I will check if this was a clang or gcc issue.
      
      llvm-svn: 184138
      d9a5608d
  2. Jun 17, 2013
  3. Jun 16, 2013
    • David Blaikie's avatar
      DebugInfo: remove target-specific Frame Index handling for DBG_VALUE MachineInstrs · b735b4d6
      David Blaikie authored
      Frame index handling is now target-agnostic, so delete the target hooks
      for creation & asm printing of target-specific addressing in DBG_VALUEs
      and any related functions.
      
      llvm-svn: 184067
      b735b4d6
    • David Blaikie's avatar
      Debug Info: Simplify Frame Index handling in DBG_VALUE Machine Instructions · 0252265b
      David Blaikie authored
      Rather than using the full power of target-specific addressing modes in
      DBG_VALUEs with Frame Indicies, simply use Frame Index + Offset. This
      reduces the complexity of debug info handling down to two
      representations of values (reg+offset and frame index+offset) rather
      than three or four.
      
      Ideally we could ensure that frame indicies had been eliminated by the
      time we reached an assembly or dwarf generation, but I haven't spent the
      time to figure out where the FIs are leaking through into that & whether
      there's a good place to convert them. Some FI+offset=>reg+offset
      conversion is done (see PrologEpilogInserter, for example) which is
      necessary for some SelectionDAG assumptions about registers, I believe,
      but it might be possible to make this a more thorough conversion &
      ensure there are no remaining FIs no matter how instruction selection
      is performed.
      
      llvm-svn: 184066
      0252265b
    • David Blaikie's avatar
      MachineOperand::setIsDebug should ensure the register is /not/ a definition · 80d05549
      David Blaikie authored
      This currently unused function appeared to be asserting in the wrong
      direction - DebugValues are never definitions of registers, only uses.
      Curiously we don't perform any of these checks for the more common (&
      actually used) case of MachineOperand::CreateReg (or other Create
      functions).
      
      llvm-svn: 184065
      80d05549
    • Benjamin Kramer's avatar
      Silence warning in Release builds. · e9d5fb09
      Benjamin Kramer authored
      llvm-svn: 184059
      e9d5fb09
Loading