Lines Matching refs:stub
209 // If we are already generating a shared stub, not inlining the
214 RecordWriteStub stub(object, dst, value);
215 CallStub(&stub);
1085 void MacroAssembler::CallStub(CodeStub* stub) {
1087 call(stub->GetCode(), RelocInfo::CODE_TARGET);
1091 Object* MacroAssembler::TryCallStub(CodeStub* stub) {
1093 Object* result = stub->TryGetCode();
1101 void MacroAssembler::TailCallStub(CodeStub* stub) {
1103 jmp(stub->GetCode(), RelocInfo::CODE_TARGET);
1107 Object* MacroAssembler::TryTailCallStub(CodeStub* stub) {
1109 Object* result = stub->TryGetCode();
1167 CEntryStub stub(1);
1168 CallStub(&stub);
1176 // Since we did not call the stub, there was no allocation failure.
1271 // Set the entry point and jump to the C entry runtime stub.
1563 // Disable stub call restrictions to always allow calls to abort.