Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1312)

Unified Diff: test/cctest/test-api.cc

Side-by-side diff isn't available for this file because of its large size.
Issue 2608893002: [builtins] Move LoadGlobalICStub to builtins (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « src/ic/ic-state.h ('k') | test/cctest/test-code-stub-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 9acdb17fe3b75a725448bb22176935b31e7f792a..dd9d0ebd1afec84f8cd45b34785f7a7f563fe561 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -22161,13 +22161,9 @@ void Recompile(Args... args) {
}
void RecompileICStubs(i::Isolate* isolate) {
- using namespace i;
- Recompile<LoadGlobalICStub>(isolate, LoadGlobalICState(NOT_INSIDE_TYPEOF));
- Recompile<LoadGlobalICStub>(isolate, LoadGlobalICState(INSIDE_TYPEOF));
- Recompile<LoadGlobalICTrampolineStub>(isolate,
- LoadGlobalICState(NOT_INSIDE_TYPEOF));
- Recompile<LoadGlobalICTrampolineStub>(isolate,
- LoadGlobalICState(INSIDE_TYPEOF));
+ // BUG(5784): We had a list of IC stubs here to recompile. These are now
+ // builtins and we can't compile them again (easily). Bug 5784 tracks
+ // our progress in finding another way to do this.
}
} // namespace
« no previous file with comments | « src/ic/ic-state.h ('k') | test/cctest/test-code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698