Skip to content
  1. Dec 17, 2010
  2. Dec 16, 2010
  3. Dec 15, 2010
  4. Dec 14, 2010
  5. Dec 10, 2010
  6. Dec 09, 2010
  7. Dec 08, 2010
    • Bill Wendling's avatar
      Add support for loading from a constant pool. · 8a6449c4
      Bill Wendling authored
      llvm-svn: 121226
      8a6449c4
    • Jim Grosbach's avatar
      Let target asm backends see assembler flags as they go by. Use that to handle · 87055ed6
      Jim Grosbach authored
      thumb vs. arm mode differences in WriteNopData().
      
      llvm-svn: 121219
      87055ed6
    • Rafael Espindola's avatar
      Layout each section independently. With the testcase in PR8711: · 6624f472
      Rafael Espindola authored
      before:
              4 assembler - Number of assembler layout and relaxation steps
          78563 assembler - Number of emitted assembler fragments
        8693904 assembler - Number of emitted object file bytes
         271223 assembler - Number of evaluated fixups
      330771677 assembler - Number of fragment layouts
           5958 assembler - Number of relaxed instructions
        2508361 mcexpr    - Number of MCExpr evaluations
      
      real	0m26.123s
      user	0m25.694s
      sys	0m0.388s
      
      after:
      
            4 assembler - Number of assembler layout and relaxation steps
        78563 assembler - Number of emitted assembler fragments
      8693904 assembler - Number of emitted object file bytes
       271223 assembler - Number of evaluated fixups
       231507 assembler - Number of fragment layouts
         5958 assembler - Number of relaxed instructions
      2508361 mcexpr    - Number of MCExpr evaluations
      
      real	0m2.500s
      user	0m2.113s
      sys	0m0.273s
      
      And yes, the outputs are identical :-)
      
      llvm-svn: 121207
      6624f472
  8. Dec 07, 2010
    • Rafael Espindola's avatar
      Fix absolute recording of differences of symbols in two sections. Reduced from... · e78d3b38
      Rafael Espindola authored
      Fix absolute recording of differences of symbols in two sections. Reduced from ctor_dtor_count-2.cpp.
      
      llvm-svn: 121152
      e78d3b38
    • Rafael Espindola's avatar
      Fix relocations with weak definitions. · bdbe5a71
      Rafael Espindola authored
      llvm-svn: 121114
      bdbe5a71
    • Rafael Espindola's avatar
      Fix pcrel relocations that cross sections. · 2eabaae4
      Rafael Espindola authored
      llvm-svn: 121107
      2eabaae4
    • Rafael Espindola's avatar
      Fix a crash reduced from gcc produced assembly. · a2421ec7
      Rafael Espindola authored
      llvm-svn: 121085
      a2421ec7
    • Rafael Espindola's avatar
      Sorry for such a large commit. The summary is that only MachO cares about the · 93e3cf0e
      Rafael Espindola authored
      actuall addresses in a .o file, so it is better to let the MachO writer compute
      it.
      
      This is good for two reasons. First, areas that shouldn't care about
      addresses now don't have access to it. Second, the layout of each section
      is independent. I should use this in a subsequent commit to speed it up.
      
      Most of the patch is just removing the section address computation. The two
      interesting parts are the change on how we handle padding in the end
      of sections and how MachO can get the address of a-b when a and b are in
      different sections.
      
      Since now the expression evaluation normally doesn't know the section address,
      it will think that a-b needs relocation and let the MachO writer know. Once
      it has computed the section addresses, it calls back the expression evaluation
      with the section addresses to resolve these expressions.
      
      The remaining problem is the handling of padding. Currently it will create
      a special alignment fragment at the end. Since that fragment doesn't update
      the alignment of the section, it needs the real address to be computed.
      
      Since now the layout will not compute a-b with a and b in different sections,
      the only effect that the special alignment fragment has is update the
      address size of the section. This can also be done by the MachO writer.
      
      llvm-svn: 121076
      93e3cf0e
    • Jim Grosbach's avatar
      Add fixup for Thumb1 BL/BLX instructions. · 9e199469
      Jim Grosbach authored
      llvm-svn: 121072
      9e199469
  9. Dec 06, 2010
Loading