Lines Matching defs:PendingOperand
450 class PendingOperand : public InstructionOperand {
452 PendingOperand() : InstructionOperand(PENDING) {}
453 explicit PendingOperand(PendingOperand* next_operand) : PendingOperand() {
457 void set_next(PendingOperand* next) {
466 PendingOperand* next() const {
469 return reinterpret_cast<PendingOperand*>(shifted_value << kPointerShift);
472 static PendingOperand* New(Zone* zone, PendingOperand* previous_operand) {
473 return InstructionOperand::New(zone, PendingOperand(previous_operand));
476 INSTRUCTION_OPERAND_CASTS(PendingOperand, PENDING)