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

Side by Side Diff: src/compiler/operator.h

Issue 928213003: Model exceptional edges from call nodes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 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 | « src/compiler/opcodes.h ('k') | src/compiler/operator-properties.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPERATOR_H_ 5 #ifndef V8_COMPILER_OPERATOR_H_
6 #define V8_COMPILER_OPERATOR_H_ 6 #define V8_COMPILER_OPERATOR_H_
7 7
8 #include <ostream> // NOLINT(readability/streams) 8 #include <ostream> // NOLINT(readability/streams)
9 9
10 #include "src/base/flags.h" 10 #include "src/base/flags.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 // TODO(titzer): convert return values here to size_t. 91 // TODO(titzer): convert return values here to size_t.
92 int ValueInputCount() const { return value_in_; } 92 int ValueInputCount() const { return value_in_; }
93 int EffectInputCount() const { return effect_in_; } 93 int EffectInputCount() const { return effect_in_; }
94 int ControlInputCount() const { return control_in_; } 94 int ControlInputCount() const { return control_in_; }
95 95
96 int ValueOutputCount() const { return value_out_; } 96 int ValueOutputCount() const { return value_out_; }
97 int EffectOutputCount() const { return effect_out_; } 97 int EffectOutputCount() const { return effect_out_; }
98 int ControlOutputCount() const { return control_out_; } 98 int ControlOutputCount() const { return control_out_; }
99 99
100 static size_t ZeroIfNoThrow(Properties properties) {
101 return (properties & kNoThrow) == kNoThrow ? 0 : 2;
102 }
103
100 static size_t ZeroIfPure(Properties properties) { 104 static size_t ZeroIfPure(Properties properties) {
101 return (properties & kPure) == kPure ? 0 : 1; 105 return (properties & kPure) == kPure ? 0 : 1;
102 } 106 }
103 107
104 // TODO(titzer): API for input and output types, for typechecking graph. 108 // TODO(titzer): API for input and output types, for typechecking graph.
105 protected: 109 protected:
106 // Print the full operator into the given stream, including any 110 // Print the full operator into the given stream, including any
107 // static parameters. Useful for debugging and visualizing the IR. 111 // static parameters. Useful for debugging and visualizing the IR.
108 virtual void PrintTo(std::ostream& os) const; 112 virtual void PrintTo(std::ostream& os) const;
109 friend std::ostream& operator<<(std::ostream& os, const Operator& op); 113 friend std::ostream& operator<<(std::ostream& os, const Operator& op);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 return reinterpret_cast<const Operator1<double, base::bit_equal_to<double>, 194 return reinterpret_cast<const Operator1<double, base::bit_equal_to<double>,
191 base::bit_hash<double>>*>(op) 195 base::bit_hash<double>>*>(op)
192 ->parameter(); 196 ->parameter();
193 } 197 }
194 198
195 } // namespace compiler 199 } // namespace compiler
196 } // namespace internal 200 } // namespace internal
197 } // namespace v8 201 } // namespace v8
198 202
199 #endif // V8_COMPILER_OPERATOR_H_ 203 #endif // V8_COMPILER_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698