Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/x64/
Ddisasm-x64.cc1240 const InstructionDesc& idesc = cmov_instructions[condition]; in TwoByteOpcodeInstruction() local
1241 byte_size_operand_ = idesc.byte_size_operation; in TwoByteOpcodeInstruction()
1242 current += PrintOperands(idesc.mnem, idesc.op_order_, current); in TwoByteOpcodeInstruction()
1392 const InstructionDesc& idesc = instruction_table_->Get(current); in InstructionDecode() local
1393 byte_size_operand_ = idesc.byte_size_operation; in InstructionDecode()
1394 switch (idesc.type) { in InstructionDecode()
1403 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode()
1405 AppendToBuffer("%s", idesc.mnem, operand_size_code()); in InstructionDecode()
1412 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
1421 idesc.mnem, in InstructionDecode()
[all …]
/external/chromium_org/v8/src/x87/
Ddisasm-x87.cc930 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local
931 switch (idesc.type) { in InstructionDecode()
933 AppendToBuffer(idesc.mnem); in InstructionDecode()
939 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
947 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode()
962 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
969 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
975 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()
/external/chromium_org/v8/src/ia32/
Ddisasm-ia32.cc909 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local
910 switch (idesc.type) { in InstructionDecode()
912 AppendToBuffer(idesc.mnem); in InstructionDecode()
918 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
926 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode()
941 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
948 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
954 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DClassReader.java1367 String idesc = readUTF8(cpIndex + 2, c); in accept() local
1369 mv.visitFieldInsn(opcode, iowner, iname, idesc); in accept()
1371 mv.visitMethodInsn(opcode, iowner, iname, idesc); in accept()