Home | History | Annotate | Download | only in ia32

Lines Matching refs:stub

128       // The stub will rewrite receiver and parameter count if the previous
130 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
131 __ CallStub(&stub);
150 StackCheckStub stub;
151 __ CallStub(&stub);
531 // Emit the inlined tests assumed by the stub.
572 // Call the ToBoolean stub for all other cases.
573 ToBooleanStub stub;
575 __ CallStub(&stub);
578 // The stub returns nonzero for true. Complete based on the context.
1130 GenericBinaryOpStub stub(op,
1133 __ CallStub(&stub);
1315 // Code common for calls using the call stub.
1323 CallFunctionStub stub(arg_count, NOT_IN_LOOP, RECEIVER_MIGHT_BE_VALUE);
1324 __ CallStub(&stub);
1597 GenericUnaryOpStub stub(Token::SUB, overwrite);
1601 __ CallStub(&stub);
1611 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
1615 // Avoid calling the stub for Smis.
1619 // Non-smi: call stub leaving result in accumulator register.
1620 __ CallStub(&stub);
1731 // Call stub. Undo operation first.
1738 // Call stub for +1/-1.
1739 GenericBinaryOpStub stub(expr->binary_op(),
1742 stub.GenerateCall(masm(), eax, Smi::FromInt(1));
1876 InstanceofStub stub;
1877 __ CallStub(&stub);
1879 __ j(zero, if_true); // The stub returns 0 for true.
1922 // The comparison stub expects the smi vs. smi case to be handled
1934 CompareStub stub(cc, strict);
1935 __ CallStub(&stub);