Home
last modified time | relevance | path

Searched refs:is_not_object (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/v8/src/ia32/
Dlithium-codegen-ia32.h284 Label* is_not_object,
Dlithium-codegen-ia32.cc2350 Label* is_not_object, in EmitIsObject() argument
2352 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2361 __ j(not_zero, is_not_object); in EmitIsObject()
2365 __ j(below, is_not_object); in EmitIsObject()
/external/chromium_org/v8/src/arm/
Dlithium-codegen-arm.h300 Label* is_not_object,
Dlithium-codegen-arm.cc2502 Label* is_not_object, in EmitIsObject() argument
2505 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2516 __ b(ne, is_not_object); in EmitIsObject()
2521 __ b(lt, is_not_object); in EmitIsObject()
/external/chromium_org/v8/src/x64/
Dlithium-codegen-x64.h277 Label* is_not_object,
Dlithium-codegen-x64.cc2409 Label* is_not_object, in EmitIsObject() argument
2413 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2422 __ j(not_zero, is_not_object); in EmitIsObject()
2427 __ j(below, is_not_object); in EmitIsObject()
/external/chromium_org/v8/src/mips/
Dlithium-codegen-mips.h321 Label* is_not_object,
Dlithium-codegen-mips.cc2405 Label* is_not_object, in EmitIsObject() argument
2407 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2417 __ Branch(is_not_object, ne, temp2, Operand(zero_reg)); in EmitIsObject()
2421 __ Branch(is_not_object, in EmitIsObject()
/external/chromium_org/v8/src/mips64/
Dlithium-codegen-mips64.h322 Label* is_not_object,
Dlithium-codegen-mips64.cc2375 Label* is_not_object, in EmitIsObject() argument
2377 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2387 __ Branch(is_not_object, ne, temp2, Operand(zero_reg)); in EmitIsObject()
2391 __ Branch(is_not_object, in EmitIsObject()
/external/chromium_org/v8/src/x87/
Dlithium-codegen-x87.h312 Label* is_not_object,
Dlithium-codegen-x87.cc2646 Label* is_not_object, in EmitIsObject() argument
2648 __ JumpIfSmi(input, is_not_object); in EmitIsObject()
2657 __ j(not_zero, is_not_object); in EmitIsObject()
2661 __ j(below, is_not_object); in EmitIsObject()
/external/chromium_org/v8/src/arm64/
Dlithium-codegen-arm64.cc3226 Label* is_not_object = instr->FalseLabel(chunk_); in DoIsObjectAndBranch() local
3231 __ JumpIfSmi(value, is_not_object); in DoIsObjectAndBranch()
3238 __ TestAndBranchIfAnySet(scratch, 1 << Map::kIsUndetectable, is_not_object); in DoIsObjectAndBranch()