Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 1 | //===------ LeonPasses.cpp - Define passes specific to LEON ---------------===// |
| 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 |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // |
| 10 | //===----------------------------------------------------------------------===// |
| 11 | |
| 12 | #include "LeonPasses.h" |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 13 | #include "llvm/CodeGen/ISDOpcodes.h" |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chris Dewhurst | 2c3cdd6 | 2016-10-19 14:01:06 +0000 | [diff] [blame] | 18 | #include "llvm/IR/DiagnosticInfo.h" |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 19 | #include "llvm/IR/LLVMContext.h" |
| 20 | #include "llvm/Support/raw_ostream.h" |
Benjamin Kramer | 797fb96 | 2016-05-27 10:06:27 +0000 | [diff] [blame] | 21 | using namespace llvm; |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 22 | |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 23 | LEONMachineFunctionPass::LEONMachineFunctionPass(char &ID) |
| 24 | : MachineFunctionPass(ID) {} |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 25 | |
| 26 | //***************************************************************************** |
| 27 | //**** InsertNOPLoad pass |
| 28 | //***************************************************************************** |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 29 | // This pass fixes the incorrectly working Load instructions that exists for |
| 30 | // some earlier versions of the LEON processor line. NOP instructions must |
| 31 | // be inserted after the load instruction to ensure that the Load instruction |
| 32 | // behaves as expected for these processors. |
| 33 | // |
| 34 | // This pass inserts a NOP after any LD or LDF instruction. |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 35 | // |
| 36 | char InsertNOPLoad::ID = 0; |
| 37 | |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 38 | InsertNOPLoad::InsertNOPLoad() : LEONMachineFunctionPass(ID) {} |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 39 | |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 40 | bool InsertNOPLoad::runOnMachineFunction(MachineFunction &MF) { |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 41 | Subtarget = &MF.getSubtarget<SparcSubtarget>(); |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 42 | const TargetInstrInfo &TII = *Subtarget->getInstrInfo(); |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 43 | DebugLoc DL = DebugLoc(); |
| 44 | |
| 45 | bool Modified = false; |
| 46 | for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) { |
| 47 | MachineBasicBlock &MBB = *MFI; |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 48 | for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) { |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 49 | MachineInstr &MI = *MBBI; |
| 50 | unsigned Opcode = MI.getOpcode(); |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 51 | if (Opcode >= SP::LDDArr && Opcode <= SP::LDrr) { |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 52 | MachineBasicBlock::iterator NMBBI = std::next(MBBI); |
| 53 | BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP)); |
| 54 | Modified = true; |
Chris Dewhurst | 4f7cac3 | 2016-05-23 10:56:36 +0000 | [diff] [blame] | 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | return Modified; |
| 60 | } |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 61 | |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 62 | |
Chris Dewhurst | 2c3cdd6 | 2016-10-19 14:01:06 +0000 | [diff] [blame] | 63 | |
| 64 | //***************************************************************************** |
| 65 | //**** DetectRoundChange pass |
| 66 | //***************************************************************************** |
| 67 | // To prevent any explicit change of the default rounding mode, this pass |
| 68 | // detects any call of the fesetround function. |
| 69 | // A warning is generated to ensure the user knows this has happened. |
| 70 | // |
| 71 | // Detects an erratum in UT699 LEON 3 processor |
| 72 | |
| 73 | char DetectRoundChange::ID = 0; |
| 74 | |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 75 | DetectRoundChange::DetectRoundChange() : LEONMachineFunctionPass(ID) {} |
Chris Dewhurst | 2c3cdd6 | 2016-10-19 14:01:06 +0000 | [diff] [blame] | 76 | |
| 77 | bool DetectRoundChange::runOnMachineFunction(MachineFunction &MF) { |
| 78 | Subtarget = &MF.getSubtarget<SparcSubtarget>(); |
| 79 | |
| 80 | bool Modified = false; |
| 81 | for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) { |
| 82 | MachineBasicBlock &MBB = *MFI; |
| 83 | for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) { |
| 84 | MachineInstr &MI = *MBBI; |
| 85 | unsigned Opcode = MI.getOpcode(); |
| 86 | if (Opcode == SP::CALL && MI.getNumOperands() > 0) { |
| 87 | MachineOperand &MO = MI.getOperand(0); |
| 88 | |
| 89 | if (MO.isGlobal()) { |
| 90 | StringRef FuncName = MO.getGlobal()->getName(); |
| 91 | if (FuncName.compare_lower("fesetround") == 0) { |
| 92 | errs() << "Error: You are using the detectroundchange " |
| 93 | "option to detect rounding changes that will " |
| 94 | "cause LEON errata. The only way to fix this " |
| 95 | "is to remove the call to fesetround from " |
| 96 | "the source code.\n"; |
| 97 | } |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | return Modified; |
| 104 | } |
| 105 | |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 106 | //***************************************************************************** |
| 107 | //**** FixAllFDIVSQRT pass |
| 108 | //***************************************************************************** |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 109 | // This pass fixes the incorrectly working FDIVx and FSQRTx instructions that |
| 110 | // exist for some earlier versions of the LEON processor line. Five NOP |
| 111 | // instructions need to be inserted after these instructions to ensure the |
| 112 | // correct result is placed in the destination registers before they are used. |
| 113 | // |
| 114 | // This pass implements two fixes: |
| 115 | // 1) fixing the FSQRTS and FSQRTD instructions. |
| 116 | // 2) fixing the FDIVS and FDIVD instructions. |
| 117 | // |
| 118 | // FSQRTS and FDIVS are converted to FDIVD and FSQRTD respectively earlier in |
| 119 | // the pipeline when this option is enabled, so this pass needs only to deal |
| 120 | // with the changes that still need implementing for the "double" versions |
| 121 | // of these instructions. |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 122 | // |
| 123 | char FixAllFDIVSQRT::ID = 0; |
| 124 | |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 125 | FixAllFDIVSQRT::FixAllFDIVSQRT() : LEONMachineFunctionPass(ID) {} |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 126 | |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 127 | bool FixAllFDIVSQRT::runOnMachineFunction(MachineFunction &MF) { |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 128 | Subtarget = &MF.getSubtarget<SparcSubtarget>(); |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 129 | const TargetInstrInfo &TII = *Subtarget->getInstrInfo(); |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 130 | DebugLoc DL = DebugLoc(); |
| 131 | |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 132 | bool Modified = false; |
| 133 | for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) { |
| 134 | MachineBasicBlock &MBB = *MFI; |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 135 | for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) { |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 136 | MachineInstr &MI = *MBBI; |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 137 | unsigned Opcode = MI.getOpcode(); |
| 138 | |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 139 | // Note: FDIVS and FSQRTS cannot be generated when this erratum fix is |
| 140 | // switched on so we don't need to check for them here. They will |
| 141 | // already have been converted to FSQRTD or FDIVD earlier in the |
| 142 | // pipeline. |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 143 | if (Opcode == SP::FSQRTD || Opcode == SP::FDIVD) { |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 144 | for (int InsertedCount = 0; InsertedCount < 5; InsertedCount++) |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 145 | BuildMI(MBB, MBBI, DL, TII.get(SP::NOP)); |
| 146 | |
| 147 | MachineBasicBlock::iterator NMBBI = std::next(MBBI); |
Chris Dewhurst | 2bad85c | 2016-06-27 14:19:19 +0000 | [diff] [blame] | 148 | for (int InsertedCount = 0; InsertedCount < 28; InsertedCount++) |
Chris Dewhurst | 0c1e002 | 2016-06-19 11:03:28 +0000 | [diff] [blame] | 149 | BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP)); |
| 150 | |
| 151 | Modified = true; |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | return Modified; |
| 157 | } |