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

Unified Diff: src/builtins.h

Issue 2147043002: Cleanup interface descriptors to reflect that vectors are part of stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@rename-store-ic
Patch Set: fix Created 4 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/builtins.h
diff --git a/src/builtins.h b/src/builtins.h
index 7289a4061debc2fcb988d3774c1e326cc0b0d831..049f1c0ff13511a73488a227fd714fa363d78cb1 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -372,9 +372,9 @@ class CodeStubAssembler;
LoadGlobalWithVector) \
V(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector) \
V(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector) \
- V(StoreIC_Miss, BUILTIN, kNoExtraICState, VectorStoreIC) \
- V(StoreIC_SlowSloppy, HANDLER, Code::STORE_IC, VectorStoreIC) \
- V(StoreIC_SlowStrict, HANDLER, Code::STORE_IC, VectorStoreIC)
+ V(StoreIC_Miss, BUILTIN, kNoExtraICState, StoreWithVector) \
+ V(StoreIC_SlowSloppy, HANDLER, Code::STORE_IC, StoreWithVector) \
+ V(StoreIC_SlowStrict, HANDLER, Code::STORE_IC, StoreWithVector)
// Define list of builtin handlers implemented in assembly.
#define BUILTIN_LIST_H(V) \

Powered by Google App Engine
This is Rietveld 408576698