Skip to content
  1. Dec 14, 2011
  2. Dec 13, 2011
  3. Dec 12, 2011
  4. Dec 07, 2011
  5. Dec 06, 2011
    • Jakob Stoklund Olesen's avatar
      Use logarithmic units for basic block alignment. · 10e12522
      Jakob Stoklund Olesen authored
      This was actually a bit of a mess. TLI.setPrefLoopAlignment was clearly
      documented as taking log2(bytes) units, but the x86 target would still
      set a preferred loop alignment of '16'.
      
      CodePlacementOpt passed this number on to the basic block, and
      AsmPrinter interpreted it as bytes.
      
      Now both MachineFunction and MachineBasicBlock use logarithmic
      alignments.
      
      Obviously, MachineConstantPool still measures alignments in bytes, so we
      can emulate the thrill of using as.
      
      llvm-svn: 145889
      10e12522
  6. Dec 04, 2011
  7. Dec 02, 2011
    • Nick Lewycky's avatar
      Move global variables in TargetMachine into new TargetOptions class. As an API · 50f02cb2
      Nick Lewycky authored
      change, now you need a TargetOptions object to create a TargetMachine. Clang
      patch to follow.
      
      One small functionality change in PTX. PTX had commented out the machine
      verifier parts in their copy of printAndVerify. That now calls the version in
      LLVMTargetMachine. Users of PTX who need verification disabled should rely on
      not passing the command-line flag to enable it.
      
      llvm-svn: 145714
      50f02cb2
  8. Nov 29, 2011
  9. Nov 18, 2011
  10. Nov 16, 2011
  11. Nov 15, 2011
    • Rafael Espindola's avatar
      We currently use a callback to handle an IL pass deleting a BB that still · f11e7f13
      Rafael Espindola authored
      has a reference to it. Unfortunately, that doesn't work for codegen passes
      since we don't get notified of MBB's being deleted (the original BB stays).
      
      Use that fact to our advantage and after printing a function, check if
      any of the IL BBs corresponds to a symbol that was not printed. This fixes
      pr11202.
      
      llvm-svn: 144674
      f11e7f13
  12. Nov 12, 2011
    • Rafael Espindola's avatar
      The dwarf standard says that the only differences between a out-of-line · e7cc8bff
      Rafael Espindola authored
      instance and a concrete inlined instance are the use of DW_TAG_subprogram
      instead of DW_TAG_inlined_subroutine and the who owns the tree.
      
      We were also omitting DW_AT_inline from the abstract roots. To fix this,
      make sure we mark abstract instance roots with DW_AT_inline even when
      we have only out-of-line instances referring to them with DW_AT_abstract_origin.
      
      FileCheck is not a very good tool for tests like this, maybe we should add
      a -verify mode to llvm-dwarfdump.
      
      llvm-svn: 144441
      e7cc8bff
  13. Nov 11, 2011
  14. Nov 10, 2011
  15. Nov 09, 2011
  16. Nov 08, 2011
  17. Nov 07, 2011
Loading