Home
last modified time | relevance | path

Searched refs:idesc (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/x64/
Ddisasm-x64.cc2173 const InstructionDesc& idesc = cmov_instructions[condition]; in TwoByteOpcodeInstruction() local
2174 byte_size_operand_ = idesc.byte_size_operation; in TwoByteOpcodeInstruction()
2175 current += PrintOperands(idesc.mnem, idesc.op_order_, current); in TwoByteOpcodeInstruction()
2374 const InstructionDesc& idesc = instruction_table_->Get(current); in InstructionDecode() local
2375 byte_size_operand_ = idesc.byte_size_operation; in InstructionDecode()
2376 switch (idesc.type) { in InstructionDecode()
2385 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode()
2387 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode()
2394 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
2402 AppendToBuffer("%s%c %s", idesc.mnem, operand_size_code(), in InstructionDecode()
[all …]
/external/v8/src/ia32/
Ddisasm-ia32.cc1547 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local
1548 switch (idesc.type) { in InstructionDecode()
1550 AppendToBuffer("%s", idesc.mnem); in InstructionDecode()
1556 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
1564 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode()
1579 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
1587 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
1593 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()