Lines Matching full:stub
106 // Many of them call a code stub or a runtime function.
128 // specialized stub for add. The result is left in dst.
165 // Call the appropriate binary operation stub to compute src op value
334 FastNewContextStub stub(heap_slots);
335 context = frame_->CallStub(&stub, 1);
648 // Move value argument to eax as expected by the IC stub.
650 // Call the IC stub.
872 StackCheckStub stub;
873 __ CallStub(&stub);
2244 FastNewClosureStub stub;
2246 Result answer = frame_->CallStub(&stub, 1);
2515 FastCloneShallowArrayStub stub(length);
2516 clone = frame_->CallStub(&stub, 3);
2766 // Pass the global object as the receiver and let the IC stub
3079 GenericUnaryOpStub stub(Token::SUB, overwrite);
3081 Result answer = frame_->CallStub(&stub, &operand);
3096 GenericUnaryOpStub stub(Token::BIT_NOT, overwrite);
3097 Result answer = frame_->CallStub(&stub, &operand);
3135 // specialized add or subtract stub. The result is left in dst.
3168 // original value in old. Call the specialized add or subtract stub.
3582 InstanceofStub stub;
3583 Result answer = frame_->CallStub(&stub, 2);
3613 // Call the shared stub to get to arguments[key].
3614 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
3615 Result result = frame_->CallStub(&stub, &key, &count);
3738 // Call the shared stub to get to the arguments.length.
3739 ArgumentsAccessStub stub(ArgumentsAccessStub::READ_LENGTH);
3740 Result result = frame_->CallStub(&stub, &count);
3990 RegExpExecStub stub;
3991 Result result = frame_->CallStub(&stub, 4);
4031 StringAddStub stub(NO_STRING_ADD_FLAGS);
4032 Result answer = frame_->CallStub(&stub, 2);
4044 SubStringStub stub;
4045 Result answer = frame_->CallStub(&stub, 3);
4056 StringCompareStub stub;
4057 Result answer = frame_->CallStub(&stub, 2);
4351 // Call the stub for all other cases.
4353 ToBooleanStub stub;
4354 Result temp = frame_->CallStub(&stub, 1);
4877 ArgumentsAccessStub stub(ArgumentsAccessStub::NEW_OBJECT);
4881 Result result = frame_->CallStub(&stub, 3);
5006 // Here we split control flow to the stub call and inlined cases
5054 // Setup and call the compare stub.
5055 CompareStub stub(cc, strict);
5056 Result result = frame_->CallStub(&stub, &left_side, &right_side);
5117 // When non-smi, call out to the compare stub.
5118 CompareStub stub(cc, strict);
5119 Result answer = frame_->CallStub(&stub, &left_side, &right_side);
5125 // Here we split control flow to the stub call and inlined cases
5136 // When non-smi, call out to the compare stub.
5137 CompareStub stub(cc, strict);
5138 Result answer = frame_->CallStub(&stub, &left_side, &right_side);
5179 GenericBinaryOpStub stub(op_, mode_, NO_SMI_CODE_IN_STUB);
5180 stub.GenerateCall(masm_, left_, right_);
5245 GenericBinaryOpStub stub(op,
5249 answer = stub.GenerateCall(masm_, frame_, &left, &right);
5265 GenericBinaryOpStub stub(op,
5269 answer = stub.GenerateCall(masm_, frame_, &left, &right);
5393 GenericBinaryOpStub stub(
5397 stub.GenerateCall(masm_, src_, value_);
6778 // Return from the stub.
7393 // Use the shared code stub to call the function.
7398 // result of the stub invocation.
8099 // Stub classes have public member named masm, not masm_.
8354 // Call the stub.
8390 // Call the stub.
8425 // Call the stub.
8776 StringAddStub stub(NO_STRING_CHECK_IN_STUB);
8777 __ TailCallStub(&stub);