/src/capstonev5/arch/RISCV/RISCVInstPrinter.c
| Line | Count | Source (jump to first uncovered line) | 
| 1 |  | //===-- RISCVInstPrinter.cpp - Convert RISCV MCInst to asm syntax ---------===// | 
| 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 |  | // This class prints an RISCV MCInst to a .s file. | 
| 11 |  | // | 
| 12 |  | //===----------------------------------------------------------------------===// | 
| 13 |  |  | 
| 14 |  | #ifdef CAPSTONE_HAS_RISCV | 
| 15 |  |  | 
| 16 |  | #include <stdio.h>    // DEBUG | 
| 17 |  | #include <stdlib.h> | 
| 18 |  | #include <string.h> | 
| 19 |  | #include <capstone/platform.h> | 
| 20 |  |  | 
| 21 |  | #include "RISCVInstPrinter.h" | 
| 22 |  | #include "RISCVBaseInfo.h" | 
| 23 |  | #include "../../MCInst.h" | 
| 24 |  | #include "../../SStream.h" | 
| 25 |  | #include "../../MCRegisterInfo.h" | 
| 26 |  | #include "../../utils.h" | 
| 27 |  | #include "RISCVMapping.h" | 
| 28 |  |  | 
| 29 |  | //#include "RISCVDisassembler.h" | 
| 30 |  |  | 
| 31 |  | #define GET_REGINFO_ENUM | 
| 32 |  | #define GET_REGINFO_MC_DESC | 
| 33 |  | #include "RISCVGenRegisterInfo.inc" | 
| 34 |  | #define GET_INSTRINFO_ENUM | 
| 35 |  | #include "RISCVGenInstrInfo.inc" | 
| 36 |  |  | 
| 37 |  | // Autogenerated by tblgen. | 
| 38 |  | static void printInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI); | 
| 39 |  | static bool printAliasInstr(MCInst *MI, SStream *OS, void *info); | 
| 40 |  | static void printOperand(MCInst *MI, unsigned OpNo, SStream *O); | 
| 41 |  | static void printFenceArg(MCInst *MI, unsigned OpNo, SStream *O); | 
| 42 |  | static void printCSRSystemRegister(MCInst*, unsigned, SStream *); | 
| 43 |  | static void printFRMArg(MCInst *MI, unsigned OpNo, SStream *O); | 
| 44 |  | static void printCustomAliasOperand( MCInst *, unsigned, unsigned, SStream *); | 
| 45 |  | /// getRegisterName - This method is automatically generated by tblgen | 
| 46 |  | /// from the register set description.  This returns the assembler name | 
| 47 |  | /// for the specified register. | 
| 48 |  | static const char *getRegisterName(unsigned RegNo, unsigned AltIdx); | 
| 49 |  |  | 
| 50 |  | // Include the auto-generated portion of the assembly writer. | 
| 51 |  | #define PRINT_ALIAS_INSTR | 
| 52 |  | #include "RISCVGenAsmWriter.inc" | 
| 53 |  |  | 
| 54 |  |  | 
| 55 |  | static void fixDetailOfEffectiveAddr(MCInst *MI) | 
| 56 | 445 | { | 
| 57 | 445 |   unsigned reg = 0; | 
| 58 | 445 |   int64_t imm = 0; | 
| 59 |  |  | 
| 60 | 445 |   CS_ASSERT(3 == MI->flat_insn->detail->riscv.op_count); | 
| 61 | 445 |   CS_ASSERT(RISCV_OP_REG == MI->flat_insn->detail->riscv.operands[0].type); | 
| 62 |  |  | 
| 63 | 445 |   if (RISCV_OP_IMM == MI->flat_insn->detail->riscv.operands[1].type) { | 
| 64 | 445 |     CS_ASSERT(RISCV_OP_REG == MI->flat_insn->detail->riscv.operands[2].type); | 
| 65 | 445 |     imm = MI->flat_insn->detail->riscv.operands[1].imm; | 
| 66 | 445 |     reg = MI->flat_insn->detail->riscv.operands[2].reg; | 
| 67 | 445 |   } else if (RISCV_OP_REG == MI->flat_insn->detail->riscv.operands[1].type) { | 
| 68 | 0 |     CS_ASSERT(RISCV_OP_IMM == MI->flat_insn->detail->riscv.operands[2].type); | 
| 69 | 0 |     reg = MI->flat_insn->detail->riscv.operands[1].reg; | 
| 70 | 0 |     imm = MI->flat_insn->detail->riscv.operands[2].imm; | 
| 71 | 0 |   } | 
| 72 |  |  | 
| 73 |  |   // set up effective address. | 
| 74 | 445 |   MI->flat_insn->detail->riscv.operands[1].type = RISCV_OP_MEM; | 
| 75 | 445 |   MI->flat_insn->detail->riscv.op_count--; | 
| 76 | 445 |       MI->flat_insn->detail->riscv.operands[1].mem.base = reg; | 
| 77 | 445 |       MI->flat_insn->detail->riscv.operands[1].mem.disp = imm; | 
| 78 |  |  | 
| 79 | 445 |   return; | 
| 80 | 445 | } | 
| 81 |  |  | 
| 82 |  |  | 
| 83 |  | //void RISCVInstPrinter::printInst(const MCInst *MI, raw_ostream &O, | 
| 84 |  | //                                 StringRef Annot, const MCSubtargetInfo &STI)  | 
| 85 |  | void RISCV_printInst(MCInst *MI, SStream *O, void *info)  | 
| 86 | 22.6k | { | 
| 87 | 22.6k |     MCRegisterInfo *MRI = (MCRegisterInfo *) info; | 
| 88 |  |     //bool Res = false; | 
| 89 |  |     //MCInst *NewMI = MI; | 
| 90 |  |     // TODO: RISCV compressd instructions. | 
| 91 |  |     //MCInst UncompressedMI; | 
| 92 |  |     //if (!NoAliases) | 
| 93 |  |       //Res = uncompressInst(UncompressedMI, *MI, MRI, STI); | 
| 94 |  |     //if (Res) | 
| 95 |  |       //NewMI = const_cast<MCInst *>(&UncompressedMI); | 
| 96 | 22.6k |     if (/*NoAliases ||*/ !printAliasInstr(MI, O, info)) | 
| 97 | 15.6k |         printInstruction(MI, O, MRI); | 
| 98 |  |       //printAnnotation(O, Annot); | 
| 99 |  |   // fix load/store type insttuction | 
| 100 | 22.6k |       if (MI->csh->detail &&  | 
| 101 | 22.6k |       MI->flat_insn->detail->riscv.need_effective_addr) | 
| 102 | 445 |     fixDetailOfEffectiveAddr(MI); | 
| 103 |  |    | 
| 104 | 22.6k |   return; | 
| 105 | 22.6k | } | 
| 106 |  |  | 
| 107 |  | static void printRegName(SStream *OS, unsigned RegNo)  | 
| 108 | 39.6k | { | 
| 109 | 39.6k |     SStream_concat0(OS, getRegisterName(RegNo, RISCV_ABIRegAltName)); | 
| 110 | 39.6k | } | 
| 111 |  |  | 
| 112 |  | /** | 
| 113 |  | void RISCVInstPrinter::printOperand(const MCInst *MI, unsigned OpNo, | 
| 114 |  |                                     raw_ostream &O, const char *Modifier)  | 
| 115 |  | */ | 
| 116 |  | static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)  | 
| 117 | 47.0k | { | 
| 118 | 47.0k |     unsigned reg; | 
| 119 | 47.0k |     int64_t Imm = 0; | 
| 120 |  |  | 
| 121 | 47.0k |     MCOperand *MO = MCInst_getOperand(MI, OpNo); | 
| 122 |  |    | 
| 123 | 47.0k |     if (MCOperand_isReg(MO)) { | 
| 124 | 39.6k |         reg = MCOperand_getReg(MO); | 
| 125 | 39.6k |         printRegName(O, reg); | 
| 126 | 39.6k |         if (MI->csh->detail) { | 
| 127 | 39.6k |             MI->flat_insn->detail->riscv.operands[MI->flat_insn->detail->riscv.op_count].type = RISCV_OP_REG; | 
| 128 | 39.6k |             MI->flat_insn->detail->riscv.operands[MI->flat_insn->detail->riscv.op_count].reg = reg; | 
| 129 | 39.6k |             MI->flat_insn->detail->riscv.op_count++; | 
| 130 | 39.6k |         } | 
| 131 | 39.6k |     } else { | 
| 132 | 7.35k |     CS_ASSERT(MCOperand_isImm(MO) && "Unknown operand kind in printOperand"); | 
| 133 | 7.35k |         Imm = MCOperand_getImm(MO); | 
| 134 | 7.35k |         if (Imm >= 0) { | 
| 135 | 6.43k |             if (Imm > HEX_THRESHOLD) | 
| 136 | 4.35k |               SStream_concat(O, "0x%" PRIx64, Imm); | 
| 137 | 2.07k |             else | 
| 138 | 2.07k |         SStream_concat(O, "%" PRIu64, Imm); | 
| 139 | 6.43k |         } else { | 
| 140 | 917 |             if (Imm < -HEX_THRESHOLD) | 
| 141 | 854 |         SStream_concat(O, "-0x%" PRIx64, -Imm); | 
| 142 | 63 |             else | 
| 143 | 63 |         SStream_concat(O, "-%" PRIu64, -Imm); | 
| 144 | 917 |         } | 
| 145 |  |  | 
| 146 | 7.35k |         if (MI->csh->detail) { | 
| 147 | 7.35k |             MI->flat_insn->detail->riscv.operands[MI->flat_insn->detail->riscv.op_count].type = RISCV_OP_IMM; | 
| 148 | 7.35k |             MI->flat_insn->detail->riscv.operands[MI->flat_insn->detail->riscv.op_count].imm = Imm; | 
| 149 | 7.35k |             MI->flat_insn->detail->riscv.op_count++; | 
| 150 | 7.35k |     } | 
| 151 | 7.35k |       } | 
| 152 |  |  | 
| 153 |  |     //CS_ASSERT(MO.isExpr() && "Unknown operand kind in printOperand"); | 
| 154 |  |    | 
| 155 | 47.0k |   return; | 
| 156 | 47.0k | } | 
| 157 |  |  | 
| 158 |  | static const char *getCSRSystemRegisterName(unsigned CsrNo) | 
| 159 | 12.6k | { | 
| 160 | 12.6k |   switch (CsrNo) { | 
| 161 |  |   /* | 
| 162 |  |    * From RISC-V Privileged Architecture Version 1.10. | 
| 163 |  |    * In the same order as Table 2.5. | 
| 164 |  |    */ | 
| 165 | 15 |   case 0x0000: return "ustatus"; | 
| 166 | 12 |   case 0x0004: return "uie"; | 
| 167 | 9 |   case 0x0005: return "utvec"; | 
| 168 |  |  | 
| 169 | 11 |   case 0x0040: return "uscratch"; | 
| 170 | 662 |   case 0x0041: return "uepc"; | 
| 171 | 8 |   case 0x0042: return "ucause"; | 
| 172 | 21 |   case 0x0043: return "utval"; | 
| 173 | 5 |   case 0x0044: return "uip"; | 
| 174 |  |  | 
| 175 | 69 |   case 0x0001: return "fflags"; | 
| 176 | 118 |   case 0x0002: return "frm"; | 
| 177 | 21 |   case 0x0003: return "fcsr"; | 
| 178 |  |  | 
| 179 | 52 |   case 0x0c00: return "cycle"; | 
| 180 | 19 |   case 0x0c01: return "time"; | 
| 181 | 158 |   case 0x0c02: return "instret"; | 
| 182 | 118 |   case 0x0c03: return "hpmcounter3"; | 
| 183 | 5 |   case 0x0c04: return "hpmcounter4"; | 
| 184 | 3 |   case 0x0c05: return "hpmcounter5"; | 
| 185 | 3 |   case 0x0c06: return "hpmcounter6"; | 
| 186 | 40 |   case 0x0c07: return "hpmcounter7"; | 
| 187 | 15 |   case 0x0c08: return "hpmcounter8"; | 
| 188 | 5 |   case 0x0c09: return "hpmcounter9"; | 
| 189 | 66 |   case 0x0c0a: return "hpmcounter10"; | 
| 190 | 99 |   case 0x0c0b: return "hpmcounter11"; | 
| 191 | 56 |   case 0x0c0c: return "hpmcounter12"; | 
| 192 | 6 |   case 0x0c0d: return "hpmcounter13"; | 
| 193 | 45 |   case 0x0c0e: return "hpmcounter14"; | 
| 194 | 144 |   case 0x0c0f: return "hpmcounter15"; | 
| 195 | 4 |   case 0x0c10: return "hpmcounter16"; | 
| 196 | 37 |   case 0x0c11: return "hpmcounter17"; | 
| 197 | 31 |   case 0x0c12: return "hpmcounter18"; | 
| 198 | 164 |   case 0x0c13: return "hpmcounter19"; | 
| 199 | 9 |   case 0x0c14: return "hpmcounter20"; | 
| 200 | 18 |   case 0x0c15: return "hpmcounter21"; | 
| 201 | 9 |   case 0x0c16: return "hpmcounter22"; | 
| 202 | 24 |   case 0x0c17: return "hpmcounter23"; | 
| 203 | 13 |   case 0x0c18: return "hpmcounter24"; | 
| 204 | 82 |   case 0x0c19: return "hpmcounter25"; | 
| 205 | 24 |   case 0x0c1a: return "hpmcounter26"; | 
| 206 | 64 |   case 0x0c1b: return "hpmcounter27"; | 
| 207 | 26 |   case 0x0c1c: return "hpmcounter28"; | 
| 208 | 7 |   case 0x0c1d: return "hpmcounter29"; | 
| 209 | 1 |   case 0x0c1e: return "hpmcounter30"; | 
| 210 | 8 |   case 0x0c1f: return "hpmcounter31"; | 
| 211 | 93 |   case 0x0c80: return "cycleh"; | 
| 212 | 34 |   case 0x0c81: return "timeh"; | 
| 213 | 33 |   case 0x0c82: return "instreth"; | 
| 214 | 13 |   case 0x0c83: return "hpmcounter3h"; | 
| 215 | 34 |   case 0x0c84: return "hpmcounter4h"; | 
| 216 | 47 |   case 0x0c85: return "hpmcounter5h"; | 
| 217 | 66 |   case 0x0c86: return "hpmcounter6h"; | 
| 218 | 25 |   case 0x0c87: return "hpmcounter7h"; | 
| 219 | 124 |   case 0x0c88: return "hpmcounter8h"; | 
| 220 | 34 |   case 0x0c89: return "hpmcounter9h"; | 
| 221 | 31 |   case 0x0c8a: return "hpmcounter10h"; | 
| 222 | 16 |   case 0x0c8b: return "hpmcounter11h"; | 
| 223 | 2 |   case 0x0c8c: return "hpmcounter12h"; | 
| 224 | 23 |   case 0x0c8d: return "hpmcounter13h"; | 
| 225 | 703 |   case 0x0c8e: return "hpmcounter14h"; | 
| 226 | 70 |   case 0x0c8f: return "hpmcounter15h"; | 
| 227 | 3 |   case 0x0c90: return "hpmcounter16h"; | 
| 228 | 130 |   case 0x0c91: return "hpmcounter17h"; | 
| 229 | 17 |   case 0x0c92: return "hpmcounter18h"; | 
| 230 | 37 |   case 0x0c93: return "hpmcounter19h"; | 
| 231 | 18 |   case 0x0c94: return "hpmcounter20h"; | 
| 232 | 3 |   case 0x0c95: return "hpmcounter21h"; | 
| 233 | 5 |   case 0x0c96: return "hpmcounter22h"; | 
| 234 | 8 |   case 0x0c97: return "hpmcounter23h"; | 
| 235 | 90 |   case 0x0c98: return "hpmcounter24h"; | 
| 236 | 6 |   case 0x0c99: return "hpmcounter25h"; | 
| 237 | 28 |   case 0x0c9a: return "hpmcounter26h"; | 
| 238 | 4 |   case 0x0c9b: return "hpmcounter27h"; | 
| 239 | 4 |   case 0x0c9c: return "hpmcounter28h"; | 
| 240 | 3 |   case 0x0c9d: return "hpmcounter29h"; | 
| 241 | 353 |   case 0x0c9e: return "hpmcounter30h"; | 
| 242 | 31 |   case 0x0c9f: return "hpmcounter31h"; | 
| 243 |  |  | 
| 244 | 25 |   case 0x0100: return "sstatus"; | 
| 245 | 9 |   case 0x0102: return "sedeleg"; | 
| 246 | 76 |   case 0x0103: return "sideleg"; | 
| 247 | 55 |   case 0x0104: return "sie"; | 
| 248 | 12 |   case 0x0105: return "stvec"; | 
| 249 | 0 |   case 0x0106: return "scounteren"; | 
| 250 |  |  | 
| 251 | 0 |   case 0x0140: return "sscratch"; | 
| 252 | 52 |   case 0x0141: return "sepc"; | 
| 253 | 1 |   case 0x0142: return "scause"; | 
| 254 | 15 |   case 0x0143: return "stval"; | 
| 255 | 33 |   case 0x0144: return "sip"; | 
| 256 |  |  | 
| 257 | 8 |   case 0x0180: return "satp"; | 
| 258 |  |  | 
| 259 | 3 |   case 0x0f11: return "mvendorid"; | 
| 260 | 33 |   case 0x0f12: return "marchid"; | 
| 261 | 3 |   case 0x0f13: return "mimpid"; | 
| 262 | 7 |   case 0x0f14: return "mhartid"; | 
| 263 |  |  | 
| 264 | 20 |   case 0x0300: return "mstatus"; | 
| 265 | 18 |   case 0x0301: return "misa"; | 
| 266 | 11 |   case 0x0302: return "medeleg"; | 
| 267 | 4 |   case 0x0303: return "mideleg"; | 
| 268 | 18 |   case 0x0304: return "mie"; | 
| 269 | 20 |   case 0x0305: return "mtvec"; | 
| 270 | 2 |   case 0x0306: return "mcounteren"; | 
| 271 |  |  | 
| 272 | 153 |   case 0x0340: return "mscratch"; | 
| 273 | 252 |   case 0x0341: return "mepc"; | 
| 274 | 48 |   case 0x0342: return "mcause"; | 
| 275 | 4 |   case 0x0343: return "mtval"; | 
| 276 | 35 |   case 0x0344: return "mip"; | 
| 277 |  |  | 
| 278 | 342 |   case 0x03a0: return "pmpcfg0"; | 
| 279 | 45 |   case 0x03a1: return "pmpcfg1"; | 
| 280 | 5 |   case 0x03a2: return "pmpcfg2"; | 
| 281 | 3 |   case 0x03a3: return "pmpcfg3"; | 
| 282 | 19 |   case 0x03b0: return "pmpaddr0"; | 
| 283 | 232 |   case 0x03b1: return "pmpaddr1"; | 
| 284 | 10 |   case 0x03b2: return "pmpaddr2"; | 
| 285 | 36 |   case 0x03b3: return "pmpaddr3"; | 
| 286 | 2 |   case 0x03b4: return "pmpaddr4"; | 
| 287 | 19 |   case 0x03b5: return "pmpaddr5"; | 
| 288 | 216 |   case 0x03b6: return "pmpaddr6"; | 
| 289 | 39 |   case 0x03b7: return "pmpaddr7"; | 
| 290 | 569 |   case 0x03b8: return "pmpaddr8"; | 
| 291 | 1 |   case 0x03b9: return "pmpaddr9"; | 
| 292 | 59 |   case 0x03ba: return "pmpaddr10"; | 
| 293 | 41 |   case 0x03bb: return "pmpaddr11"; | 
| 294 | 47 |   case 0x03bc: return "pmpaddr12"; | 
| 295 | 12 |   case 0x03bd: return "pmpaddr14"; | 
| 296 | 3 |   case 0x03be: return "pmpaddr13"; | 
| 297 | 7 |   case 0x03bf: return "pmpaddr15"; | 
| 298 |  |  | 
| 299 | 557 |   case 0x0b00: return "mcycle"; | 
| 300 | 96 |   case 0x0b02: return "minstret"; | 
| 301 | 63 |   case 0x0b03: return "mhpmcounter3"; | 
| 302 | 56 |   case 0x0b04: return "mhpmcounter4"; | 
| 303 | 8 |   case 0x0b05: return "mhpmcounter5"; | 
| 304 | 6 |   case 0x0b06: return "mhpmcounter6"; | 
| 305 | 12 |   case 0x0b07: return "mhpmcounter7"; | 
| 306 | 6 |   case 0x0b08: return "mhpmcounter8"; | 
| 307 | 29 |   case 0x0b09: return "mhpmcounter9"; | 
| 308 | 40 |   case 0x0b0a: return "mhpmcounter10"; | 
| 309 | 33 |   case 0x0b0b: return "mhpmcounter11"; | 
| 310 | 14 |   case 0x0b0c: return "mhpmcounter12"; | 
| 311 | 19 |   case 0x0b0d: return "mhpmcounter13"; | 
| 312 | 6 |   case 0x0b0e: return "mhpmcounter14"; | 
| 313 | 112 |   case 0x0b0f: return "mhpmcounter15"; | 
| 314 | 5 |   case 0x0b10: return "mhpmcounter16"; | 
| 315 | 32 |   case 0x0b11: return "mhpmcounter17"; | 
| 316 | 107 |   case 0x0b12: return "mhpmcounter18"; | 
| 317 | 177 |   case 0x0b13: return "mhpmcounter19"; | 
| 318 | 3 |   case 0x0b14: return "mhpmcounter20"; | 
| 319 | 6 |   case 0x0b15: return "mhpmcounter21"; | 
| 320 | 17 |   case 0x0b16: return "mhpmcounter22"; | 
| 321 | 22 |   case 0x0b17: return "mhpmcounter23"; | 
| 322 | 4 |   case 0x0b18: return "mhpmcounter24"; | 
| 323 | 9 |   case 0x0b19: return "mhpmcounter25"; | 
| 324 | 2 |   case 0x0b1a: return "mhpmcounter26"; | 
| 325 | 1 |   case 0x0b1b: return "mhpmcounter27"; | 
| 326 | 57 |   case 0x0b1c: return "mhpmcounter28"; | 
| 327 | 21 |   case 0x0b1d: return "mhpmcounter29"; | 
| 328 | 22 |   case 0x0b1e: return "mhpmcounter30"; | 
| 329 | 25 |   case 0x0b1f: return "mhpmcounter31"; | 
| 330 | 24 |   case 0x0b80: return "mcycleh"; | 
| 331 | 38 |   case 0x0b82: return "minstreth"; | 
| 332 | 35 |   case 0x0b83: return "mhpmcounter3h"; | 
| 333 | 13 |   case 0x0b84: return "mhpmcounter4h"; | 
| 334 | 24 |   case 0x0b85: return "mhpmcounter5h"; | 
| 335 | 12 |   case 0x0b86: return "mhpmcounter6h"; | 
| 336 | 185 |   case 0x0b87: return "mhpmcounter7h"; | 
| 337 | 3 |   case 0x0b88: return "mhpmcounter8h"; | 
| 338 | 14 |   case 0x0b89: return "mhpmcounter9h"; | 
| 339 | 6 |   case 0x0b8a: return "mhpmcounter10h"; | 
| 340 | 3 |   case 0x0b8b: return "mhpmcounter11h"; | 
| 341 | 8 |   case 0x0b8c: return "mhpmcounter12h"; | 
| 342 | 20 |   case 0x0b8d: return "mhpmcounter13h"; | 
| 343 | 58 |   case 0x0b8e: return "mhpmcounter14h"; | 
| 344 | 21 |   case 0x0b8f: return "mhpmcounter15h"; | 
| 345 | 68 |   case 0x0b90: return "mhpmcounter16h"; | 
| 346 | 32 |   case 0x0b91: return "mhpmcounter17h"; | 
| 347 | 2 |   case 0x0b92: return "mhpmcounter18h"; | 
| 348 | 7 |   case 0x0b93: return "mhpmcounter19h"; | 
| 349 | 33 |   case 0x0b94: return "mhpmcounter20h"; | 
| 350 | 33 |   case 0x0b95: return "mhpmcounter21h"; | 
| 351 | 27 |   case 0x0b96: return "mhpmcounter22h"; | 
| 352 | 9 |   case 0x0b97: return "mhpmcounter23h"; | 
| 353 | 0 |   case 0x0b98: return "mhpmcounter24h"; | 
| 354 | 21 |   case 0x0b99: return "mhpmcounter25h"; | 
| 355 | 72 |   case 0x0b9a: return "mhpmcounter26h"; | 
| 356 | 20 |   case 0x0b9b: return "mhpmcounter27h"; | 
| 357 | 1 |   case 0x0b9c: return "mhpmcounter28h"; | 
| 358 | 57 |   case 0x0b9d: return "mhpmcounter29h"; | 
| 359 | 42 |   case 0x0b9e: return "mhpmcounter30h"; | 
| 360 | 8 |   case 0x0b9f: return "mhpmcounter31h"; | 
| 361 |  |  | 
| 362 | 12 |   case 0x0323: return "mhpmevent3"; | 
| 363 | 13 |   case 0x0324: return "mhpmevent4"; | 
| 364 | 34 |   case 0x0325: return "mhpmevent5"; | 
| 365 | 6 |   case 0x0326: return "mhpmevent6"; | 
| 366 | 5 |   case 0x0327: return "mhpmevent7"; | 
| 367 | 6 |   case 0x0328: return "mhpmevent8"; | 
| 368 | 35 |   case 0x0329: return "mhpmevent9"; | 
| 369 | 3 |   case 0x032a: return "mhpmevent10"; | 
| 370 | 13 |   case 0x032b: return "mhpmevent11"; | 
| 371 | 24 |   case 0x032c: return "mhpmevent12"; | 
| 372 | 4 |   case 0x032d: return "mhpmevent13"; | 
| 373 | 7 |   case 0x032e: return "mhpmevent14"; | 
| 374 | 55 |   case 0x032f: return "mhpmevent15"; | 
| 375 | 0 |   case 0x0330: return "mhpmevent16"; | 
| 376 | 15 |   case 0x0331: return "mhpmevent17"; | 
| 377 | 13 |   case 0x0332: return "mhpmevent18"; | 
| 378 | 25 |   case 0x0333: return "mhpmevent19"; | 
| 379 | 6 |   case 0x0334: return "mhpmevent20"; | 
| 380 | 11 |   case 0x0335: return "mhpmevent21"; | 
| 381 | 7 |   case 0x0336: return "mhpmevent22"; | 
| 382 | 12 |   case 0x0337: return "mhpmevent23"; | 
| 383 | 15 |   case 0x0338: return "mhpmevent24"; | 
| 384 | 12 |   case 0x0339: return "mhpmevent25"; | 
| 385 | 9 |   case 0x033a: return "mhpmevent26"; | 
| 386 | 19 |   case 0x033b: return "mhpmevent27"; | 
| 387 | 20 |   case 0x033c: return "mhpmevent28"; | 
| 388 | 33 |   case 0x033d: return "mhpmevent29"; | 
| 389 | 1 |   case 0x033e: return "mhpmevent30"; | 
| 390 | 134 |   case 0x033f: return "mhpmevent31"; | 
| 391 |  |  | 
| 392 | 23 |   case 0x07a0: return "tselect"; | 
| 393 | 2 |   case 0x07a1: return "tdata1"; | 
| 394 | 14 |   case 0x07a2: return "tdata2"; | 
| 395 | 10 |   case 0x07a3: return "tdata3"; | 
| 396 |  |  | 
| 397 | 1 |   case 0x07b0: return "dcsr"; | 
| 398 | 34 |   case 0x07b1: return "dpc"; | 
| 399 | 6 |   case 0x07b2: return "dscratch"; | 
| 400 | 12.6k |   } | 
| 401 | 2.48k |   return NULL; | 
| 402 | 12.6k | } | 
| 403 |  |  | 
| 404 |  | static void printCSRSystemRegister(MCInst *MI, unsigned OpNo, | 
| 405 |  |                                    //const MCSubtargetInfo &STI, | 
| 406 |  |                                    SStream *O)  | 
| 407 | 12.6k | { | 
| 408 | 12.6k |   unsigned Imm = MCOperand_getImm(MCInst_getOperand(MI, OpNo)); | 
| 409 | 12.6k |   const char *Name = getCSRSystemRegisterName(Imm); | 
| 410 |  |  | 
| 411 | 12.6k |   if (Name) { | 
| 412 | 10.1k |     SStream_concat0(O, Name); | 
| 413 | 10.1k |   } else { | 
| 414 | 2.48k |     SStream_concat(O, "%u", Imm); | 
| 415 | 2.48k |   } | 
| 416 | 12.6k | } | 
| 417 |  |  | 
| 418 |  | static void printFenceArg(MCInst *MI, unsigned OpNo, SStream *O)  | 
| 419 | 370 | { | 
| 420 | 370 |     unsigned FenceArg = MCOperand_getImm(MCInst_getOperand(MI, OpNo)); | 
| 421 |  |     //CS_ASSERT (((FenceArg >> 4) == 0) && "Invalid immediate in printFenceArg"); | 
| 422 |  |  | 
| 423 | 370 |     if ((FenceArg & RISCVFenceField_I) != 0) | 
| 424 | 172 |         SStream_concat0(O, "i"); | 
| 425 | 370 |     if ((FenceArg & RISCVFenceField_O) != 0) | 
| 426 | 74 |         SStream_concat0(O, "o"); | 
| 427 | 370 |   if ((FenceArg & RISCVFenceField_R) != 0) | 
| 428 | 19 |         SStream_concat0(O, "r"); | 
| 429 | 370 |     if ((FenceArg & RISCVFenceField_W) != 0) | 
| 430 | 131 |         SStream_concat0(O, "w"); | 
| 431 | 370 |     if (FenceArg == 0) | 
| 432 | 87 |         SStream_concat0(O, "unknown"); | 
| 433 | 370 | } | 
| 434 |  |  | 
| 435 |  | static void printFRMArg(MCInst *MI, unsigned OpNo, SStream *O)  | 
| 436 | 1.03k | { | 
| 437 | 1.03k |     enum RoundingMode FRMArg =  | 
| 438 | 1.03k |         (enum RoundingMode)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); | 
| 439 |  | #if 0 | 
| 440 |  |   auto FRMArg = | 
| 441 |  |       static_cast<RISCVFPRndMode::RoundingMode>(MI->getOperand(OpNo).getImm()); | 
| 442 |  |   O << RISCVFPRndMode::roundingModeToString(FRMArg); | 
| 443 |  | #endif | 
| 444 | 1.03k |     SStream_concat0(O, roundingModeToString(FRMArg)); | 
| 445 | 1.03k | } | 
| 446 |  |    | 
| 447 |  | #endif        // CAPSTONE_HAS_RISCV |