Home
last modified time | relevance | path

Searched refs:BranchHintOf (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/unittests/compiler/
Ddiamond-unittest.cc134 CHECK(BranchHint::kNone == BranchHintOf(dn.branch->op())); in TEST_F()
137 CHECK(BranchHint::kTrue == BranchHintOf(dt.branch->op())); in TEST_F()
140 CHECK(BranchHint::kFalse == BranchHintOf(df.branch->op())); in TEST_F()
Dcommon-operator-unittest.cc211 EXPECT_EQ(hint, BranchHintOf(op)); in TEST_F()
Dcommon-operator-reducer-unittest.cc191 EXPECT_EQ(NegateBranchHint(hint), BranchHintOf(branch->op())); in TEST_F()
/external/v8/src/compiler/
Dcontrol-flow-optimizer.cc158 BranchHint const hint = BranchHintOf(branch->op()); in TryCloneBranch()
210 if (BranchHintOf(branch->op()) != BranchHint::kNone) return false; in TryBuildSwitch()
233 if (BranchHintOf(branch1->op()) != BranchHint::kNone) break; in TryBuildSwitch()
Dcommon-operator.h51 BranchHint BranchHintOf(const Operator* const);
Dcommon-operator-reducer.cc105 node, common()->Branch(NegateBranchHint(BranchHintOf(node->op())))); in ReduceBranch()
Dcommon-operator.cc33 BranchHint BranchHintOf(const Operator* const op) { in BranchHintOf() function
Dscheduler.cc438 switch (BranchHintOf(branch->op())) { in ConnectBranch()