Lines Matching refs:Form
116 Form = byteFromRec(Rec, "FormBits"); in RecognizableInstrBase()
138 (Form == X86Local::MRMDestReg || Form == X86Local::MRMSrcReg); in RecognizableInstrBase()
142 return Form != X86Local::Pseudo && (!IsCodeGenOnly || ForceDisassemble) && in shouldBeEmitted()
501 switch (Form) { in emitInstructionSpecifier()
849 switch (Form) { in emitDecodePath()
895 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0r); in emitDecodePath()
905 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0X); in emitDecodePath()
908 filter = std::make_unique<ExtendedRMFilter>(true, Form - X86Local::MRMr0); in emitDecodePath()
918 filter = std::make_unique<ExtendedFilter>(false, Form - X86Local::MRM0m); in emitDecodePath()
921 filter = std::make_unique<ExactFilter>(0xC0 + Form - X86Local::MRM_C0); in emitDecodePath()
943 if (Form == X86Local::AddRegFrm || Form == X86Local::MRMSrcRegCC || in emitDecodePath()
944 Form == X86Local::MRMSrcMemCC || Form == X86Local::MRMXrCC || in emitDecodePath()
945 Form == X86Local::MRMXmCC || Form == X86Local::AddCCFrm || in emitDecodePath()
946 Form == X86Local::MRMDestMem4VOp3CC) { in emitDecodePath()
947 uint8_t Count = Form == X86Local::AddRegFrm ? 8 : 16; in emitDecodePath()