Lines Matching refs:itostr
232 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in addCodeToMergeInOperand()
233 itostr(loBit) + ")"; in addCodeToMergeInOperand()
235 itostr(loInstBit) + ");\n"; in addCodeToMergeInOperand()
237 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in addCodeToMergeInOperand()
238 ", " + itostr(loBit) + ")"; in addCodeToMergeInOperand()
240 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in addCodeToMergeInOperand()
252 Case += " op <<= " + itostr(opShift) + ";\n"; in addCodeToMergeInOperand()
254 Case += " op >>= " + itostr(-opShift) + ";\n"; in addCodeToMergeInOperand()
260 itostr(opShift) + ";\n"; in addCodeToMergeInOperand()
263 itostr(-opShift) + ";\n"; in addCodeToMergeInOperand()
305 " case " + itostr(DefaultMode) + ": InstBitsByHw = InstBits"; in getInstructionCases()
307 Case += " case " + itostr(ModeId) + in getInstructionCases()
318 Case += " Inst = APInt(" + itostr(BitWidth); in getInstructionCases()
319 Case += ", ArrayRef(InstBitsByHw + opcode * " + itostr(NumWords) + in getInstructionCases()
320 ", " + itostr(NumWords); in getInstructionCases()
330 append(" case " + itostr(ModeId) + ": {\n"); in getInstructionCases()