Searched refs:kIsUndetectable (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/arm/ |
D | full-codegen-arm.cc | 2463 __ tst(r1, Operand(1 << Map::kIsUndetectable)); in EmitIsObject() 2512 __ tst(r1, Operand(1 << Map::kIsUndetectable)); in EmitIsUndetectableObject() 4076 __ tst(r1, Operand(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4090 __ tst(r1, Operand(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4109 __ tst(r1, Operand(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4255 __ and_(r1, r1, Operand(1 << Map::kIsUndetectable)); in VisitCompareToNull() 4256 __ cmp(r1, Operand(1 << Map::kIsUndetectable)); in VisitCompareToNull()
|
D | lithium-codegen-arm.cc | 1650 __ tst(scratch, Operand(1 << Map::kIsUndetectable)); in DoIsNull() 1689 __ tst(scratch, Operand(1 << Map::kIsUndetectable)); in DoIsNullAndBranch() 1710 __ tst(temp2, Operand(1 << Map::kIsUndetectable)); in EmitIsObject() 4069 __ tst(ip, Operand(1 << Map::kIsUndetectable)); in EmitTypeofIs() 4085 __ tst(ip, Operand(1 << Map::kIsUndetectable)); in EmitTypeofIs() 4103 __ tst(ip, Operand(1 << Map::kIsUndetectable)); in EmitTypeofIs()
|
D | code-stubs-arm.cc | 1417 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable)); in EmitCheckForSymbolsOrObjects() 1418 __ eor(r0, r0, Operand(1 << Map::kIsUndetectable)); in EmitCheckForSymbolsOrObjects() 1736 __ and_(scratch, scratch, Operand(1 << Map::kIsUndetectable)); in Generate() 1737 __ cmp(scratch, Operand(1 << Map::kIsUndetectable)); in Generate()
|
/external/v8/src/ia32/ |
D | full-codegen-ia32.cc | 2387 __ test(ecx, Immediate(1 << Map::kIsUndetectable)); in EmitIsObject() 2438 __ test(ebx, Immediate(1 << Map::kIsUndetectable)); in EmitIsUndetectableObject() 4049 1 << Map::kIsUndetectable); in TryLiteralCompare() 4063 __ test(ecx, Immediate(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4079 1 << Map::kIsUndetectable); in TryLiteralCompare() 4224 __ test(edx, Immediate(1 << Map::kIsUndetectable)); in VisitCompareToNull()
|
D | lithium-codegen-ia32.cc | 1521 __ test(scratch, Immediate(1 << Map::kIsUndetectable)); in DoIsNull() 1558 __ test(scratch, Immediate(1 << Map::kIsUndetectable)); in DoIsNullAndBranch() 1582 __ test(temp2, Immediate(1 << Map::kIsUndetectable)); in EmitIsObject() 4014 1 << Map::kIsUndetectable); in EmitTypeofIs() 4030 1 << Map::kIsUndetectable); in EmitTypeofIs() 4052 1 << Map::kIsUndetectable); in EmitTypeofIs()
|
D | code-stubs-ia32.cc | 259 1 << Map::kIsUndetectable); in Generate() 3704 1 << Map::kIsUndetectable); in Generate() 3707 1 << Map::kIsUndetectable); in Generate()
|
/external/v8/src/x64/ |
D | lithium-codegen-x64.cc | 1538 Immediate(1 << Map::kIsUndetectable)); in DoIsNull() 1581 Immediate(1 << Map::kIsUndetectable)); in DoIsNullAndBranch() 1600 Immediate(1 << Map::kIsUndetectable)); in EmitIsObject() 3846 Immediate(1 << Map::kIsUndetectable)); in EmitTypeofIs() 3862 Immediate(1 << Map::kIsUndetectable)); in EmitTypeofIs() 3880 Immediate(1 << Map::kIsUndetectable)); in EmitTypeofIs()
|
D | full-codegen-x64.cc | 2362 Immediate(1 << Map::kIsUndetectable)); in EmitIsObject() 2411 Immediate(1 << Map::kIsUndetectable)); in EmitIsUndetectableObject() 4023 Immediate(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4037 Immediate(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4053 Immediate(1 << Map::kIsUndetectable)); in TryLiteralCompare() 4197 Immediate(1 << Map::kIsUndetectable)); in VisitCompareToNull()
|
D | code-stubs-x64.cc | 249 __ and_(rbx, Immediate(1 << Map::kIsUndetectable)); in Generate() 2645 Immediate(1 << Map::kIsUndetectable)); in Generate() 2648 Immediate(1 << Map::kIsUndetectable)); in Generate()
|
/external/v8/src/ |
D | objects.h | 3649 set_bit_field(bit_field() | (1 << kIsUndetectable)); in set_is_undetectable() 3653 return ((1 << kIsUndetectable) & bit_field()) != 0; in is_undetectable() 3888 static const int kIsUndetectable = 5; variable
|