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

Unified Diff: src/builtins/builtins-forin.h

Issue 2760953002: [builtins] Move more files into v8_builtins_generators source set (Closed)
Patch Set: rebased 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-constructor-gen.cc ('k') | src/builtins/builtins-forin-gen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-forin.h
diff --git a/src/builtins/builtins-forin.h b/src/builtins/builtins-forin.h
deleted file mode 100644
index 3aeb0bee51c537cc50c2926d109cb7432f1abb90..0000000000000000000000000000000000000000
--- a/src/builtins/builtins-forin.h
+++ /dev/null
@@ -1,34 +0,0 @@
-
-// Copyright 2017 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/code-stub-assembler.h"
-
-namespace v8 {
-namespace internal {
-
-class ForInBuiltinsAssembler : public CodeStubAssembler {
- public:
- explicit ForInBuiltinsAssembler(compiler::CodeAssemblerState* state)
- : CodeStubAssembler(state) {}
-
- std::tuple<Node*, Node*, Node*> EmitForInPrepare(Node* object, Node* context,
- Label* call_runtime,
- Label* nothing_to_iterate);
-
- Node* ForInFilter(Node* key, Node* object, Node* context);
-
- private:
- // Get the enumerable length from |map| and return the result as a Smi.
- Node* EnumLength(Node* map);
- void CheckPrototypeEnumCache(Node* receiver, Node* map, Label* use_cache,
- Label* use_runtime);
- // Check the cache validity for |receiver|. Branch to |use_cache| if
- // the cache is valid, otherwise branch to |use_runtime|.
- void CheckEnumCache(Node* receiver, Label* use_cache,
- Label* nothing_to_iterate, Label* use_runtime);
-};
-
-} // namespace internal
-} // namespace v8
« no previous file with comments | « src/builtins/builtins-constructor-gen.cc ('k') | src/builtins/builtins-forin-gen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698