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

Side by Side Diff: src/compiler/code-assembler.h

Issue 2202163002: Revert of [builtins] implement Array.prototype.includes in TurboFan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 | « src/code-stubs.cc ('k') | src/compiler/code-assembler.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_CODE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 239
240 void DebugBreak(); 240 void DebugBreak();
241 void Comment(const char* format, ...); 241 void Comment(const char* format, ...);
242 242
243 void Bind(Label* label); 243 void Bind(Label* label);
244 void Goto(Label* label); 244 void Goto(Label* label);
245 void GotoIf(Node* condition, Label* true_label); 245 void GotoIf(Node* condition, Label* true_label);
246 void GotoUnless(Node* condition, Label* false_label); 246 void GotoUnless(Node* condition, Label* false_label);
247 void Branch(Node* condition, Label* true_label, Label* false_label); 247 void Branch(Node* condition, Label* true_label, Label* false_label);
248 248
249 void Switch(Node* index, Label* default_label, const int32_t* case_values, 249 void Switch(Node* index, Label* default_label, int32_t* case_values,
250 Label** case_labels, size_t case_count); 250 Label** case_labels, size_t case_count);
251 251
252 Node* Select(Node* condition, Node* true_value, Node* false_value, 252 Node* Select(Node* condition, Node* true_value, Node* false_value,
253 MachineRepresentation rep = MachineRepresentation::kTagged); 253 MachineRepresentation rep = MachineRepresentation::kTagged);
254 254
255 // Access to the frame pointer 255 // Access to the frame pointer
256 Node* LoadFramePointer(); 256 Node* LoadFramePointer();
257 Node* LoadParentFramePointer(); 257 Node* LoadParentFramePointer();
258 258
259 // Access to the stack pointer 259 // Access to the stack pointer
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 // Map of variables to the list of value nodes that have been added from each 491 // Map of variables to the list of value nodes that have been added from each
492 // merge path in their order of merging. 492 // merge path in their order of merging.
493 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 493 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
494 }; 494 };
495 495
496 } // namespace compiler 496 } // namespace compiler
497 } // namespace internal 497 } // namespace internal
498 } // namespace v8 498 } // namespace v8
499 499
500 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 500 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/code-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698