Searched refs:OpProperties (Results 1 – 1 of 1) sorted by relevance
180 class OpProperties {205 constexpr OpProperties operator|(const OpProperties& that) {206 return OpProperties(bitfield_ | that.bitfield_);209 static constexpr OpProperties Pure() { return OpProperties(kPureValue); } in Pure()210 static constexpr OpProperties Call() { in Call()211 return OpProperties(kIsCallBit::encode(true)); in Call()213 static constexpr OpProperties EagerDeopt() { in EagerDeopt()214 return OpProperties(kCanEagerDeoptBit::encode(true)); in EagerDeopt()216 static constexpr OpProperties LazyDeopt() { in LazyDeopt()217 return OpProperties(kCanLazyDeoptBit::encode(true)); in LazyDeopt()[all …]