Home
last modified time | relevance | path

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

/external/v8/test/cctest/compiler/
Dtest-js-constant-cache.cc79 CHECK(t->Is(Type::UnsignedSmall())); in TEST()
101 CHECK(!t->Is(Type::UnsignedSmall())); in TEST()
133 CHECK(t->Is(Type::UnsignedSmall())); in TEST()
158 CHECK(t->Is(Type::UnsignedSmall())); in TEST()
183 CHECK(t->Is(Type::UnsignedSmall())); in TEST()
Dtest-js-typed-lowering.cc218 static Type* kInt32Types[] = {Type::UnsignedSmall(), Type::Negative32(),
225 Type::UnsignedSmall(), Type::Negative32(), Type::Unsigned31(),
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()
/external/v8/test/unittests/compiler/
Djs-builtin-reducer-unittest.cc61 Type* const kIntegral32Types[] = {Type::UnsignedSmall(), Type::Negative32(),
72 Type::UnsignedSmall(), Type::Negative32(), Type::Unsigned31(),
Dchange-lowering-unittest.cc138 Node* value = Parameter(Type::UnsignedSmall()); in TARGET_TEST_P()
/external/v8/test/cctest/
Dtypes-fuzz.h50 UnsignedSmall = Type::UnsignedSmall(region); in Types()
142 TypeHandle UnsignedSmall; variable
Dtest-types.cc371 CHECK(T.Constant(fac->NewNumber(0))->Is(T.UnsignedSmall)); in Constant()
372 CHECK(T.Constant(fac->NewNumber(1))->Is(T.UnsignedSmall)); in Constant()
373 CHECK(T.Constant(fac->NewNumber(0x3fffffff))->Is(T.UnsignedSmall)); in Constant()
386 CHECK(!T.Constant(fac->NewNumber(0x40000000))->Is(T.UnsignedSmall)); in Constant()
387 CHECK(!T.Constant(fac->NewNumber(0x7fffffff))->Is(T.UnsignedSmall)); in Constant()
392 CHECK(T.Constant(fac->NewNumber(0x40000000))->Is(T.UnsignedSmall)); in Constant()
393 CHECK(T.Constant(fac->NewNumber(0x7fffffff))->Is(T.UnsignedSmall)); in Constant()
/external/v8/src/
Dtypes.h364 static TypeImpl* UnsignedSmall() { in UnsignedSmall() function
365 return BitsetType::New(BitsetType::UnsignedSmall()); in UnsignedSmall()
367 static TypeHandle UnsignedSmall(Region* region) { in UnsignedSmall() function
368 return BitsetType::New(BitsetType::UnsignedSmall(), region); in UnsignedSmall()
655 static bitset UnsignedSmall();
Dtypes-inl.h27 TypeImpl<Config>::BitsetType::UnsignedSmall() { in UnsignedSmall() function
/external/v8/src/compiler/
Dchange-lowering.cc399 if (NodeProperties::GetType(value)->Is(Type::UnsignedSmall())) { in ChangeUint32ToTagged()
Dverifier.cc610 CheckUpperIs(node, Type::UnsignedSmall()); in Check()