Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 1 | //=- WebAssemblySetP2AlignOperands.cpp - Set alignments on loads and stores -=// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// This file sets the p2align operands on load and store instructions. |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 14 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "WebAssembly.h" |
Thomas Lively | 972d7d5 | 2019-03-09 04:31:37 +0000 | [diff] [blame] | 16 | #include "WebAssemblyInstrInfo.h" |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 17 | #include "WebAssemblyMachineFunctionInfo.h" |
| 18 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
| 19 | #include "llvm/CodeGen/MachineMemOperand.h" |
| 20 | #include "llvm/CodeGen/Passes.h" |
| 21 | #include "llvm/Support/Debug.h" |
| 22 | #include "llvm/Support/raw_ostream.h" |
| 23 | using namespace llvm; |
| 24 | |
| 25 | #define DEBUG_TYPE "wasm-set-p2align-operands" |
| 26 | |
| 27 | namespace { |
| 28 | class WebAssemblySetP2AlignOperands final : public MachineFunctionPass { |
| 29 | public: |
| 30 | static char ID; // Pass identification, replacement for typeid |
| 31 | WebAssemblySetP2AlignOperands() : MachineFunctionPass(ID) {} |
| 32 | |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 33 | StringRef getPassName() const override { |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 34 | return "WebAssembly Set p2align Operands"; |
| 35 | } |
| 36 | |
| 37 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 38 | AU.setPreservesCFG(); |
| 39 | AU.addPreserved<MachineBlockFrequencyInfo>(); |
| 40 | AU.addPreservedID(MachineDominatorsID); |
| 41 | MachineFunctionPass::getAnalysisUsage(AU); |
| 42 | } |
| 43 | |
| 44 | bool runOnMachineFunction(MachineFunction &MF) override; |
| 45 | }; |
| 46 | } // end anonymous namespace |
| 47 | |
| 48 | char WebAssemblySetP2AlignOperands::ID = 0; |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 49 | INITIALIZE_PASS(WebAssemblySetP2AlignOperands, DEBUG_TYPE, |
| 50 | "Set the p2align operands for WebAssembly loads and stores", |
| 51 | false, false) |
| 52 | |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 53 | FunctionPass *llvm::createWebAssemblySetP2AlignOperands() { |
| 54 | return new WebAssemblySetP2AlignOperands(); |
| 55 | } |
| 56 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 57 | static void rewriteP2Align(MachineInstr &MI, unsigned OperandNo) { |
Dan Gohman | 7f1bdb2 | 2016-10-06 22:08:28 +0000 | [diff] [blame] | 58 | assert(MI.getOperand(OperandNo).getImm() == 0 && |
| 59 | "ISel should set p2align operands to 0"); |
| 60 | assert(MI.hasOneMemOperand() && |
| 61 | "Load and store instructions have exactly one mem operand"); |
| 62 | assert((*MI.memoperands_begin())->getSize() == |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 63 | (UINT64_C(1) << WebAssembly::GetDefaultP2Align(MI.getOpcode())) && |
Dan Gohman | 7f1bdb2 | 2016-10-06 22:08:28 +0000 | [diff] [blame] | 64 | "Default p2align value should be natural"); |
| 65 | assert(MI.getDesc().OpInfo[OperandNo].OperandType == |
| 66 | WebAssembly::OPERAND_P2ALIGN && |
| 67 | "Load and store instructions should have a p2align operand"); |
| 68 | uint64_t P2Align = Log2_64((*MI.memoperands_begin())->getAlignment()); |
| 69 | |
| 70 | // WebAssembly does not currently support supernatural alignment. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 71 | P2Align = std::min(P2Align, |
| 72 | uint64_t(WebAssembly::GetDefaultP2Align(MI.getOpcode()))); |
Dan Gohman | 7f1bdb2 | 2016-10-06 22:08:28 +0000 | [diff] [blame] | 73 | |
| 74 | MI.getOperand(OperandNo).setImm(P2Align); |
| 75 | } |
| 76 | |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 77 | bool WebAssemblySetP2AlignOperands::runOnMachineFunction(MachineFunction &MF) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 78 | LLVM_DEBUG({ |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 79 | dbgs() << "********** Set p2align Operands **********\n" |
| 80 | << "********** Function: " << MF.getName() << '\n'; |
| 81 | }); |
| 82 | |
| 83 | bool Changed = false; |
| 84 | |
| 85 | for (auto &MBB : MF) { |
| 86 | for (auto &MI : MBB) { |
Thomas Lively | 972d7d5 | 2019-03-09 04:31:37 +0000 | [diff] [blame] | 87 | int16_t P2AlignOpNum = WebAssembly::getNamedOperandIdx( |
| 88 | MI.getOpcode(), WebAssembly::OpName::p2align); |
| 89 | if (P2AlignOpNum != -1) { |
| 90 | rewriteP2Align(MI, P2AlignOpNum); |
| 91 | Changed = true; |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | return Changed; |
| 97 | } |