HomeSort by relevance Sort by last modified time
    Searched refs:SignedSmall (Results 1 - 19 of 19) sorted by null

  /external/v8/src/crankshaft/
hydrogen-types.cc 19 if (type->Is(T::SignedSmall())) return HType::Smi();
typing.cc 627 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone())));
683 Type* lower = Type::Intersect(Type::SignedSmall(zone()), upper, zone());
693 Bounds(Type::SignedSmall(zone()), Type::Signed32(zone())));
701 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone())));
714 Type::SignedSmall(zone()) : Type::None(zone());
729 NarrowType(expr, Bounds(Type::SignedSmall(zone()), Type::Number(zone())));
hydrogen.cc     [all...]
  /external/v8/test/cctest/
types-fuzz.h 49 SignedSmall = Type::SignedSmall(region);
112 SignedFunction1 = Type::Function(SignedSmall, SignedSmall, region);
141 TypeHandle SignedSmall;
test-types.cc 388 CHECK(!T.Constant(fac->NewNumber(-0x40000001))->Is(T.SignedSmall));
389 CHECK(!T.Constant(fac->NewNumber(-0x7fffffff - 1))->Is(T.SignedSmall));
394 CHECK(T.Constant(fac->NewNumber(-0x40000001))->Is(T.SignedSmall));
395 CHECK(T.Constant(fac->NewNumber(-0x7fffffff - 1))->Is(T.SignedSmall));
    [all...]
  /external/v8/src/compiler/
type-hint-analyzer.cc 21 if (type->Is(Type::SignedSmall())) return BinaryOperationHints::kSignedSmall;
change-lowering.cc 215 if (machine()->Is64() || value_type->Is(Type::SignedSmall())) {
244 NodeProperties::GetType(value)->Is(Type::SignedSmall())) {
typer.cc     [all...]
  /external/v8/test/unittests/compiler/
js-builtin-reducer-unittest.cc 62 Type::Unsigned31(), Type::SignedSmall(),
73 Type::SignedSmall(), Type::Signed32(), Type::Unsigned32(),
change-lowering-unittest.cc 129 Node* value = Parameter(Type::SignedSmall());
  /external/v8/test/cctest/compiler/
test-js-constant-cache.cc 78 CHECK(t->Is(Type::SignedSmall()));
100 CHECK(!t->Is(Type::SignedSmall()));
132 CHECK(t->Is(Type::SignedSmall()));
157 CHECK(t->Is(Type::SignedSmall()));
182 CHECK(t->Is(Type::SignedSmall()));
test-js-typed-lowering.cc 219 Type::Unsigned31(), Type::SignedSmall(),
226 Type::SignedSmall(), Type::Signed32(), Type::Unsigned32(),
359 Type::SignedSmall(), Type::UnsignedSmall(), Type::Negative32(),
417 Type::SignedSmall(), Type::UnsignedSmall(), Type::Unsigned32(),
870 Type* simple_number_types[] = {Type::UnsignedSmall(), Type::SignedSmall(),
    [all...]
test-simplified-lowering.cc     [all...]
  /external/v8/src/
type-cache.h 39 Type* const kSmi = CreateNative(Type::SignedSmall(), Type::TaggedSigned());
types.h 91 // SignedSmall /\ TaggedInt (a 'smi')
115 // T->Is(SignedSmall())), and the latter to check whether a specific case needs
358 static TypeImpl* SignedSmall() {
359 return BitsetType::New(BitsetType::SignedSmall());
361 static TypeHandle SignedSmall(Region* region) {
362 return BitsetType::New(BitsetType::SignedSmall(), region);
654 static bitset SignedSmall();
    [all...]
types-inl.h 20 typename TypeImpl<Config>::bitset TypeImpl<Config>::BitsetType::SignedSmall() {
interface-descriptors.cc 13 return Type::Intersect(Type::SignedSmall(), Type::TaggedSigned(), zone);
code-stubs-hydrogen.cc     [all...]
  /external/v8/src/ic/
ic-state.cc 328 return Type::SignedSmall();
378 return Type::SignedSmall(zone);

Completed in 735 milliseconds