Searched defs:not_smi_label (Results 1 - 8 of 8) sorted by relevance

/external/v8/src/arm/
H A Dmacro-assembler-arm.h1247 inline void JumpIfNotSmi(Register value, Label* not_smi_label) { argument
1249 b(ne, not_smi_label);
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h472 inline void JumpIfNotSmi(Register value, Label* not_smi_label, argument
475 j(not_zero, not_smi_label, distance);
/external/v8/src/x87/
H A Dmacro-assembler-x87.h466 inline void JumpIfNotSmi(Register value, Label* not_smi_label, argument
469 j(not_zero, not_smi_label, distance);
/external/v8/src/arm64/
H A Dmacro-assembler-arm64-inl.h1361 Label* not_smi_label) {
1366 if (not_smi_label) {
1367 B(not_smi_label);
1370 DCHECK(not_smi_label);
1371 Tbnz(value, 0, not_smi_label);
1376 void MacroAssembler::JumpIfNotSmi(Register value, Label* not_smi_label) { argument
1377 JumpIfSmi(value, NULL, not_smi_label);
1384 Label* not_smi_label) {
1390 JumpIfSmi(tmp, both_smi_label, not_smi_label);
1397 Label* not_smi_label) {
1359 JumpIfSmi(Register value, Label* smi_label, Label* not_smi_label) argument
1381 JumpIfBothSmi(Register value1, Register value2, Label* both_smi_label, Label* not_smi_label) argument
1394 JumpIfEitherSmi(Register value1, Register value2, Label* either_smi_label, Label* not_smi_label) argument
1407 JumpIfEitherNotSmi(Register value1, Register value2, Label* not_smi_label) argument
1414 JumpIfBothNotSmi(Register value1, Register value2, Label* not_smi_label) argument
[all...]
/external/v8/src/ppc/
H A Dmacro-assembler-ppc.h1162 Label* not_smi_label) {
1167 blt(not_smi_label);
1178 Label* not_smi_label) {
1180 bne(not_smi_label, cr0);
1277 inline void JumpIfNotSmi(Register value, Label* not_smi_label) { argument
1279 bne(not_smi_label, cr0);
1161 JumpIfNotSmiCandidate(Register value, Register scratch, Label* not_smi_label) argument
1177 JumpIfNotUnsignedSmiCandidate(Register value, Register scratch, Label* not_smi_label) argument
/external/v8/src/s390/
H A Dmacro-assembler-s390.h1452 Label* not_smi_label) {
1457 blt(not_smi_label);
1468 Label* not_smi_label) {
1470 bne(not_smi_label /*, cr0*/);
1592 inline void JumpIfNotSmi(Register value, Label* not_smi_label) { argument
1594 bne(not_smi_label /*, cr0*/);
1451 JumpIfNotSmiCandidate(Register value, Register scratch, Label* not_smi_label) argument
1467 JumpIfNotUnsignedSmiCandidate(Register value, Register scratch, Label* not_smi_label) argument
/external/v8/src/mips64/
H A Dmacro-assembler-mips64.cc5989 Label* not_smi_label,
5994 Branch(bd, not_smi_label, ne, scratch, Operand(zero_reg));
5988 JumpIfNotSmi(Register value, Label* not_smi_label, Register scratch, BranchDelaySlot bd) argument
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc5590 Label* not_smi_label,
5595 Branch(bd, not_smi_label, ne, scratch, Operand(zero_reg));
5589 JumpIfNotSmi(Register value, Label* not_smi_label, Register scratch, BranchDelaySlot bd) argument

Completed in 1094 milliseconds