Home
last modified time | relevance | path

Searched refs:IfExceptionHint (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Dcommon-operator.cc60 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 …]
Dcommon-operator.h65 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);
Dinstruction-selector.cc1407 IfExceptionHint hint = OpParameter<IfExceptionHint>(handler->front()); in VisitCall()
1408 if (hint == IfExceptionHint::kLocallyCaught) { in VisitCall()
Dast-graph-builder.cc4126 IfExceptionHint hint = try_catch_nesting_level_ > 0 in MakeNode()
4127 ? IfExceptionHint::kLocallyCaught in MakeNode()
4128 : IfExceptionHint::kLocallyUncaught; in MakeNode()
Djs-typed-lowering.cc363 IfExceptionHint hint = OpParameter<IfExceptionHint>(projections[1]); in ConvertBothInputsToNumber()
/external/v8/test/unittests/compiler/
Dcommon-operator-unittest.cc224 static const IfExceptionHint kIfExceptionHints[] = { in TEST_F()
225 IfExceptionHint::kLocallyCaught, IfExceptionHint::kLocallyUncaught}; in TEST_F()
226 TRACED_FOREACH(IfExceptionHint, hint, kIfExceptionHints) { in TEST_F()
Dnode-properties-unittest.cc40 const IfExceptionHint kNoHint = IfExceptionHint::kLocallyCaught;
Ddead-code-elimination-unittest.cc127 IfExceptionHint const kHints[] = {IfExceptionHint::kLocallyCaught, in TEST_F()
128 IfExceptionHint::kLocallyUncaught}; in TEST_F()
129 TRACED_FOREACH(IfExceptionHint, hint, kHints) { in TEST_F()
Dtail-call-optimization-unittest.cc67 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
139 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
Dgraph-reducer-unittest.cc286 const IfExceptionHint kNoHint = IfExceptionHint::kLocallyCaught;
Dloop-peeling-unittest.cc484 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
Dscheduler-unittest.cc1057 common()->IfException(IfExceptionHint::kLocallyUncaught), c1, c1); in TARGET_TEST_F()
1061 common()->IfException(IfExceptionHint::kLocallyUncaught), c2, c2); in TARGET_TEST_F()