Commit bc8eaed1 authored by Jakob Gruber's avatar Jakob Gruber Committed by Commit Bot

Remove unused InterruptCheck builtin

Change-Id: I77b811bbccbdb33028e03956342bd4aa2d68a087
Reviewed-on: https://chromium-review.googlesource.com/c/1456077Reviewed-by: 's avatarSimon Zünd <szuend@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#59397}
parent db0165ad
......@@ -97,10 +97,6 @@ namespace internal {
ASM(JSConstructEntryTrampoline, Dummy) \
ASM(ResumeGeneratorTrampoline, ResumeGenerator) \
\
/* Stack and interrupt check */ \
ASM(InterruptCheck, Dummy) \
ASM(StackCheck, Dummy) \
\
/* String helpers */ \
TFC(StringCharAt, StringAt, 1) \
TFC(StringCodePointAtUTF16, StringAt, 1) \
......@@ -1336,6 +1332,7 @@ namespace internal {
TFS(SubString, kString, kFrom, kTo) \
\
/* Miscellaneous */ \
ASM(StackCheck, Dummy) \
ASM(DoubleToI, Dummy) \
TFC(GetProperty, GetProperty, 1) \
TFS(SetProperty, kReceiver, kKey, kValue) \
......
......@@ -21,11 +21,7 @@ template <typename T>
using TNode = compiler::TNode<T>;
// -----------------------------------------------------------------------------
// Interrupt and stack checks.
void Builtins::Generate_InterruptCheck(MacroAssembler* masm) {
masm->TailCallRuntime(Runtime::kInterrupt);
}
// Stack checks.
void Builtins::Generate_StackCheck(MacroAssembler* masm) {
masm->TailCallRuntime(Runtime::kStackGuard);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment