Home | History | Annotate | Download | only in x64

Lines Matching refs:IsCallBits

167         bit_field_(IsCallBits::encode(false)) {
214 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); }
215 bool IsCall() const { return IsCallBits::decode(bit_field_); }
261 class IsCallBits: public BitField<bool, 0, 1> {};
262 class IsSyntacticTailCallBits : public BitField<bool, IsCallBits::kNext, 1> {