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

Unified Diff: src/builtins/builtins-ic.cc

Issue 2752143004: [refactor] Separate generated builtins and C++ builtins into separate files (Closed)
Patch Set: tentative gcmole fix Created 3 years, 9 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
« no previous file with comments | « src/builtins/builtins-handler-gen.cc ('k') | src/builtins/builtins-ic-gen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-ic.cc
diff --git a/src/builtins/builtins-ic.cc b/src/builtins/builtins-ic.cc
deleted file mode 100644
index 1b474b2c438cf68b678b3c0f2be8eb93ef2cda9a..0000000000000000000000000000000000000000
--- a/src/builtins/builtins-ic.cc
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "src/builtins/builtins-utils.h"
-#include "src/builtins/builtins.h"
-#include "src/ic/accessor-assembler.h"
-#include "src/objects-inl.h"
-
-namespace v8 {
-namespace internal {
-
-#define IC_BUILTIN(Name) \
- void Builtins::Generate_##Name(compiler::CodeAssemblerState* state) { \
- AccessorAssembler assembler(state); \
- assembler.Generate##Name(); \
- }
-
-#define IC_BUILTIN_PARAM(BuiltinName, GeneratorName, parameter) \
- void Builtins::Generate_##BuiltinName(compiler::CodeAssemblerState* state) { \
- AccessorAssembler assembler(state); \
- assembler.Generate##GeneratorName(parameter); \
- }
-
-IC_BUILTIN(LoadIC)
-IC_BUILTIN(LoadIC_Noninlined)
-IC_BUILTIN(LoadIC_Uninitialized)
-IC_BUILTIN(KeyedLoadIC)
-IC_BUILTIN(LoadICTrampoline)
-IC_BUILTIN(LoadField)
-IC_BUILTIN(KeyedLoadICTrampoline)
-IC_BUILTIN(KeyedLoadIC_Megamorphic)
-
-IC_BUILTIN_PARAM(StoreIC, StoreIC, SLOPPY)
-IC_BUILTIN_PARAM(StoreICTrampoline, StoreICTrampoline, SLOPPY)
-IC_BUILTIN_PARAM(StoreICStrict, StoreIC, STRICT)
-IC_BUILTIN_PARAM(StoreICStrictTrampoline, StoreICTrampoline, STRICT)
-IC_BUILTIN_PARAM(KeyedStoreIC, KeyedStoreIC, SLOPPY)
-IC_BUILTIN_PARAM(KeyedStoreICTrampoline, KeyedStoreICTrampoline, SLOPPY)
-IC_BUILTIN_PARAM(KeyedStoreICStrict, KeyedStoreIC, STRICT)
-IC_BUILTIN_PARAM(KeyedStoreICStrictTrampoline, KeyedStoreICTrampoline, STRICT)
-IC_BUILTIN_PARAM(LoadGlobalIC, LoadGlobalIC, NOT_INSIDE_TYPEOF)
-IC_BUILTIN_PARAM(LoadGlobalICInsideTypeof, LoadGlobalIC, INSIDE_TYPEOF)
-IC_BUILTIN_PARAM(LoadGlobalICTrampoline, LoadGlobalICTrampoline,
- NOT_INSIDE_TYPEOF)
-IC_BUILTIN_PARAM(LoadGlobalICInsideTypeofTrampoline, LoadGlobalICTrampoline,
- INSIDE_TYPEOF)
-IC_BUILTIN_PARAM(LoadICProtoArray, LoadICProtoArray, false)
-IC_BUILTIN_PARAM(LoadICProtoArrayThrowIfNonexistent, LoadICProtoArray, true)
-
-} // namespace internal
-} // namespace v8
« no previous file with comments | « src/builtins/builtins-handler-gen.cc ('k') | src/builtins/builtins-ic-gen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698