Home | History | Annotate | Download | only in src

Lines Matching refs:op

168 void LPointerMap::RecordPointer(LOperand* op) {
170 if (op->IsStackSlot() && op->index() < 0) return;
171 ASSERT(!op->IsDoubleRegister() && !op->IsDoubleStackSlot());
172 pointer_operands_.Add(op);
176 void LPointerMap::RemovePointer(LOperand* op) {
178 if (op->IsStackSlot() && op->index() < 0) return;
179 ASSERT(!op->IsDoubleRegister() && !op->IsDoubleStackSlot());
181 if (pointer_operands_[i]->Equals(op)) {
189 void LPointerMap::RecordUntagged(LOperand* op) {
191 if (op->IsStackSlot() && op->index() < 0) return;
192 ASSERT(!op->IsDoubleRegister() && !op->IsDoubleStackSlot());
193 untagged_operands_.Add(op);