Home | History | Annotate | Download | only in arm

Lines Matching refs:stub

528   RecordWriteStub stub(object, value, address, remembered_set_action, fp_mode);
529 CallStub(&stub);
566 // Call stub on end of buffer.
2128 void MacroAssembler::CallStub(CodeStub* stub, Condition cond) {
2129 ASSERT(AllowThisStubCall(stub)); // Stub calls are not allowed in some stubs.
2130 Call(stub->GetCode(), RelocInfo::CODE_TARGET, kNoASTId, cond);
2134 void MacroAssembler::TailCallStub(CodeStub* stub, Condition cond) {
2135 ASSERT(allow_stub_calls_ || stub->CompilingCallsToThisStubIsGCSafe());
2136 Jump(stub->GetCode(), RelocInfo::CODE_TARGET, cond);
2165 // Native call returns to the DirectCEntry stub which redirects to the
2167 // DirectCEntry stub itself is generated early and never moves.
2168 DirectCEntryStub stub;
2169 stub.GenerateCall(this, function);
2227 bool MacroAssembler::AllowThisStubCall(CodeStub* stub) {
2228 if (!has_frame_ && stub->SometimesSetsUpAFrame()) return false;
2229 return allow_stub_calls_ || stub->CompilingCallsToThisStubIsGCSafe();
2614 CEntryStub stub(1);
2615 CallStub(&stub);
2628 CEntryStub stub(1, kSaveFPRegs);
2629 CallStub(&stub);
2638 CEntryStub stub(1);
2639 CallStub(&stub);
2670 CEntryStub stub(1);
2671 Jump(stub.GetCode(), RelocInfo::CODE_TARGET);
2817 // Disable stub call restrictions to always allow calls to abort.