blob: 5ce00db365ab2ce60c76455387ea2a3237266b28 [file] [log] [blame]
Chris Dewhurst4f7cac32016-05-23 10:56:36 +00001//===------ LeonPasses.cpp - Define passes specific to LEON ---------------===//
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//
11//===----------------------------------------------------------------------===//
12
13#include "LeonPasses.h"
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000014#include "llvm/CodeGen/ISDOpcodes.h"
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000016#include "llvm/CodeGen/MachineInstr.h"
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000017#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000018#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Dewhurst2c3cdd62016-10-19 14:01:06 +000019#include "llvm/IR/DiagnosticInfo.h"
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000020#include "llvm/IR/LLVMContext.h"
21#include "llvm/Support/raw_ostream.h"
Benjamin Kramer797fb962016-05-27 10:06:27 +000022using namespace llvm;
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000023
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000024LEONMachineFunctionPass::LEONMachineFunctionPass(char &ID)
25 : MachineFunctionPass(ID) {}
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000026
27//*****************************************************************************
28//**** InsertNOPLoad pass
29//*****************************************************************************
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000030// This pass fixes the incorrectly working Load instructions that exists for
31// some earlier versions of the LEON processor line. NOP instructions must
32// be inserted after the load instruction to ensure that the Load instruction
33// behaves as expected for these processors.
34//
35// This pass inserts a NOP after any LD or LDF instruction.
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000036//
37char InsertNOPLoad::ID = 0;
38
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +000039InsertNOPLoad::InsertNOPLoad() : LEONMachineFunctionPass(ID) {}
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000040
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000041bool InsertNOPLoad::runOnMachineFunction(MachineFunction &MF) {
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000042 Subtarget = &MF.getSubtarget<SparcSubtarget>();
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000043 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000044 DebugLoc DL = DebugLoc();
45
46 bool Modified = false;
47 for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) {
48 MachineBasicBlock &MBB = *MFI;
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000049 for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) {
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000050 MachineInstr &MI = *MBBI;
51 unsigned Opcode = MI.getOpcode();
Chris Dewhurst2bad85c2016-06-27 14:19:19 +000052 if (Opcode >= SP::LDDArr && Opcode <= SP::LDrr) {
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000053 MachineBasicBlock::iterator NMBBI = std::next(MBBI);
54 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
55 Modified = true;
Chris Dewhurst4f7cac32016-05-23 10:56:36 +000056 }
57 }
58 }
59
60 return Modified;
61}
Chris Dewhurst0c1e0022016-06-19 11:03:28 +000062
Chris Dewhurst0c1e0022016-06-19 11:03:28 +000063
Chris Dewhurst2c3cdd62016-10-19 14:01:06 +000064
65//*****************************************************************************
66//**** DetectRoundChange pass
67//*****************************************************************************
68// To prevent any explicit change of the default rounding mode, this pass
69// detects any call of the fesetround function.
70// A warning is generated to ensure the user knows this has happened.
71//
72// Detects an erratum in UT699 LEON 3 processor
73
74char DetectRoundChange::ID = 0;
75
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +000076DetectRoundChange::DetectRoundChange() : LEONMachineFunctionPass(ID) {}
Chris Dewhurst2c3cdd62016-10-19 14:01:06 +000077
78bool DetectRoundChange::runOnMachineFunction(MachineFunction &MF) {
79 Subtarget = &MF.getSubtarget<SparcSubtarget>();
80
81 bool Modified = false;
82 for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) {
83 MachineBasicBlock &MBB = *MFI;
84 for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) {
85 MachineInstr &MI = *MBBI;
86 unsigned Opcode = MI.getOpcode();
87 if (Opcode == SP::CALL && MI.getNumOperands() > 0) {
88 MachineOperand &MO = MI.getOperand(0);
89
90 if (MO.isGlobal()) {
91 StringRef FuncName = MO.getGlobal()->getName();
92 if (FuncName.compare_lower("fesetround") == 0) {
93 errs() << "Error: You are using the detectroundchange "
94 "option to detect rounding changes that will "
95 "cause LEON errata. The only way to fix this "
96 "is to remove the call to fesetround from "
97 "the source code.\n";
98 }
99 }
100 }
101 }
102 }
103
104 return Modified;
105}
106
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000107//*****************************************************************************
108//**** FixAllFDIVSQRT pass
109//*****************************************************************************
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000110// This pass fixes the incorrectly working FDIVx and FSQRTx instructions that
111// exist for some earlier versions of the LEON processor line. Five NOP
112// instructions need to be inserted after these instructions to ensure the
113// correct result is placed in the destination registers before they are used.
114//
115// This pass implements two fixes:
116// 1) fixing the FSQRTS and FSQRTD instructions.
117// 2) fixing the FDIVS and FDIVD instructions.
118//
119// FSQRTS and FDIVS are converted to FDIVD and FSQRTD respectively earlier in
120// the pipeline when this option is enabled, so this pass needs only to deal
121// with the changes that still need implementing for the "double" versions
122// of these instructions.
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000123//
124char FixAllFDIVSQRT::ID = 0;
125
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000126FixAllFDIVSQRT::FixAllFDIVSQRT() : LEONMachineFunctionPass(ID) {}
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000127
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000128bool FixAllFDIVSQRT::runOnMachineFunction(MachineFunction &MF) {
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000129 Subtarget = &MF.getSubtarget<SparcSubtarget>();
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000130 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000131 DebugLoc DL = DebugLoc();
132
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000133 bool Modified = false;
134 for (auto MFI = MF.begin(), E = MF.end(); MFI != E; ++MFI) {
135 MachineBasicBlock &MBB = *MFI;
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000136 for (auto MBBI = MBB.begin(), E = MBB.end(); MBBI != E; ++MBBI) {
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000137 MachineInstr &MI = *MBBI;
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000138 unsigned Opcode = MI.getOpcode();
139
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000140 // Note: FDIVS and FSQRTS cannot be generated when this erratum fix is
141 // switched on so we don't need to check for them here. They will
142 // already have been converted to FSQRTD or FDIVD earlier in the
143 // pipeline.
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000144 if (Opcode == SP::FSQRTD || Opcode == SP::FDIVD) {
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000145 for (int InsertedCount = 0; InsertedCount < 5; InsertedCount++)
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000146 BuildMI(MBB, MBBI, DL, TII.get(SP::NOP));
147
148 MachineBasicBlock::iterator NMBBI = std::next(MBBI);
Chris Dewhurst2bad85c2016-06-27 14:19:19 +0000149 for (int InsertedCount = 0; InsertedCount < 28; InsertedCount++)
Chris Dewhurst0c1e0022016-06-19 11:03:28 +0000150 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
151
152 Modified = true;
153 }
154 }
155 }
156
157 return Modified;
158}