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

Side by Side Diff: src/compiler/bytecode-graph-builder.h

Issue 1678103004: [interpreter] Thread through language mode some more. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
7 7
8 #include "src/compiler.h" 8 #include "src/compiler.h"
9 #include "src/compiler/bytecode-branch-analysis.h" 9 #include "src/compiler/bytecode-branch-analysis.h"
10 #include "src/compiler/js-graph.h" 10 #include "src/compiler/js-graph.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Node* ProcessCallRuntimeArguments(const Operator* call_runtime_op, 115 Node* ProcessCallRuntimeArguments(const Operator* call_runtime_op,
116 interpreter::Register first_arg, 116 interpreter::Register first_arg,
117 size_t arity); 117 size_t arity);
118 118
119 void BuildCreateLiteral(const Operator* op); 119 void BuildCreateLiteral(const Operator* op);
120 void BuildCreateRegExpLiteral(); 120 void BuildCreateRegExpLiteral();
121 void BuildCreateArrayLiteral(); 121 void BuildCreateArrayLiteral();
122 void BuildCreateObjectLiteral(); 122 void BuildCreateObjectLiteral();
123 void BuildCreateArguments(CreateArgumentsType type); 123 void BuildCreateArguments(CreateArgumentsType type);
124 void BuildLoadGlobal(TypeofMode typeof_mode); 124 void BuildLoadGlobal(TypeofMode typeof_mode);
125 void BuildStoreGlobal(); 125 void BuildStoreGlobal(LanguageMode language_mode);
126 void BuildNamedLoad(); 126 void BuildNamedLoad();
127 void BuildKeyedLoad(); 127 void BuildKeyedLoad();
128 void BuildNamedStore(); 128 void BuildNamedStore(LanguageMode language_mode);
129 void BuildKeyedStore(); 129 void BuildKeyedStore(LanguageMode language_mode);
130 void BuildLdaLookupSlot(TypeofMode typeof_mode); 130 void BuildLdaLookupSlot(TypeofMode typeof_mode);
131 void BuildStaLookupSlot(LanguageMode language_mode); 131 void BuildStaLookupSlot(LanguageMode language_mode);
132 void BuildCall(); 132 void BuildCall();
133 void BuildCallJSRuntime(); 133 void BuildCallJSRuntime();
134 void BuildCallRuntime(); 134 void BuildCallRuntime();
135 void BuildCallRuntimeForPair(); 135 void BuildCallRuntimeForPair();
136 void BuildCallConstruct(); 136 void BuildCallConstruct();
137 void BuildThrow(); 137 void BuildThrow();
138 void BuildBinaryOp(const Operator* op); 138 void BuildBinaryOp(const Operator* op);
139 void BuildCompareOp(const Operator* op); 139 void BuildCompareOp(const Operator* op);
140 void BuildDelete(); 140 void BuildDelete(LanguageMode language_mode);
141 void BuildCastOperator(const Operator* op); 141 void BuildCastOperator(const Operator* op);
142 void BuildForInPrepare(); 142 void BuildForInPrepare();
143 void BuildForInNext(); 143 void BuildForInNext();
144 144
145 // Control flow plumbing. 145 // Control flow plumbing.
146 void BuildJump(); 146 void BuildJump();
147 void BuildConditionalJump(Node* condition); 147 void BuildConditionalJump(Node* condition);
148 void BuildJumpIfEqual(Node* comperand); 148 void BuildJumpIfEqual(Node* comperand);
149 void BuildJumpIfToBooleanEqual(Node* boolean_comperand); 149 void BuildJumpIfToBooleanEqual(Node* boolean_comperand);
150 150
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 ZoneVector<Node*> exit_controls_; 253 ZoneVector<Node*> exit_controls_;
254 254
255 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); 255 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder);
256 }; 256 };
257 257
258 } // namespace compiler 258 } // namespace compiler
259 } // namespace internal 259 } // namespace internal
260 } // namespace v8 260 } // namespace v8
261 261
262 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 262 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698