Skip to content
  1. Aug 05, 2009
    • Dan Gohman's avatar
      Teach X86FastISel how to handle CCValAssign::BCvt, which is used for · 8c795698
      Dan Gohman authored
      MMX arguments. This fixes PR4684.
      
      llvm-svn: 78163
      8c795698
    • Chris Lattner's avatar
      Clarify common linkage and the requirements on it. Enforce · d055488c
      Chris Lattner authored
      them in the verifier.
      
      llvm-svn: 78160
      d055488c
    • Dan Gohman's avatar
      Major calling convention code refactoring. · f9bbcd1a
      Dan Gohman authored
      Instead of awkwardly encoding calling-convention information with ISD::CALL,
      ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering
      provides three virtual functions for targets to override:
      LowerFormalArguments, LowerCall, and LowerRet, which replace the custom
      lowering done on the special nodes. They provide the same information, but
      in a more immediately usable format.
      
      This also reworks much of the target-independent tail call logic. The
      decision of whether or not to perform a tail call is now cleanly split
      between target-independent portions, and the target dependent portion
      in IsEligibleForTailCallOptimization.
      
      This also synchronizes all in-tree targets, to help enable future
      refactoring and feature work.
      
      llvm-svn: 78142
      f9bbcd1a
    • Dan Gohman's avatar
      Don't flush the raw_ostream between each MachineFunction. These flush · c6b5e8a5
      Dan Gohman authored
      calls were originally put in place because errs() at one time was
      not unbuffered, and these print routines are commonly used with errs()
      for debugging. However, errs() is now properly unbuffered, so the
      flush calls are no longer needed. This significantly reduces the
      number of write(2) calls for regular asm printing when there are many
      small functions.
      
      llvm-svn: 78137
      c6b5e8a5
    • Bruno Cardoso Lopes's avatar
      1) Proper emit displacements for x86, using absolute relocations where necessary · 1b02ceeb
      Bruno Cardoso Lopes authored
      for ELF to work.  
      2) RIP addressing: Use SIB bytes for absolute relocations where RegBase=0, 
      IndexReg=0.
      3) The JIT can get the real address of cstpools and jmptables during
      code emission, fix that for object code emission
      
      llvm-svn: 78129
      1b02ceeb
  2. Aug 04, 2009
  3. Aug 03, 2009
  4. Aug 02, 2009
Loading