Home | History | Annotate | Download | only in ia32

Lines Matching refs:stub

1134 void MacroAssembler::CallStub(CodeStub* stub) {
1136 call(stub->GetCode(), RelocInfo::CODE_TARGET);
1140 MaybeObject* MacroAssembler::TryCallStub(CodeStub* stub) {
1143 { MaybeObject* maybe_result = stub->TryGetCode();
1151 void MacroAssembler::TailCallStub(CodeStub* stub) {
1153 jmp(stub->GetCode(), RelocInfo::CODE_TARGET);
1157 MaybeObject* MacroAssembler::TryTailCallStub(CodeStub* stub) {
1160 { MaybeObject* maybe_result = stub->TryGetCode();
1247 // Since we did not call the stub, there was no allocation failure.
1268 CEntryStub stub(1);
1269 CallStub(&stub);
1443 // Set the entry point and jump to the C entry runtime stub.
1452 // Set the entry point and jump to the C entry runtime stub.
1885 // Disable stub call restrictions to always allow calls to abort.