Home | History | Annotate | Download | only in x64

Lines Matching refs:stub

130       // The stub will rewrite receiver and parameter count if the previous
132 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
133 __ CallStub(&stub);
151 StackCheckStub stub;
152 __ CallStub(&stub);
533 // Emit the inlined tests assumed by the stub.
574 // Call the ToBoolean stub for all other cases.
575 ToBooleanStub stub;
577 __ CallStub(&stub);
580 // The stub returns nonzero for true. Complete based on the context.
1125 GenericBinaryOpStub stub(op,
1128 __ CallStub(&stub);
1312 // Code common for calls using the call stub.
1320 CallFunctionStub stub(arg_count, NOT_IN_LOOP, RECEIVER_MIGHT_BE_VALUE);
1321 __ CallStub(&stub);
1589 GenericUnaryOpStub stub(Token::SUB, overwrite);
1593 __ CallStub(&stub);
1603 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
1607 // Avoid calling the stub for Smis.
1611 // Non-smi: call stub leaving result in accumulator register.
1612 __ CallStub(&stub);
1718 // Call stub. Undo operation first.
1725 // Call stub for +1/-1.
1726 GenericBinaryOpStub stub(expr->binary_op(),
1729 stub.GenerateCall(masm_, rax, Smi::FromInt(1));
1862 InstanceofStub stub;
1863 __ CallStub(&stub);
1865 __ j(zero, if_true); // The stub returns 0 for true.
1908 // The comparison stub expects the smi vs. smi case to be handled
1917 CompareStub stub(cc, strict);
1918 __ CallStub(&stub);