Home
last modified time | relevance | path

Searched refs:kIsUndetectable (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/arm/
Dfull-codegen-arm.cc2463 __ 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()
Dlithium-codegen-arm.cc1650 __ 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()
Dcode-stubs-arm.cc1417 __ 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/
Dfull-codegen-ia32.cc2387 __ 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()
Dlithium-codegen-ia32.cc1521 __ 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()
Dcode-stubs-ia32.cc259 1 << Map::kIsUndetectable); in Generate()
3704 1 << Map::kIsUndetectable); in Generate()
3707 1 << Map::kIsUndetectable); in Generate()
/external/v8/src/x64/
Dlithium-codegen-x64.cc1538 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()
Dfull-codegen-x64.cc2362 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()
Dcode-stubs-x64.cc249 __ 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/
Dobjects.h3649 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