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

Unified Diff: src/code-stubs.cc

Issue 1238143002: [stubs] Optimize LoadGlobalViaContextStub and StoreGlobalViaContextStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ia32 port. small x64 beautification. Created 5 years, 5 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:
View side-by-side diff with in-line comments
Download patch
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 3b41f9e60934eef6adef9df64667bcc41ea9c939..813869ba3609d2d9c5a5d89072ac2e49ba84f7ca 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -724,20 +724,6 @@ void RegExpConstructResultStub::InitializeDescriptor(
}
-void LoadGlobalViaContextStub::InitializeDescriptor(
- CodeStubDescriptor* descriptor) {
- // Must never deoptimize.
- descriptor->Initialize(FUNCTION_ADDR(UnexpectedStubMiss));
-}
-
-
-void StoreGlobalViaContextStub::InitializeDescriptor(
- CodeStubDescriptor* descriptor) {
- // Must never deoptimize.
- descriptor->Initialize(FUNCTION_ADDR(UnexpectedStubMiss));
-}
-
-
void TransitionElementsKindStub::InitializeDescriptor(
CodeStubDescriptor* descriptor) {
descriptor->Initialize(

Powered by Google App Engine
This is Rietveld 408576698