Searched refs:IfExceptionHint (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/compiler/ |
D | common-operator.cc | 60 size_t hash_value(IfExceptionHint hint) { return static_cast<size_t>(hint); } in hash_value() 63 std::ostream& operator<<(std::ostream& os, IfExceptionHint hint) { in operator <<() 65 case IfExceptionHint::kLocallyCaught: in operator <<() 67 case IfExceptionHint::kLocallyUncaught: in operator <<() 273 template <IfExceptionHint kCaughtLocally> 274 struct IfExceptionOperator final : public Operator1<IfExceptionHint> { 276 : Operator1<IfExceptionHint>( // -- in IfExceptionOperator() 282 IfExceptionOperator<IfExceptionHint::kLocallyCaught> kIfExceptionCOperator; 283 IfExceptionOperator<IfExceptionHint::kLocallyUncaught> kIfExceptionUOperator; 503 const Operator* CommonOperatorBuilder::IfException(IfExceptionHint hint) { in IfException() [all …]
|
D | common-operator.h | 65 enum class IfExceptionHint { kLocallyUncaught, kLocallyCaught }; enum 67 size_t hash_value(IfExceptionHint hint); 69 std::ostream& operator<<(std::ostream&, IfExceptionHint); 134 const Operator* IfException(IfExceptionHint hint);
|
D | instruction-selector.cc | 1407 IfExceptionHint hint = OpParameter<IfExceptionHint>(handler->front()); in VisitCall() 1408 if (hint == IfExceptionHint::kLocallyCaught) { in VisitCall()
|
D | ast-graph-builder.cc | 4126 IfExceptionHint hint = try_catch_nesting_level_ > 0 in MakeNode() 4127 ? IfExceptionHint::kLocallyCaught in MakeNode() 4128 : IfExceptionHint::kLocallyUncaught; in MakeNode()
|
D | js-typed-lowering.cc | 363 IfExceptionHint hint = OpParameter<IfExceptionHint>(projections[1]); in ConvertBothInputsToNumber()
|
/external/v8/test/unittests/compiler/ |
D | common-operator-unittest.cc | 224 static const IfExceptionHint kIfExceptionHints[] = { in TEST_F() 225 IfExceptionHint::kLocallyCaught, IfExceptionHint::kLocallyUncaught}; in TEST_F() 226 TRACED_FOREACH(IfExceptionHint, hint, kIfExceptionHints) { in TEST_F()
|
D | node-properties-unittest.cc | 40 const IfExceptionHint kNoHint = IfExceptionHint::kLocallyCaught;
|
D | dead-code-elimination-unittest.cc | 127 IfExceptionHint const kHints[] = {IfExceptionHint::kLocallyCaught, in TEST_F() 128 IfExceptionHint::kLocallyUncaught}; in TEST_F() 129 TRACED_FOREACH(IfExceptionHint, hint, kHints) { in TEST_F()
|
D | tail-call-optimization-unittest.cc | 67 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F() 139 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
|
D | graph-reducer-unittest.cc | 286 const IfExceptionHint kNoHint = IfExceptionHint::kLocallyCaught;
|
D | loop-peeling-unittest.cc | 484 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
|
D | scheduler-unittest.cc | 1057 common()->IfException(IfExceptionHint::kLocallyUncaught), c1, c1); in TARGET_TEST_F() 1061 common()->IfException(IfExceptionHint::kLocallyUncaught), c2, c2); in TARGET_TEST_F()
|