Home | History | Annotate | Download | only in src

Lines Matching refs:op

189   static LUnallocated* cast(LOperand* op) {
190 ASSERT(op->IsUnallocated());
191 return reinterpret_cast<LUnallocated*>(op);
262 static LConstantOperand* cast(LOperand* op) {
263 ASSERT(op->IsConstantOperand());
264 return reinterpret_cast<LConstantOperand*>(op);
282 static LArgument* cast(LOperand* op) {
283 ASSERT(op->IsArgument());
284 return reinterpret_cast<LArgument*>(op);
297 static LStackSlot* cast(LOperand* op) {
298 ASSERT(op->IsStackSlot());
299 return reinterpret_cast<LStackSlot*>(op);
321 static LDoubleStackSlot* cast(LOperand* op) {
322 ASSERT(op->IsStackSlot());
323 return reinterpret_cast<LDoubleStackSlot*>(op);
345 static LRegister* cast(LOperand* op) {
346 ASSERT(op->IsRegister());
347 return reinterpret_cast<LRegister*>(op);
369 static LDoubleRegister* cast(LOperand* op) {
370 ASSERT(op->IsDoubleRegister());
371 return reinterpret_cast<LDoubleRegister*>(op);
429 void RecordPointer(LOperand* op);
430 void RemovePointer(LOperand* op);
431 void RecordUntagged(LOperand* op);
559 op) {
560 return op == NULL || op->IsConstantOperand() || op->IsArgument();