Searched refs:CheckIfParameters (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | simplified-operator.h | 166 class CheckIfParameters final { 168 explicit CheckIfParameters(DeoptimizeReason reason, in CheckIfParameters() function 180 bool operator==(CheckIfParameters const&, CheckIfParameters const&); 182 size_t hash_value(CheckIfParameters const&); 184 std::ostream& operator<<(std::ostream&, CheckIfParameters const&); 186 CheckIfParameters const& CheckIfParametersOf(Operator const*)
|
D | simplified-operator.cc | 856 struct CheckIfOperator final : public Operator1<CheckIfParameters> { 858 : Operator1<CheckIfParameters>( in CheckIfOperator() 861 CheckIfParameters(kDeoptimizeReason, VectorSlotPair())) {} in CheckIfOperator() 1179 return new (zone()) Operator1<CheckIfParameters>( in CheckIf() 1181 1, 1, 1, 0, 1, 0, CheckIfParameters(reason, feedback)); in CheckIf() 1447 bool operator==(CheckIfParameters const& lhs, CheckIfParameters const& rhs) { in operator ==() 1451 size_t hash_value(CheckIfParameters const& p) { in hash_value() 1455 std::ostream& operator<<(std::ostream& os, CheckIfParameters const& p) { in operator <<() 1459 CheckIfParameters const& CheckIfParametersOf(Operator const* op) { in CheckIfParametersOf() 1461 return OpParameter<CheckIfParameters>(op); in CheckIfParametersOf()
|
D | effect-control-linearizer.cc | 1543 const CheckIfParameters& p = CheckIfParametersOf(node->op()); in LowerCheckIf()
|