Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Insn

373   // Populates the insn given the uid.
374 void insnWithID(insn_t &Insn, unsigned Opcode) const {
387 Insn.push_back(BIT_UNSET);
389 Insn.push_back(bitFromBits(Bits, i));
398 // Populates the field of the insn given the start position and the number of
403 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
434 const insn_t &Insn) const;
511 insn_t Insn;
513 // Populates the insn given the uid.
514 Owner->insnWithID(Insn, Owner->Opcodes[i]);
518 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
907 << " unsigned Idx, InsnType insn, MCInst &MI,\n";
926 // Populates the field of the insn given the start position and the number of
931 bool FilterChooser::fieldFromInsn(uint64_t &Field, insn_t &Insn,
936 if (Insn[StartBit + i] == BIT_UNSET)
939 if (Insn[StartBit + i] == BIT_TRUE)
1012 const insn_t &Insn) const {
1025 Val = Value(Insn[i]);
1073 << "(insn, " << OI->Base << ", " << OI->Width
1080 << "(insn, " << OI->Base << ", " << OI->Width
1104 << "(MI, insn, Address, Decoder)"
1312 insn_t Insn;
1313 insnWithID(Insn, Opc);
1316 getIslands(StartBits, EndBits, FieldVals, Insn);
1427 insn_t Insn;
1429 insnWithID(Insn, Opcodes[i]);
1432 if (getIslands(StartBits, EndBits, FieldVals, Insn) > 0) {
1471 insn_t insn;
1473 insnWithID(insn, Opcodes[InsnIndex]);
1478 if (insn[BitIndex] == BIT_UNSET)
1484 if (insn[BitIndex] == BIT_UNSET)
1488 if (insn[BitIndex] != BIT_UNSET)
1866 << "static InsnType fieldFromInstruction(InsnType insn, unsigned startBit,\n"
1875 << " return (insn & fieldMask) >> startBit;\n"
1884 << " InsnType insn, uint64_t Address,\n"
1902 << " CurFieldValue = fieldFromInstruction(insn, Start, Len);\n"
1928 << " InsnType FieldValue = fieldFromInstruction(insn, Start, Len);\n"
1976 << " return decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm);\n"
1985 << " bool Fail = (insn & PositiveMask) || (~insn & NegativeMask);\n"