/external/v8/test/cctest/ |
D | types-fuzz.h | 49 SignedSmall = Type::SignedSmall(region); in Types() 112 SignedFunction1 = Type::Function(SignedSmall, SignedSmall, region); in Types() 141 TypeHandle SignedSmall;
|
D | test-types.cc | 388 CHECK(!T.Constant(fac->NewNumber(-0x40000001))->Is(T.SignedSmall)); in Constant() 389 CHECK(!T.Constant(fac->NewNumber(-0x7fffffff - 1))->Is(T.SignedSmall)); in Constant() 394 CHECK(T.Constant(fac->NewNumber(-0x40000001))->Is(T.SignedSmall)); in Constant() 395 CHECK(T.Constant(fac->NewNumber(-0x7fffffff - 1))->Is(T.SignedSmall)); in Constant() 1002 CheckSub(T.SignedSmall, T.Number); in Is2() 1004 CheckSubOrEqual(T.SignedSmall, T.Signed32); in Is2() 1005 CheckUnordered(T.SignedSmall, T.MinusZero); in Is2() 1037 CheckSub(T.SmiConstant, T.SignedSmall); in Is2() 1333 CheckOverlap(T.SignedSmall, T.Number); in Maybe() 1357 CheckOverlap(T.SmiConstant, T.SignedSmall); in Maybe() [all …]
|
/external/v8/test/cctest/compiler/ |
D | test-js-constant-cache.cc | 78 CHECK(t->Is(Type::SignedSmall())); in TEST() 100 CHECK(!t->Is(Type::SignedSmall())); in TEST() 132 CHECK(t->Is(Type::SignedSmall())); in TEST() 157 CHECK(t->Is(Type::SignedSmall())); in TEST() 182 CHECK(t->Is(Type::SignedSmall())); in TEST()
|
D | test-js-typed-lowering.cc | 219 Type::Unsigned31(), Type::SignedSmall(), 226 Type::SignedSmall(), Type::Signed32(), Type::Unsigned32(), 359 Type::SignedSmall(), Type::UnsignedSmall(), Type::Negative32(), in TEST() 417 Type::SignedSmall(), Type::UnsignedSmall(), Type::Unsigned32(), in TEST() 870 Type* simple_number_types[] = {Type::UnsignedSmall(), Type::SignedSmall(), in TEST()
|
D | test-simplified-lowering.cc | 1384 TestingGraph t(Type::Any(), Type::Intersect(Type::SignedSmall(), in TEST() 1452 Type::Intersect(Type::SignedSmall(), Type::TaggedSigned(), z)); in TEST()
|
/external/v8/src/crankshaft/ |
D | typing.cc | 627 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone()))); in VisitCountOperation() 683 Type* lower = Type::Intersect(Type::SignedSmall(zone()), upper, zone()); in VisitBinaryOperation() 693 Bounds(Type::SignedSmall(zone()), Type::Signed32(zone()))); in VisitBinaryOperation() 701 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone()))); in VisitBinaryOperation() 714 Type::SignedSmall(zone()) : Type::None(zone()); in VisitBinaryOperation() 729 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone()))); in VisitBinaryOperation()
|
D | hydrogen-types.cc | 19 if (type->Is(T::SignedSmall())) return HType::Smi(); in FromType()
|
D | hydrogen.cc | 1964 if (type->Is(Type::SignedSmall())) { in BuildNumberToString() 10580 if (type->Is(Type::SignedSmall())) return Representation::Smi(); in RepresentationFor() 10841 if (expected->Is(Type::SignedSmall())) { in EnforceNumberType()
|
/external/v8/test/unittests/compiler/ |
D | js-builtin-reducer-unittest.cc | 62 Type::Unsigned31(), Type::SignedSmall(), 73 Type::SignedSmall(), Type::Signed32(), Type::Unsigned32(),
|
D | change-lowering-unittest.cc | 129 Node* value = Parameter(Type::SignedSmall()); in TARGET_TEST_P()
|
/external/v8/src/compiler/ |
D | type-hint-analyzer.cc | 21 if (type->Is(Type::SignedSmall())) return BinaryOperationHints::kSignedSmall; in ToHint()
|
D | change-lowering.cc | 215 if (machine()->Is64() || value_type->Is(Type::SignedSmall())) { in ChangeFloat64ToTagged() 244 NodeProperties::GetType(value)->Is(Type::SignedSmall())) { in ChangeInt32ToTagged()
|
D | typer.cc | 1809 arg->Is(Type::SignedSmall()) ? Type::TaggedSigned() : Type::Tagged(); in TypeChangeInt32ToTagged()
|
/external/v8/src/ |
D | types.h | 358 static TypeImpl* SignedSmall() { in PROPER_BITSET_TYPE_LIST() 359 return BitsetType::New(BitsetType::SignedSmall()); in PROPER_BITSET_TYPE_LIST() 361 static TypeHandle SignedSmall(Region* region) { in SignedSmall() function 362 return BitsetType::New(BitsetType::SignedSmall(), region); in SignedSmall() 654 static bitset SignedSmall();
|
D | type-cache.h | 39 Type* const kSmi = CreateNative(Type::SignedSmall(), Type::TaggedSigned());
|
D | types-inl.h | 20 typename TypeImpl<Config>::bitset TypeImpl<Config>::BitsetType::SignedSmall() { in SignedSmall() function
|
D | interface-descriptors.cc | 13 return Type::Intersect(Type::SignedSmall(), Type::TaggedSigned(), zone); in SmiType()
|
D | code-stubs-hydrogen.cc | 1552 Push(BuildNumberToString(input, Type::SignedSmall())); in BuildToString()
|
/external/v8/src/ic/ |
D | ic-state.cc | 328 return Type::SignedSmall(); in KindToType() 378 return Type::SignedSmall(zone); in StateToType()
|