| Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 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 | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 11 | /// This file contains the WebAssembly implementation of the | 
| Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 12 | /// TargetInstrInfo class. | 
|  | 13 | /// | 
|  | 14 | //===----------------------------------------------------------------------===// | 
|  | 15 |  | 
|  | 16 | #include "WebAssemblyInstrInfo.h" | 
|  | 17 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" | 
| Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 18 | #include "WebAssemblyMachineFunctionInfo.h" | 
| Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 19 | #include "WebAssemblySubtarget.h" | 
|  | 20 | #include "llvm/CodeGen/MachineFrameInfo.h" | 
|  | 21 | #include "llvm/CodeGen/MachineInstrBuilder.h" | 
|  | 22 | #include "llvm/CodeGen/MachineMemOperand.h" | 
|  | 23 | #include "llvm/CodeGen/MachineRegisterInfo.h" | 
|  | 24 | using namespace llvm; | 
|  | 25 |  | 
|  | 26 | #define DEBUG_TYPE "wasm-instr-info" | 
|  | 27 |  | 
| JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 28 | #define GET_INSTRINFO_CTOR_DTOR | 
|  | 29 | #include "WebAssemblyGenInstrInfo.inc" | 
|  | 30 |  | 
| Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 31 | WebAssemblyInstrInfo::WebAssemblyInstrInfo(const WebAssemblySubtarget &STI) | 
| Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 32 | : WebAssemblyGenInstrInfo(WebAssembly::ADJCALLSTACKDOWN, | 
| Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 33 | WebAssembly::ADJCALLSTACKUP, | 
|  | 34 | WebAssembly::CATCHRET), | 
| Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 35 | RI(STI.getTargetTriple()) {} | 
| Dan Gohman | 4f52e00 | 2015-09-09 00:52:47 +0000 | [diff] [blame] | 36 |  | 
| Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 37 | bool WebAssemblyInstrInfo::isReallyTriviallyReMaterializable( | 
| Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 38 | const MachineInstr &MI, AliasAnalysis *AA) const { | 
|  | 39 | switch (MI.getOpcode()) { | 
| Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 40 | case WebAssembly::CONST_I32: | 
|  | 41 | case WebAssembly::CONST_I64: | 
|  | 42 | case WebAssembly::CONST_F32: | 
|  | 43 | case WebAssembly::CONST_F64: | 
|  | 44 | // isReallyTriviallyReMaterializableGeneric misses these because of the | 
|  | 45 | // ARGUMENTS implicit def, so we manualy override it here. | 
|  | 46 | return true; | 
|  | 47 | default: | 
|  | 48 | return false; | 
|  | 49 | } | 
|  | 50 | } | 
|  | 51 |  | 
| Dan Gohman | 4f52e00 | 2015-09-09 00:52:47 +0000 | [diff] [blame] | 52 | void WebAssemblyInstrInfo::copyPhysReg(MachineBasicBlock &MBB, | 
|  | 53 | MachineBasicBlock::iterator I, | 
| Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 54 | const DebugLoc &DL, unsigned DestReg, | 
| Dan Gohman | 4f52e00 | 2015-09-09 00:52:47 +0000 | [diff] [blame] | 55 | unsigned SrcReg, bool KillSrc) const { | 
| Derek Schuff | 8bb5f29 | 2015-12-16 23:21:30 +0000 | [diff] [blame] | 56 | // This method is called by post-RA expansion, which expects only pregs to | 
|  | 57 | // exist. However we need to handle both here. | 
|  | 58 | auto &MRI = MBB.getParent()->getRegInfo(); | 
| Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 59 | const TargetRegisterClass *RC = | 
|  | 60 | TargetRegisterInfo::isVirtualRegister(DestReg) | 
|  | 61 | ? MRI.getRegClass(DestReg) | 
| Derek Schuff | 6ea637a | 2016-01-29 18:37:49 +0000 | [diff] [blame] | 62 | : MRI.getTargetRegisterInfo()->getMinimalPhysRegClass(DestReg); | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 63 |  | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 64 | unsigned CopyOpcode; | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 65 | if (RC == &WebAssembly::I32RegClass) | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 66 | CopyOpcode = WebAssembly::COPY_I32; | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 67 | else if (RC == &WebAssembly::I64RegClass) | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 68 | CopyOpcode = WebAssembly::COPY_I64; | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 69 | else if (RC == &WebAssembly::F32RegClass) | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 70 | CopyOpcode = WebAssembly::COPY_F32; | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 71 | else if (RC == &WebAssembly::F64RegClass) | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 72 | CopyOpcode = WebAssembly::COPY_F64; | 
| Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 73 | else | 
|  | 74 | llvm_unreachable("Unexpected register class"); | 
|  | 75 |  | 
| Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 76 | BuildMI(MBB, I, DL, get(CopyOpcode), DestReg) | 
| Dan Gohman | 4f52e00 | 2015-09-09 00:52:47 +0000 | [diff] [blame] | 77 | .addReg(SrcReg, KillSrc ? RegState::Kill : 0); | 
|  | 78 | } | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 79 |  | 
| Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 80 | MachineInstr * | 
| Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 81 | WebAssemblyInstrInfo::commuteInstructionImpl(MachineInstr &MI, bool NewMI, | 
| Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 82 | unsigned OpIdx1, | 
|  | 83 | unsigned OpIdx2) const { | 
|  | 84 | // If the operands are stackified, we can't reorder them. | 
|  | 85 | WebAssemblyFunctionInfo &MFI = | 
| Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 86 | *MI.getParent()->getParent()->getInfo<WebAssemblyFunctionInfo>(); | 
|  | 87 | if (MFI.isVRegStackified(MI.getOperand(OpIdx1).getReg()) || | 
|  | 88 | MFI.isVRegStackified(MI.getOperand(OpIdx2).getReg())) | 
| Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 89 | return nullptr; | 
|  | 90 |  | 
|  | 91 | // Otherwise use the default implementation. | 
|  | 92 | return TargetInstrInfo::commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2); | 
|  | 93 | } | 
|  | 94 |  | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 95 | // Branch analysis. | 
| Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 96 | bool WebAssemblyInstrInfo::analyzeBranch(MachineBasicBlock &MBB, | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 97 | MachineBasicBlock *&TBB, | 
|  | 98 | MachineBasicBlock *&FBB, | 
|  | 99 | SmallVectorImpl<MachineOperand> &Cond, | 
| Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 100 | bool /*AllowModify*/) const { | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 101 | bool HaveCond = false; | 
| Dan Gohman | d544e0c | 2015-12-21 17:22:02 +0000 | [diff] [blame] | 102 | for (MachineInstr &MI : MBB.terminators()) { | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 103 | switch (MI.getOpcode()) { | 
|  | 104 | default: | 
|  | 105 | // Unhandled instruction; bail out. | 
|  | 106 | return true; | 
| Dan Gohman | 231244c | 2015-11-13 00:46:31 +0000 | [diff] [blame] | 107 | case WebAssembly::BR_IF: | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 108 | if (HaveCond) | 
|  | 109 | return true; | 
| Dan Gohman | 1d68e80f | 2016-01-12 19:14:46 +0000 | [diff] [blame] | 110 | // If we're running after CFGStackify, we can't optimize further. | 
| Dan Gohman | 06b4958 | 2016-02-08 21:50:13 +0000 | [diff] [blame] | 111 | if (!MI.getOperand(0).isMBB()) | 
| Dan Gohman | 1d68e80f | 2016-01-12 19:14:46 +0000 | [diff] [blame] | 112 | return true; | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 113 | Cond.push_back(MachineOperand::CreateImm(true)); | 
| Dan Gohman | 06b4958 | 2016-02-08 21:50:13 +0000 | [diff] [blame] | 114 | Cond.push_back(MI.getOperand(1)); | 
|  | 115 | TBB = MI.getOperand(0).getMBB(); | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 116 | HaveCond = true; | 
|  | 117 | break; | 
|  | 118 | case WebAssembly::BR_UNLESS: | 
|  | 119 | if (HaveCond) | 
|  | 120 | return true; | 
| Dan Gohman | 1d68e80f | 2016-01-12 19:14:46 +0000 | [diff] [blame] | 121 | // If we're running after CFGStackify, we can't optimize further. | 
| Dan Gohman | 06b4958 | 2016-02-08 21:50:13 +0000 | [diff] [blame] | 122 | if (!MI.getOperand(0).isMBB()) | 
| Dan Gohman | 1d68e80f | 2016-01-12 19:14:46 +0000 | [diff] [blame] | 123 | return true; | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 124 | Cond.push_back(MachineOperand::CreateImm(false)); | 
| Dan Gohman | 06b4958 | 2016-02-08 21:50:13 +0000 | [diff] [blame] | 125 | Cond.push_back(MI.getOperand(1)); | 
|  | 126 | TBB = MI.getOperand(0).getMBB(); | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 127 | HaveCond = true; | 
|  | 128 | break; | 
|  | 129 | case WebAssembly::BR: | 
| Dan Gohman | 1d68e80f | 2016-01-12 19:14:46 +0000 | [diff] [blame] | 130 | // If we're running after CFGStackify, we can't optimize further. | 
|  | 131 | if (!MI.getOperand(0).isMBB()) | 
|  | 132 | return true; | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 133 | if (!HaveCond) | 
|  | 134 | TBB = MI.getOperand(0).getMBB(); | 
|  | 135 | else | 
|  | 136 | FBB = MI.getOperand(0).getMBB(); | 
|  | 137 | break; | 
|  | 138 | } | 
|  | 139 | if (MI.isBarrier()) | 
|  | 140 | break; | 
|  | 141 | } | 
|  | 142 |  | 
|  | 143 | return false; | 
|  | 144 | } | 
|  | 145 |  | 
| Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 146 | unsigned WebAssemblyInstrInfo::removeBranch(MachineBasicBlock &MBB, | 
| Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 147 | int *BytesRemoved) const { | 
|  | 148 | assert(!BytesRemoved && "code size not handled"); | 
|  | 149 |  | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 150 | MachineBasicBlock::instr_iterator I = MBB.instr_end(); | 
|  | 151 | unsigned Count = 0; | 
|  | 152 |  | 
|  | 153 | while (I != MBB.instr_begin()) { | 
|  | 154 | --I; | 
| Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 155 | if (I->isDebugInstr()) | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 156 | continue; | 
|  | 157 | if (!I->isTerminator()) | 
|  | 158 | break; | 
|  | 159 | // Remove the branch. | 
|  | 160 | I->eraseFromParent(); | 
|  | 161 | I = MBB.instr_end(); | 
|  | 162 | ++Count; | 
|  | 163 | } | 
|  | 164 |  | 
|  | 165 | return Count; | 
|  | 166 | } | 
|  | 167 |  | 
| Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 168 | unsigned WebAssemblyInstrInfo::insertBranch(MachineBasicBlock &MBB, | 
| Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 169 | MachineBasicBlock *TBB, | 
|  | 170 | MachineBasicBlock *FBB, | 
|  | 171 | ArrayRef<MachineOperand> Cond, | 
| Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 172 | const DebugLoc &DL, | 
|  | 173 | int *BytesAdded) const { | 
|  | 174 | assert(!BytesAdded && "code size not handled"); | 
|  | 175 |  | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 176 | if (Cond.empty()) { | 
|  | 177 | if (!TBB) | 
|  | 178 | return 0; | 
|  | 179 |  | 
|  | 180 | BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(TBB); | 
|  | 181 | return 1; | 
|  | 182 | } | 
|  | 183 |  | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 184 | assert(Cond.size() == 2 && "Expected a flag and a successor block"); | 
|  | 185 |  | 
|  | 186 | if (Cond[0].getImm()) { | 
| Diana Picus | 116bbab | 2017-01-13 09:58:52 +0000 | [diff] [blame] | 187 | BuildMI(&MBB, DL, get(WebAssembly::BR_IF)).addMBB(TBB).add(Cond[1]); | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 188 | } else { | 
| Diana Picus | 116bbab | 2017-01-13 09:58:52 +0000 | [diff] [blame] | 189 | BuildMI(&MBB, DL, get(WebAssembly::BR_UNLESS)).addMBB(TBB).add(Cond[1]); | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 190 | } | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 191 | if (!FBB) | 
|  | 192 | return 1; | 
|  | 193 |  | 
|  | 194 | BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(FBB); | 
|  | 195 | return 2; | 
|  | 196 | } | 
|  | 197 |  | 
| Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 198 | bool WebAssemblyInstrInfo::reverseBranchCondition( | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 199 | SmallVectorImpl<MachineOperand> &Cond) const { | 
| Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 200 | assert(Cond.size() == 2 && "Expected a flag and a successor block"); | 
|  | 201 | Cond.front() = MachineOperand::CreateImm(!Cond.front().getImm()); | 
|  | 202 | return false; | 
| Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 203 | } |