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

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

Issue 1494973002: [turbofan] Introduce ToBooleanHints on ToBoolean operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/base/flags.h ('k') | src/compiler/ast-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_AST_GRAPH_BUILDER_H_ 5 #ifndef V8_COMPILER_AST_GRAPH_BUILDER_H_
6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_ 6 #define V8_COMPILER_AST_GRAPH_BUILDER_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/compiler/js-graph.h" 9 #include "src/compiler/js-graph.h"
10 #include "src/compiler/liveness-analyzer.h" 10 #include "src/compiler/liveness-analyzer.h"
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 // Builders for accessing the function context. 314 // Builders for accessing the function context.
315 Node* BuildLoadGlobalObject(); 315 Node* BuildLoadGlobalObject();
316 Node* BuildLoadNativeContextField(int index); 316 Node* BuildLoadNativeContextField(int index);
317 Node* BuildLoadFeedbackVector(); 317 Node* BuildLoadFeedbackVector();
318 318
319 // Builder for accessing a (potentially immutable) object field. 319 // Builder for accessing a (potentially immutable) object field.
320 Node* BuildLoadObjectField(Node* object, int offset); 320 Node* BuildLoadObjectField(Node* object, int offset);
321 Node* BuildLoadImmutableObjectField(Node* object, int offset); 321 Node* BuildLoadImmutableObjectField(Node* object, int offset);
322 322
323 // Builders for automatic type conversion. 323 // Builders for automatic type conversion.
324 Node* BuildToBoolean(Node* input); 324 Node* BuildToBoolean(Node* input, TypeFeedbackId feedback_id);
325 Node* BuildToName(Node* input, BailoutId bailout_id); 325 Node* BuildToName(Node* input, BailoutId bailout_id);
326 Node* BuildToObject(Node* input, BailoutId bailout_id); 326 Node* BuildToObject(Node* input, BailoutId bailout_id);
327 327
328 // Builder for adding the [[HomeObject]] to a value if the value came from a 328 // Builder for adding the [[HomeObject]] to a value if the value came from a
329 // function literal and needs a home object. Do nothing otherwise. 329 // function literal and needs a home object. Do nothing otherwise.
330 Node* BuildSetHomeObject(Node* value, Node* home_object, 330 Node* BuildSetHomeObject(Node* value, Node* home_object,
331 ObjectLiteralProperty* property, 331 ObjectLiteralProperty* property,
332 int slot_number = 0); 332 int slot_number = 0);
333 333
334 // Builders for error reporting at runtime. 334 // Builders for error reporting at runtime.
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 581
582 // Prepare environment to be used as loop header. 582 // Prepare environment to be used as loop header.
583 void PrepareForLoop(BitVector* assigned, bool is_osr = false); 583 void PrepareForLoop(BitVector* assigned, bool is_osr = false);
584 }; 584 };
585 585
586 } // namespace compiler 586 } // namespace compiler
587 } // namespace internal 587 } // namespace internal
588 } // namespace v8 588 } // namespace v8
589 589
590 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_ 590 #endif // V8_COMPILER_AST_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « src/base/flags.h ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698