Searched refs:not_smi (Results 1 - 11 of 11) sorted by relevance

/external/v8/src/x64/
H A Dbuiltins-x64.cc1588 Condition not_smi = NegateCondition(masm->CheckSmi(rbx)); local
1589 __ Check(not_smi, kUnexpectedInitialMapForInternalArrayFunction);
1618 Condition not_smi = NegateCondition(masm->CheckSmi(rbx)); local
1619 __ Check(not_smi, kUnexpectedInitialMapForArrayFunction);
2111 Label not_smi; local
2112 __ JumpIfNotSmi(rax, &not_smi, Label::kNear);
2114 __ bind(&not_smi);
H A Dcode-stubs-x64.cc4025 Condition not_smi = NegateCondition(masm->CheckSmi(rcx)); local
4026 __ Check(not_smi, kUnexpectedInitialMapForArrayFunction);
4141 Condition not_smi = NegateCondition(masm->CheckSmi(rcx)); local
4142 __ Check(not_smi, kUnexpectedInitialMapForArrayFunction);
/external/v8/src/arm64/
H A Dbuiltins-arm64.cc2809 Label not_smi; local
2810 __ JumpIfNotSmi(x0, &not_smi);
2812 __ Bind(&not_smi);
H A Dmacro-assembler-arm64.cc2277 Label not_smi; local
2278 JumpIfEitherSmi(first, second, NULL, &not_smi);
2284 Bind(&not_smi);
/external/v8/src/ia32/
H A Dbuiltins-ia32.cc2685 Label not_smi; local
2686 __ JumpIfNotSmi(eax, &not_smi, Label::kNear);
2688 __ bind(&not_smi);
/external/v8/src/mips/
H A Dbuiltins-mips.cc2793 Label not_smi; local
2794 __ JumpIfNotSmi(a0, &not_smi);
2797 __ bind(&not_smi);
H A Dmacro-assembler-mips.cc5388 Label not_smi; local
5389 JumpIfNotSmi(object, &not_smi);
5395 bind(&not_smi);
/external/v8/src/mips64/
H A Dbuiltins-mips64.cc2779 Label not_smi; local
2780 __ JumpIfNotSmi(a0, &not_smi);
2783 __ bind(&not_smi);
H A Dmacro-assembler-mips64.cc5519 Label not_smi;
5520 JumpIfNotSmi(object, &not_smi);
5527 bind(&not_smi);
/external/v8/src/x87/
H A Dbuiltins-x87.cc2709 Label not_smi; local
2710 __ JumpIfNotSmi(eax, &not_smi, Label::kNear);
2712 __ bind(&not_smi);
/external/v8/src/
H A Dbuiltins.cc5965 CodeStubAssembler::Label is_smi(a), not_smi(a), is_typed_array(a),
5970 a->Branch(a->WordIsSmi(tagged), &is_smi, &not_smi);
5975 a->Bind(&not_smi);

Completed in 183 milliseconds