Searched defs:not_numbers (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/src/ia32/
H A Dcode-stubs-ia32.cc551 // them into xmm0 and xmm1 if they are. Jump to label not_numbers if
554 static void LoadSSE2Operands(MacroAssembler* masm, Label* not_numbers);
1027 Label* not_numbers) {
1029 // Load operand in edx into xmm0, or branch to not_numbers.
1033 __ j(not_equal, not_numbers); // Argument in edx is not a number.
1036 // Load operand in eax into xmm1, or branch to not_numbers.
1040 __ jmp(not_numbers); // Argument in eax is not a number.
1026 LoadSSE2Operands(MacroAssembler* masm, Label* not_numbers) argument
/external/chromium_org/v8/src/x64/
H A Dcode-stubs-x64.cc508 // If the operands are not both numbers, jump to not_numbers.
512 Label* not_numbers);
907 Label* not_numbers) {
909 // Load operand in rdx into xmm0, or branch to not_numbers.
913 __ j(not_equal, not_numbers); // Argument in rdx is not a number.
915 // Load operand in rax into xmm1, or branch to not_numbers.
920 __ j(not_equal, not_numbers);
906 LoadSSE2UnknownOperands(MacroAssembler* masm, Label* not_numbers) argument
/external/v8/src/arm/
H A Dcode-stubs-arm.cc2419 Label* not_numbers,
2427 ASSERT(smi_operands || (not_numbers != NULL));
2464 not_numbers);
2525 not_numbers);
2534 not_numbers);
2564 __ b(mi, not_numbers);
2417 GenerateFPOperation(MacroAssembler* masm, bool smi_operands, Label* not_numbers, Label* gc_required) argument
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc649 // them into xmm0 and xmm1 if they are. Jump to label not_numbers if
652 static void LoadSSE2Operands(MacroAssembler* masm, Label* not_numbers);
2794 Label* not_numbers) {
2796 // Load operand in edx into xmm0, or branch to not_numbers.
2800 __ j(not_equal, not_numbers); // Argument in edx is not a number.
2803 // Load operand in eax into xmm1, or branch to not_numbers.
2807 __ jmp(not_numbers); // Argument in eax is not a number.
2793 LoadSSE2Operands(MacroAssembler* masm, Label* not_numbers) argument
/external/v8/src/mips/
H A Dcode-stubs-mips.cc2533 Label* not_numbers,
2541 ASSERT(smi_operands || (not_numbers != NULL));
2578 not_numbers);
2641 not_numbers);
2650 not_numbers);
2679 __ Branch(not_numbers, lt, a2, Operand(zero_reg));
2531 GenerateFPOperation(MacroAssembler* masm, bool smi_operands, Label* not_numbers, Label* gc_required) argument
/external/v8/src/x64/
H A Dcode-stubs-x64.cc560 // If the operands are not both numbers, jump to not_numbers.
566 Label* not_numbers);
1914 Label* not_numbers) {
1916 // Load operand in rdx into xmm0, or branch to not_numbers.
1920 __ j(not_equal, not_numbers); // Argument in rdx is not a number.
1922 // Load operand in rax into xmm1, or branch to not_numbers.
1927 __ j(not_equal, not_numbers);
1913 LoadSSE2UnknownOperands(MacroAssembler* masm, Label* not_numbers) argument

Completed in 307 milliseconds