Skip to content

Commit

Permalink
Merge pull request #2038 from Rot127/fix_diet_build
Browse files Browse the repository at this point in the history
  • Loading branch information
kabeor committed May 31, 2023
2 parents 7729902 + 1c0c185 commit a026fc4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arch/AArch64/AArch64GenAsmWriter.inc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ static uint64_t getMnemonic(MCInst *MI, SStream *O, unsigned int opcode) {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Woverlength-strings"
#endif

#ifndef CAPSTONE_DIET
static const char AsmStrs[] = {
/* 0 */ "sha1su0\t\0"
Expand Down Expand Up @@ -1131,6 +1132,8 @@ static uint64_t getMnemonic(MCInst *MI, SStream *O, unsigned int opcode) {
/* 8739 */ "ld1w\t{\0"
/* 8746 */ "st1w\t{\0"
};
#endif

#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
Expand Down Expand Up @@ -7480,7 +7483,6 @@ static uint64_t getMnemonic(MCInst *MI, SStream *O, unsigned int opcode) {
138527510U, // anonymous_5384
138527511U, // anonymous_5385
};
#endif

static const uint32_t OpInfo1[] = {
0U, // PHI
Expand Down Expand Up @@ -13832,7 +13834,9 @@ static uint64_t getMnemonic(MCInst *MI, SStream *O, unsigned int opcode) {
uint64_t Bits = 0;
Bits |= (uint64_t)OpInfo0[opcode] << 0;
Bits |= (uint64_t)OpInfo1[opcode] << 32;
#ifndef CAPSTONE_DIET
SStream_concat0(O, AsmStrs+(Bits & 16383)-1);
#endif
return Bits;

}
Expand Down
4 changes: 4 additions & 0 deletions arch/AArch64/AArch64InstPrinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -2481,6 +2481,7 @@ static void printMatrixTileVector(MCInst *MI, unsigned OpNum, SStream *O, bool I
MCOperand *RegOp = MCInst_getOperand(MI, OpNum);
// assert(MCOperand_isReg(RegOp) && "Unexpected operand type!");
unsigned Reg = MCOperand_getReg(RegOp);
#ifndef CAPSTONE_DIET
const char *RegName = getRegisterName(Reg, AArch64_NoRegAltName);

const size_t strLn = strlen(RegName);
Expand All @@ -2499,6 +2500,7 @@ static void printMatrixTileVector(MCInst *MI, unsigned OpNum, SStream *O, bool I
}
}
SStream_concat0(O, RegNameNew);
#endif

if (MI->csh->detail) {
#ifndef CAPSTONE_DIET
Expand All @@ -2513,7 +2515,9 @@ static void printMatrixTileVector(MCInst *MI, unsigned OpNum, SStream *O, bool I
MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Reg;
MI->flat_insn->detail->arm64.op_count++;
}
#ifndef CAPSTONE_DIET
cs_mem_free(RegNameNew);
#endif
}

static const unsigned MatrixZADRegisterTable[] = {
Expand Down
2 changes: 2 additions & 0 deletions arch/PowerPC/PPCGenAsmWriter.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6135,7 +6135,9 @@ static void printInstruction(MCInst *MI, SStream *O)
uint64_t Bits = 0;
Bits |= (uint64_t)OpInfo0[opcode] << 0;
Bits |= (uint64_t)OpInfo1[opcode] << 32;
#ifndef CAPSTONE_DIET
SStream_concat0(O, AsmStrs+(Bits & 16383)-1);
#endif


// Fragment 0 encoded into 5 bits for 19 unique commands.
Expand Down

1 comment on commit a026fc4

@lizhuowu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.