Home
last modified time | relevance | path

Searched refs:cmpb (Results 1 – 7 of 7) sorted by relevance

/art/runtime/arch/x86/
Dquick_entrypoints_x86.S541 cmpb MACRO_LITERAL(0), REG_VAR(temp_char) // if (temp_char == '\0')
543 cmpb MACRO_LITERAL(68), REG_VAR(temp_char) // if (temp_char == 'D')
545 cmpb MACRO_LITERAL(70), REG_VAR(temp_char) // if (temp_char == 'F')
549 cmpb MACRO_LITERAL(74), REG_VAR(temp_char) // if (temp_char != 'J')
572 cmpb MACRO_LITERAL(0), REG_VAR(temp_char) // if (temp_char == '\0')
574 cmpb MACRO_LITERAL(70), REG_VAR(temp_char) // if (temp_char == 'F')
576 cmpb MACRO_LITERAL(68), REG_VAR(temp_char) // if (temp_char == 'D')
644 cmpb LITERAL(74), %al // if (al == 'J') goto FOUND_LONG
673 cmpb LITERAL(68), (%edx) // test if result type char == 'D'
675 cmpb LITERAL(70), (%edx) // test if result type char == 'F'
[all …]
/art/runtime/arch/x86_64/
Dquick_entrypoints_x86_64.S583 cmpb MACRO_LITERAL(0), %al // if (al == '\0') goto xmm_setup_finished
585 cmpb MACRO_LITERAL(68), %al // if (al == 'D') goto FOUND_DOUBLE
587 cmpb MACRO_LITERAL(70), %al // if (al == 'F') goto FOUND_FLOAT
591 cmpb MACRO_LITERAL(74), %al // if (al != 'J') goto LOOP
614 cmpb MACRO_LITERAL(0), %al // if (al == '\0') goto gpr_setup_finished
616 cmpb MACRO_LITERAL(74), %al // if (al == 'J') goto FOUND_LONG
618 cmpb MACRO_LITERAL(70), %al // if (al == 'F') goto SKIP_FLOAT
620 cmpb MACRO_LITERAL(68), %al // if (al == 'D') goto SKIP_DOUBLE
717 cmpb LITERAL(68), (%r9) // Test if result type char == 'D'.
719 cmpb LITERAL(70), (%r9) // Test if result type char == 'F'.
[all …]
/art/compiler/utils/x86/
Dassembler_x86_test.cc918 DriverStr(RepeatAI(&x86::X86Assembler::cmpb, in TEST_F()
Dassembler_x86.h602 void cmpb(const Address& address, const Immediate& imm);
/art/compiler/utils/x86_64/
Dassembler_x86_64.h646 void cmpb(const Address& address, const Immediate& imm);
Dassembler_x86_64.cc2187 void X86_64Assembler::cmpb(const Address& address, const Immediate& imm) { in cmpb() function in art::x86_64::X86_64Assembler
/art/compiler/optimizing/
Dcode_generator_x86_64.cc5459 __ cmpb(Address(class_reg, status_byte_offset), Immediate(shifted_initialized_value)); in GenerateClassInitializationCheck() local