1 //===-- SparcInstPrinter.cpp - Convert Sparc MCInst to assembly syntax -----==// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This class prints an Sparc MCInst to a .s file. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "SparcInstPrinter.h" 14 #include "Sparc.h" 15 #include "llvm/MC/MCExpr.h" 16 #include "llvm/MC/MCInst.h" 17 #include "llvm/MC/MCRegisterInfo.h" 18 #include "llvm/MC/MCSubtargetInfo.h" 19 #include "llvm/MC/MCSymbol.h" 20 #include "llvm/Support/raw_ostream.h" 21 using namespace llvm; 22 23 #define DEBUG_TYPE "asm-printer" 24 25 // The generated AsmMatcher SparcGenAsmWriter uses "Sparc" as the target 26 // namespace. But SPARC backend uses "SP" as its namespace. 27 namespace llvm { 28 namespace Sparc { 29 using namespace SP; 30 } 31 } 32 33 #define GET_INSTRUCTION_NAME 34 #define PRINT_ALIAS_INSTR 35 #include "SparcGenAsmWriter.inc" 36 37 bool SparcInstPrinter::isV9(const MCSubtargetInfo &STI) const { 38 return (STI.getFeatureBits()[Sparc::FeatureV9]) != 0; 39 } 40 41 void SparcInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const 42 { 43 OS << '%' << StringRef(getRegisterName(RegNo)).lower(); 44 } 45 46 void SparcInstPrinter::printInst(const MCInst *MI, uint64_t Address, 47 StringRef Annot, const MCSubtargetInfo &STI, 48 raw_ostream &O) { 49 if (!printAliasInstr(MI, STI, O) && !printSparcAliasInstr(MI, STI, O)) 50 printInstruction(MI, Address, STI, O); 51 printAnnotation(O, Annot); 52 } 53 54 bool SparcInstPrinter::printSparcAliasInstr(const MCInst *MI, 55 const MCSubtargetInfo &STI, 56 raw_ostream &O) { 57 switch (MI->getOpcode()) { 58 default: return false; 59 case SP::JMPLrr: 60 case SP::JMPLri: { 61 if (MI->getNumOperands() != 3) 62 return false; 63 if (!MI->getOperand(0).isReg()) 64 return false; 65 switch (MI->getOperand(0).getReg()) { 66 default: return false; 67 case SP::G0: // jmp $addr | ret | retl 68 if (MI->getOperand(2).isImm() && 69 MI->getOperand(2).getImm() == 8) { 70 switch(MI->getOperand(1).getReg()) { 71 default: break; 72 case SP::I7: O << "\tret"; return true; 73 case SP::O7: O << "\tretl"; return true; 74 } 75 } 76 O << "\tjmp "; printMemOperand(MI, 1, STI, O); 77 return true; 78 case SP::O7: // call $addr 79 O << "\tcall "; printMemOperand(MI, 1, STI, O); 80 return true; 81 } 82 } 83 case SP::V9FCMPS: case SP::V9FCMPD: case SP::V9FCMPQ: 84 case SP::V9FCMPES: case SP::V9FCMPED: case SP::V9FCMPEQ: { 85 if (isV9(STI) 86 || (MI->getNumOperands() != 3) 87 || (!MI->getOperand(0).isReg()) 88 || (MI->getOperand(0).getReg() != SP::FCC0)) 89 return false; 90 // if V8, skip printing %fcc0. 91 switch(MI->getOpcode()) { 92 default: 93 case SP::V9FCMPS: O << "\tfcmps "; break; 94 case SP::V9FCMPD: O << "\tfcmpd "; break; 95 case SP::V9FCMPQ: O << "\tfcmpq "; break; 96 case SP::V9FCMPES: O << "\tfcmpes "; break; 97 case SP::V9FCMPED: O << "\tfcmped "; break; 98 case SP::V9FCMPEQ: O << "\tfcmpeq "; break; 99 } 100 printOperand(MI, 1, STI, O); 101 O << ", "; 102 printOperand(MI, 2, STI, O); 103 return true; 104 } 105 } 106 } 107 108 void SparcInstPrinter::printOperand(const MCInst *MI, int opNum, 109 const MCSubtargetInfo &STI, 110 raw_ostream &O) { 111 const MCOperand &MO = MI->getOperand (opNum); 112 113 if (MO.isReg()) { 114 printRegName(O, MO.getReg()); 115 return ; 116 } 117 118 if (MO.isImm()) { 119 switch (MI->getOpcode()) { 120 default: 121 O << (int)MO.getImm(); 122 return; 123 124 case SP::TICCri: // Fall through 125 case SP::TICCrr: // Fall through 126 case SP::TRAPri: // Fall through 127 case SP::TRAPrr: // Fall through 128 case SP::TXCCri: // Fall through 129 case SP::TXCCrr: // Fall through 130 // Only seven-bit values up to 127. 131 O << ((int) MO.getImm() & 0x7f); 132 return; 133 } 134 } 135 136 assert(MO.isExpr() && "Unknown operand kind in printOperand"); 137 MO.getExpr()->print(O, &MAI); 138 } 139 140 void SparcInstPrinter::printMemOperand(const MCInst *MI, int opNum, 141 const MCSubtargetInfo &STI, 142 raw_ostream &O, const char *Modifier) { 143 printOperand(MI, opNum, STI, O); 144 145 // If this is an ADD operand, emit it like normal operands. 146 if (Modifier && !strcmp(Modifier, "arith")) { 147 O << ", "; 148 printOperand(MI, opNum+1, STI, O); 149 return; 150 } 151 const MCOperand &MO = MI->getOperand(opNum+1); 152 153 if (MO.isReg() && MO.getReg() == SP::G0) 154 return; // don't print "+%g0" 155 if (MO.isImm() && MO.getImm() == 0) 156 return; // don't print "+0" 157 158 O << "+"; 159 160 printOperand(MI, opNum+1, STI, O); 161 } 162 163 void SparcInstPrinter::printCCOperand(const MCInst *MI, int opNum, 164 const MCSubtargetInfo &STI, 165 raw_ostream &O) { 166 int CC = (int)MI->getOperand(opNum).getImm(); 167 switch (MI->getOpcode()) { 168 default: break; 169 case SP::FBCOND: 170 case SP::FBCONDA: 171 case SP::BPFCC: 172 case SP::BPFCCA: 173 case SP::BPFCCNT: 174 case SP::BPFCCANT: 175 case SP::MOVFCCrr: case SP::V9MOVFCCrr: 176 case SP::MOVFCCri: case SP::V9MOVFCCri: 177 case SP::FMOVS_FCC: case SP::V9FMOVS_FCC: 178 case SP::FMOVD_FCC: case SP::V9FMOVD_FCC: 179 case SP::FMOVQ_FCC: case SP::V9FMOVQ_FCC: 180 // Make sure CC is a fp conditional flag. 181 CC = (CC < 16) ? (CC + 16) : CC; 182 break; 183 case SP::CBCOND: 184 case SP::CBCONDA: 185 // Make sure CC is a cp conditional flag. 186 CC = (CC < 32) ? (CC + 32) : CC; 187 break; 188 } 189 O << SPARCCondCodeToString((SPCC::CondCodes)CC); 190 } 191 192 bool SparcInstPrinter::printGetPCX(const MCInst *MI, unsigned opNum, 193 const MCSubtargetInfo &STI, 194 raw_ostream &O) { 195 llvm_unreachable("FIXME: Implement SparcInstPrinter::printGetPCX."); 196 return true; 197 } 198 199 void SparcInstPrinter::printMembarTag(const MCInst *MI, int opNum, 200 const MCSubtargetInfo &STI, 201 raw_ostream &O) { 202 static const char *const TagNames[] = { 203 "#LoadLoad", "#StoreLoad", "#LoadStore", "#StoreStore", 204 "#Lookaside", "#MemIssue", "#Sync"}; 205 206 unsigned Imm = MI->getOperand(opNum).getImm(); 207 208 if (Imm > 127) { 209 O << Imm; 210 return; 211 } 212 213 bool First = true; 214 for (unsigned i = 0; i < sizeof(TagNames) / sizeof(char *); i++) { 215 if (Imm & (1 << i)) { 216 O << (First ? "" : " | ") << TagNames[i]; 217 First = false; 218 } 219 } 220 } 221