Home | History | Annotate | Download | only in x87

Lines Matching refs:IsCallBits

170         bit_field_(IsCallBits::encode(false)) {
217 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); }
218 bool IsCall() const { return IsCallBits::decode(bit_field_); }
264 class IsCallBits: public BitField<bool, 0, 1> {};
265 class IsSyntacticTailCallBits : public BitField<bool, IsCallBits::kNext, 1> {