blob: 51c33216583d48802adb13157cc6441f9d9d7314 [file] [log] [blame]
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +00001//==-- SystemZISelLowering.h - SystemZ DAG Lowering Interface ----*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that SystemZ uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_SystemZ_ISELLOWERING_H
16#define LLVM_TARGET_SystemZ_ISELLOWERING_H
17
18#include "SystemZ.h"
Anton Korobeynikovab79c0a2009-07-16 13:51:53 +000019#include "SystemZRegisterInfo.h"
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
21#include "llvm/Target/TargetLowering.h"
22
23namespace llvm {
24 namespace SystemZISD {
25 enum {
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000026 FIRST_NUMBER = ISD::BUILTIN_OP_END,
27
28 /// Return with a flag operand. Operand 0 is the chain operand.
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000029 RET_FLAG,
30
31 /// CALL/TAILCALL - These operations represent an abstract call
32 /// instruction, which includes a bunch of information.
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000033 CALL,
34
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000035 /// CMP, UCMP - Compare instruction
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000036 CMP,
37 UCMP,
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000038
39 /// BRCOND - Conditional branch. Operand 0 is chain operand, operand 1 is
40 /// the block to branch if condition is true, operand 2 is condition code
41 /// and operand 3 is the flag operand produced by a CMP instruction.
42 BRCOND,
43
44 /// SELECT - Operands 0 and 1 are selection variables, operand 2 is
45 /// condition code and operand 3 is the flag operand.
46 SELECT
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000047 };
48 }
49
50 class SystemZSubtarget;
51 class SystemZTargetMachine;
52
53 class SystemZTargetLowering : public TargetLowering {
54 public:
55 explicit SystemZTargetLowering(SystemZTargetMachine &TM);
56
57 /// LowerOperation - Provide custom lowering hooks for some operations.
58 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
59
60 /// getTargetNodeName - This method returns the name of a target specific
61 /// DAG node.
62 virtual const char *getTargetNodeName(unsigned Opcode) const;
63
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000064 SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
65 SDValue LowerRET(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000066 SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000067 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000068 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000069
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000070 SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000071 SDValue LowerCCCCallTo(SDValue Op, SelectionDAG &DAG, unsigned CC);
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000072 SDNode* LowerCallResult(SDValue Chain, SDValue InFlag,
73 CallSDNode *TheCall,
74 unsigned CallingConv, SelectionDAG &DAG);
75
Anton Korobeynikov9ad3dd52009-07-16 13:52:31 +000076 SDValue EmitCmp(SDValue LHS, SDValue RHS,
77 ISD::CondCode CC, SDValue &SystemZCC,
78 SelectionDAG &DAG);
79
Anton Korobeynikov0b608cb2009-07-16 13:52:51 +000080
81 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
82 MachineBasicBlock *BB) const;
83
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000084 private:
85 const SystemZSubtarget &Subtarget;
86 const SystemZTargetMachine &TM;
Anton Korobeynikovab79c0a2009-07-16 13:51:53 +000087 const SystemZRegisterInfo *RegInfo;
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000088 };
89} // namespace llvm
90
91#endif // LLVM_TARGET_SystemZ_ISELLOWERING_H