Searched refs:CheckIfParameters (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | simplified-operator.h | 270 class CheckIfParameters final { 272 explicit CheckIfParameters(DeoptimizeReason reason, in CheckIfParameters() function 284 bool operator==(CheckIfParameters const&, CheckIfParameters const&); 286 size_t hash_value(CheckIfParameters const&); 288 std::ostream& operator<<(std::ostream&, CheckIfParameters const&); 290 CheckIfParameters const& CheckIfParametersOf(Operator const*)
|
D | simplified-operator.cc | 921 struct CheckIfOperator final : public Operator1<CheckIfParameters> { 923 : Operator1<CheckIfParameters>( in CheckIfOperator() 926 CheckIfParameters(kDeoptimizeReason, FeedbackSource())) {} in CheckIfOperator() 1317 return zone()->New<Operator1<CheckIfParameters>>( in CheckIf() 1319 1, 1, 1, 0, 1, 0, CheckIfParameters(reason, feedback)); in CheckIf() 1671 bool operator==(CheckIfParameters const& lhs, CheckIfParameters const& rhs) { in operator ==() 1675 size_t hash_value(CheckIfParameters const& p) { in hash_value() 1680 std::ostream& operator<<(std::ostream& os, CheckIfParameters const& p) { in operator <<() 1684 CheckIfParameters const& CheckIfParametersOf(Operator const* op) { in CheckIfParametersOf() 1686 return OpParameter<CheckIfParameters>(op); in CheckIfParametersOf()
|
D | effect-control-linearizer.cc | 2070 const CheckIfParameters& p = CheckIfParametersOf(node->op()); in LowerCheckIf()
|