Searched refs:idesc (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/v8/src/x64/ |
D | disasm-x64.cc | 1240 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/ |
D | disasm-x87.cc | 930 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/ |
D | disasm-ia32.cc | 909 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/ |
D | ClassReader.java | 1367 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()
|