Home
last modified time | relevance | path

Searched refs:is_bottom (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/wasm/
Dvalue-type.h87 CONSTEXPR_DCHECK(is_bottom() || is_valid()); in HeapType()
114 return !is_bottom() && representation_ >= kFirstSentinel; in is_generic()
119 constexpr bool is_bottom() const { return representation_ == kBottom; } in is_bottom() function
242 constexpr bool is_bottom() const { return kind() == kBottom; } in is_bottom() function
Dfunction-body-decoder-impl.h304 return heap_type.is_bottom() ? kWasmBottom in read_value_type()
328 return heap_type.is_bottom() ? kWasmBottom in read_value_type()
1555 if (!VALIDATE(!imm.type.is_bottom())) {
3624 if (!VALIDATE(rtt.type.is_rtt() || rtt.type.is_bottom())) {
3632 if (!VALIDATE(rtt.type.is_bottom() ||
3662 if (!VALIDATE(rtt.type.is_rtt() || rtt.type.is_bottom())) {
3670 if (!VALIDATE(rtt.type.is_bottom() ||
3737 if (!VALIDATE(rtt.type.is_rtt() || rtt.type.is_bottom())) {
3746 if (!VALIDATE(rtt.type.is_bottom() ||
3773 if (!VALIDATE(rtt.type.is_rtt() || rtt.type.is_bottom())) {
[all …]
Dmodule-decoder.cc1631 if (V8_UNLIKELY(imm.type.is_bottom())) { in Validate()