blob: 4e74b972430f79d70150853fe4276e823aa8923b [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.
33 CALL
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000034 };
35 }
36
37 class SystemZSubtarget;
38 class SystemZTargetMachine;
39
40 class SystemZTargetLowering : public TargetLowering {
41 public:
42 explicit SystemZTargetLowering(SystemZTargetMachine &TM);
43
44 /// LowerOperation - Provide custom lowering hooks for some operations.
45 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
46
47 /// getTargetNodeName - This method returns the name of a target specific
48 /// DAG node.
49 virtual const char *getTargetNodeName(unsigned Opcode) const;
50
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000051 SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
52 SDValue LowerRET(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000053 SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
54
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000055 SDValue LowerCCCArguments(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov961cd4a2009-07-16 13:50:21 +000056 SDValue LowerCCCCallTo(SDValue Op, SelectionDAG &DAG, unsigned CC);
Anton Korobeynikov974e6a52009-07-16 13:28:59 +000057
58 SDNode* LowerCallResult(SDValue Chain, SDValue InFlag,
59 CallSDNode *TheCall,
60 unsigned CallingConv, SelectionDAG &DAG);
61
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000062 private:
63 const SystemZSubtarget &Subtarget;
64 const SystemZTargetMachine &TM;
Anton Korobeynikovab79c0a2009-07-16 13:51:53 +000065 const SystemZRegisterInfo *RegInfo;
Anton Korobeynikov32b7d5b2009-07-16 13:27:25 +000066 };
67} // namespace llvm
68
69#endif // LLVM_TARGET_SystemZ_ISELLOWERING_H