Skip to content
  1. Mar 15, 2008
  2. Mar 11, 2008
  3. Mar 10, 2008
  4. Feb 26, 2008
  5. Feb 24, 2008
  6. Feb 14, 2008
  7. Feb 02, 2008
    • Evan Cheng's avatar
      SDIsel processes llvm.dbg.declare by recording the variable debug information... · efd142a9
      Evan Cheng authored
      SDIsel processes llvm.dbg.declare by recording the variable debug information descriptor and its corresponding stack frame index in MachineModuleInfo. This only works if the local variable is "homed" in the stack frame. It does not work for byval parameter, etc.
      Added ISD::DECLARE node type to represent llvm.dbg.declare intrinsic. Now the intrinsic calls are lowered into a SDNode and lives on through out the codegen passes.
      For now, since all the debugging information recording is done at isel time, when a ISD::DECLARE node is selected, it has the side effect of also recording the variable. This is a short term solution that should be fixed in time.
      
      llvm-svn: 46659
      efd142a9
  8. Jan 31, 2008
  9. Jan 10, 2008
    • Chris Lattner's avatar
      Start inferring side effect information more aggressively, and fix many bugs in the · 317332fc
      Chris Lattner authored
      x86 backend where instructions were not marked maystore/mayload, and perf issues where
      instructions were not marked neverHasSideEffects.  It would be really nice if we could
      write patterns for copy instructions.
      
      I have audited all the x86 instructions down to MOVDQAmr.  The flags on others and on
      other targets are probably not right in all cases, but no clients currently use this
      info that are enabled by default.
      
      llvm-svn: 45829
      317332fc
  10. Jan 08, 2008
  11. Jan 07, 2008
  12. Jan 06, 2008
  13. Dec 29, 2007
  14. Dec 17, 2007
  15. Dec 14, 2007
  16. Dec 13, 2007
  17. Nov 12, 2007
  18. Nov 11, 2007
  19. Sep 19, 2007
  20. Sep 11, 2007
  21. Jul 26, 2007
  22. Jul 21, 2007
  23. Jul 19, 2007
    • Evan Cheng's avatar
      Change instruction description to split OperandList into OutOperandList and · 94b5a80b
      Evan Cheng authored
      InOperandList. This gives one piece of important information: # of results
      produced by an instruction.
      An example of the change:
      def ADD32rr  : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      =>
      def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      
      llvm-svn: 40033
      94b5a80b
  24. Jul 10, 2007
  25. Jul 07, 2007
  26. Jul 06, 2007
  27. Jul 05, 2007
    • Evan Cheng's avatar
      - Added zero_reg def to stand for register 0. · 756d15ac
      Evan Cheng authored
      - Added two variants of PredicateOperand: ImmutablePredicateOperand, whose predicate does not change after isel; PredicateDefOperand, which represent a predicate defintion operand.
      
      llvm-svn: 37892
      756d15ac
  28. Jun 26, 2007
  29. Jun 19, 2007
  30. Jun 14, 2007
  31. Jun 06, 2007
  32. May 16, 2007
  33. May 08, 2007
  34. May 04, 2007
  35. May 03, 2007
Loading