Lines Matching refs:stub
130 // The stub will rewrite receiever and parameter count if the previous
132 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
133 __ CallStub(&stub);
151 StackCheckStub stub;
153 Operand(reinterpret_cast<intptr_t>(stub.GetCode().location()),
1015 GenericBinaryOpStub stub(op, NO_OVERWRITE);
1016 __ CallStub(&stub);
1201 // Code common for calls using the call stub.
1209 CallFunctionStub stub(arg_count, NOT_IN_LOOP, RECEIVER_MIGHT_BE_VALUE);
1210 __ CallStub(&stub);
1475 GenericUnaryOpStub stub(Token::SUB, overwrite);
1479 __ CallStub(&stub);
1489 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
1493 // Avoid calling the stub for Smis.
1497 // Non-smi: call stub leaving result in accumulator register.
1498 __ CallStub(&stub);
1604 // Call stub. Undo operation first.
1608 GenericBinaryOpStub stub(Token::ADD, NO_OVERWRITE);
1609 __ CallStub(&stub);
1738 InstanceofStub stub;
1739 __ CallStub(&stub);
1741 __ b(eq, if_true); // The stub returns 0 for true.
1784 // The comparison stub expects the smi vs. smi case to be handled
1795 CompareStub stub(cc, strict);
1796 __ CallStub(&stub);