[WebAssembly] Initial varargs support.
[oota-llvm.git] / lib / Target / WebAssembly / WebAssemblyInstrInfo.cpp
1 //===-- WebAssemblyInstrInfo.cpp - WebAssembly Instruction Information ----===//
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 /// \file
11 /// \brief This file contains the WebAssembly implementation of the
12 /// TargetInstrInfo class.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #include "WebAssemblyInstrInfo.h"
17 #include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
18 #include "WebAssemblySubtarget.h"
19 #include "llvm/CodeGen/MachineFrameInfo.h"
20 #include "llvm/CodeGen/MachineInstrBuilder.h"
21 #include "llvm/CodeGen/MachineMemOperand.h"
22 #include "llvm/CodeGen/MachineRegisterInfo.h"
23 using namespace llvm;
24
25 #define DEBUG_TYPE "wasm-instr-info"
26
27 #define GET_INSTRINFO_CTOR_DTOR
28 #include "WebAssemblyGenInstrInfo.inc"
29
30 WebAssemblyInstrInfo::WebAssemblyInstrInfo(const WebAssemblySubtarget &STI)
31     : WebAssemblyGenInstrInfo(WebAssembly::ADJCALLSTACKDOWN,
32                               WebAssembly::ADJCALLSTACKUP),
33       RI(STI.getTargetTriple()) {}
34
35 void WebAssemblyInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
36                                        MachineBasicBlock::iterator I,
37                                        DebugLoc DL, unsigned DestReg,
38                                        unsigned SrcReg, bool KillSrc) const {
39   const TargetRegisterClass *RC =
40       MBB.getParent()->getRegInfo().getRegClass(SrcReg);
41
42   unsigned CopyLocalOpcode;
43   if (RC == &WebAssembly::I32RegClass)
44     CopyLocalOpcode = WebAssembly::COPY_LOCAL_I32;
45   else if (RC == &WebAssembly::I64RegClass)
46     CopyLocalOpcode = WebAssembly::COPY_LOCAL_I64;
47   else if (RC == &WebAssembly::F32RegClass)
48     CopyLocalOpcode = WebAssembly::COPY_LOCAL_F32;
49   else if (RC == &WebAssembly::F64RegClass)
50     CopyLocalOpcode = WebAssembly::COPY_LOCAL_F64;
51   else
52     llvm_unreachable("Unexpected register class");
53
54   BuildMI(MBB, I, DL, get(CopyLocalOpcode), DestReg)
55       .addReg(SrcReg, KillSrc ? RegState::Kill : 0);
56 }
57
58 // Branch analysis.
59 bool WebAssemblyInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
60                                          MachineBasicBlock *&TBB,
61                                          MachineBasicBlock *&FBB,
62                                          SmallVectorImpl<MachineOperand> &Cond,
63                                          bool /*AllowModify*/) const {
64   bool HaveCond = false;
65   for (MachineInstr &MI : iterator_range<MachineBasicBlock::instr_iterator>(
66            MBB.getFirstInstrTerminator(), MBB.instr_end())) {
67     switch (MI.getOpcode()) {
68     default:
69       // Unhandled instruction; bail out.
70       return true;
71     case WebAssembly::BR_IF:
72       if (HaveCond)
73         return true;
74       Cond.push_back(MI.getOperand(0));
75       TBB = MI.getOperand(1).getMBB();
76       HaveCond = true;
77       break;
78     case WebAssembly::BR:
79       if (!HaveCond)
80         TBB = MI.getOperand(0).getMBB();
81       else
82         FBB = MI.getOperand(0).getMBB();
83       break;
84     }
85     if (MI.isBarrier())
86       break;
87   }
88
89   return false;
90 }
91
92 unsigned WebAssemblyInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
93   MachineBasicBlock::instr_iterator I = MBB.instr_end();
94   unsigned Count = 0;
95
96   while (I != MBB.instr_begin()) {
97     --I;
98     if (I->isDebugValue())
99       continue;
100     if (!I->isTerminator())
101       break;
102     // Remove the branch.
103     I->eraseFromParent();
104     I = MBB.instr_end();
105     ++Count;
106   }
107
108   return Count;
109 }
110
111 unsigned WebAssemblyInstrInfo::InsertBranch(MachineBasicBlock &MBB,
112                                             MachineBasicBlock *TBB,
113                                             MachineBasicBlock *FBB,
114                                             ArrayRef<MachineOperand> Cond,
115                                             DebugLoc DL) const {
116   assert(Cond.size() <= 1);
117
118   if (Cond.empty()) {
119     if (!TBB)
120       return 0;
121
122     BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(TBB);
123     return 1;
124   }
125
126   BuildMI(&MBB, DL, get(WebAssembly::BR_IF)).addOperand(Cond[0]).addMBB(TBB);
127   if (!FBB)
128     return 1;
129
130   BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(FBB);
131   return 2;
132 }
133
134 bool WebAssemblyInstrInfo::ReverseBranchCondition(
135     SmallVectorImpl<MachineOperand> &Cond) const {
136   assert(Cond.size() == 1);
137
138   // TODO: Add branch reversal here... And re-enable MachineBlockPlacementID
139   // when we do.
140
141   return true;
142 }