Home
last modified time | relevance | path

Searched refs:oddball_type (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Djs-graph.cc55 OddballType oddball_type = in Constant() local
56 ref.AsHeapObject().GetHeapObjectType().oddball_type(); in Constant()
57 if (oddball_type == OddballType::kUndefined) { in Constant()
60 } else if (oddball_type == OddballType::kNull) { in Constant()
63 } else if (oddball_type == OddballType::kHole) { in Constant()
66 } else if (oddball_type == OddballType::kBoolean) { in Constant()
Djs-context-specialization.cc184 OddballType oddball_type = maybe_value->AsHeapObject().map().oddball_type(); in ReduceJSLoadContext() local
185 if (oddball_type == OddballType::kUndefined || in ReduceJSLoadContext()
186 oddball_type == OddballType::kHole) { in ReduceJSLoadContext()
Dheap-refs.h303 OddballType oddball_type)
305 oddball_type_(oddball_type),
308 oddball_type != OddballType::kNone);
311 OddballType oddball_type() const { return oddball_type_; }
700 OddballType oddball_type() const;
Dheap-refs.cc1101 while (prototype_map.oddball_type() != OddballType::kNull) { in HasOnlyStablePrototypesWithFastElements()
1150 OddballType MapRef::oddball_type() const { in oddball_type() function in v8::internal::compiler::MapRef
1758 OddballType type = AsHeapObject().map().oddball_type(); in IsNullOrUndefined()
1764 AsHeapObject().map().oddball_type() == OddballType::kHole; in IsTheHole()
1776 OddballType type = AsHeapObject().map().oddball_type(); in OddballToNumber()
1987 return HeapObjectType(map().instance_type(), flags, map().oddball_type()); in GetHeapObjectType()
Djs-native-context-specialization.cc552 if (map.oddball_type() == OddballType::kNull) { in InferHasInPrototypeChain()
783 property_cell_value.AsHeapObject().map().oddball_type() == in ReduceGlobalAccess()
867 property_cell_value.AsHeapObject().map().oddball_type() != in ReduceGlobalAccess()
1864 if (receiver_ref.map().oddball_type() == OddballType::kHole || in ReduceElementLoadFromHeapConstant()
1865 receiver_ref.map().oddball_type() == OddballType::kNull || in ReduceElementLoadFromHeapConstant()
1866 receiver_ref.map().oddball_type() == OddballType::kUndefined || in ReduceElementLoadFromHeapConstant()
Dnode-properties.cc569 OddballType type = value.map().oddball_type(); in CanBeNullOrUndefined()
Djs-create-lowering.cc1334 if (prototype.map().oddball_type() == OddballType::kNull) { in GetObjectCreateMap()
1361 DCHECK_EQ(prototype_const.map().oddball_type(), OddballType::kNull); in ReduceJSCreateObject()
Dtypes.cc168 switch (map.oddball_type()) { in Lub()
Dcompilation-dependencies.cc1280 CHECK_EQ(proto.map().oddball_type(), OddballType::kNull); in DependOnStablePrototypeChain()