Lines Matching refs:opcode
26 Opcode opcode = Opcode(bytecode & 0xff); in OpcodeFromBytecode() local
27 return opcode; in OpcodeFromBytecode()
46 InstructionIndexType GetIndexTypeFromOpcode(Opcode opcode) { in GetIndexTypeFromOpcode() argument
47 return gInstructionDescriptors[opcode].index_type; in GetIndexTypeFromOpcode()
50 InstructionFormat GetFormatFromOpcode(Opcode opcode) { in GetFormatFromOpcode() argument
51 return gInstructionDescriptors[opcode].format; in GetFormatFromOpcode()
54 OpcodeFlags GetFlagsFromOpcode(Opcode opcode) { in GetFlagsFromOpcode() argument
55 return gInstructionDescriptors[opcode].flags; in GetFlagsFromOpcode()
58 VerifyFlags GetVerifyFlagsFromOpcode(Opcode opcode) { in GetVerifyFlagsFromOpcode() argument
59 return gInstructionDescriptors[opcode].verify_flags; in GetVerifyFlagsFromOpcode()
131 const char* GetOpcodeName(Opcode opcode) { return gOpcodeNames[opcode]; } in GetOpcodeName() argument
149 Opcode opcode = OpcodeFromBytecode(inst); in DecodeInstruction() local
150 InstructionFormat format = GetFormatFromOpcode(opcode); in DecodeInstruction()
153 dec.opcode = opcode; in DecodeInstruction()
306 opcode); in DecodeInstruction()