Home
last modified time | relevance | path

Searched refs:heap_ref (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dtypes.h545 static HeapConstantType* New(const HeapObjectRef& heap_ref, Zone* zone) { in NON_EXPORTED_BASE()
546 DCHECK(!heap_ref.IsHeapNumber()); in NON_EXPORTED_BASE()
547 DCHECK_IMPLIES(heap_ref.IsString(), heap_ref.IsInternalizedString()); in NON_EXPORTED_BASE()
548 BitsetType::bitset bitset = BitsetType::Lub(heap_ref.type()); in NON_EXPORTED_BASE()
550 HeapConstantType(bitset, heap_ref); in NON_EXPORTED_BASE()
553 HeapConstantType(BitsetType::bitset bitset, const HeapObjectRef& heap_ref); in NON_EXPORTED_BASE()
Dtypes.cc464 const HeapObjectRef& heap_ref) in HeapConstantType() argument
465 : TypeBase(kHeapConstant), bitset_(bitset), heap_ref_(heap_ref) {} in HeapConstantType()