Lines Matching refs:Form
117 Form = byteFromRec(Rec, "FormBits"); in RecognizableInstrBase()
140 (Form == X86Local::MRMDestReg || Form == X86Local::MRMSrcReg); in RecognizableInstrBase()
144 return Form != X86Local::Pseudo && (!IsCodeGenOnly || ForceDisassemble) && in shouldBeEmitted()
503 switch (Form) { in emitInstructionSpecifier()
874 switch (Form) { in emitDecodePath()
922 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0r); in emitDecodePath()
932 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0X); in emitDecodePath()
935 filter = std::make_unique<ExtendedRMFilter>(true, Form - X86Local::MRMr0); in emitDecodePath()
945 filter = std::make_unique<ExtendedFilter>(false, Form - X86Local::MRM0m); in emitDecodePath()
948 filter = std::make_unique<ExactFilter>(0xC0 + Form - X86Local::MRM_C0); in emitDecodePath()
970 if (Form == X86Local::AddRegFrm || Form == X86Local::MRMSrcRegCC || in emitDecodePath()
971 Form == X86Local::MRMSrcMemCC || Form == X86Local::MRMXrCC || in emitDecodePath()
972 Form == X86Local::MRMXmCC || Form == X86Local::AddCCFrm || in emitDecodePath()
973 Form == X86Local::MRMDestRegCC || Form == X86Local::MRMDestMemCC || in emitDecodePath()
974 Form == X86Local::MRMDestMem4VOp3CC) { in emitDecodePath()
975 uint8_t Count = Form == X86Local::AddRegFrm ? 8 : 16; in emitDecodePath()