Home
last modified time | relevance | path

Searched refs:kBranch (Results 1 – 23 of 23) sorted by relevance

/external/v8/src/compiler/
Dcontrol-flow-optimizer.cc38 case IrOpcode::kBranch: in Optimize()
67 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in VisitBranch()
74 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in TryBuildSwitch()
100 if (branch1->opcode() != IrOpcode::kBranch) break; in TryBuildSwitch()
125 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in TryBuildSwitch()
126 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); in TryBuildSwitch()
Dnode-matchers.cc18 if (branch->opcode() != IrOpcode::kBranch) return; in BranchMatcher()
44 if (branch->opcode() != IrOpcode::kBranch) return; in DiamondMatcher()
Dschedule.cc136 case BasicBlock::kBranch: in operator <<()
257 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); in AddBranch()
258 block->set_control(BasicBlock::kBranch); in AddBranch()
308 block->set_control(BasicBlock::kBranch); in InsertBranch()
Dcommon-operator-reducer.cc58 case IrOpcode::kBranch: in Reduce()
85 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in ReduceBranch()
195 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); in ReduceMerge()
256 if (branch->opcode() != IrOpcode::kBranch) return NoChange(); in ReducePhi()
Dbranch-elimination.cc39 case IrOpcode::kBranch: in Reduce()
85 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); in SimplifyBranchCondition()
Dcommon-operator.cc67 DCHECK_EQ(IrOpcode::kBranch, op->opcode()); in BranchOperatorInfoOf()
73 case IrOpcode::kBranch: in BranchHintOf()
120 if (op->opcode() == IrOpcode::kBranch) { in IsSafetyCheckOf()
128 if (op->opcode() == IrOpcode::kBranch) { in MarkAsSafetyCheck()
664 IrOpcode::kBranch, Operator::kKontrol, // opcode in BranchOperator()
671 kBranch##Hint##IsCheck##Operator;
952 return &cache_.kBranch##Hint##IsCheck##Operator; \ in Branch()
Ddead-code-elimination.cc72 case IrOpcode::kBranch: in Reduce()
350 DCHECK(node->opcode() == IrOpcode::kBranch || in ReduceBranchOrSwitch()
Dnode-properties.cc271 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in CollectControlProjections()
275 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in CollectControlProjections()
Draw-machine-assembler.cc172 if (block->control() == BasicBlock::kBranch && block->NodeCount() == 1) { in OptimizeControlFlow()
176 DCHECK_EQ(branch->opcode(), IrOpcode::kBranch); in OptimizeControlFlow()
505 case IrOpcode::kBranch: in MarkControlDeferred()
Dschedule.h38 kBranch, // Branch if true to first successor, otherwise second. in NON_EXPORTED_BASE() enumerator
Dscheduler.cc357 case IrOpcode::kBranch: in BuildBlocks()
381 case IrOpcode::kBranch: in ConnectBlocks()
Dmachine-graph-verifier.cc658 case IrOpcode::kBranch: in Run()
Dverifier.cc290 case IrOpcode::kBranch: { in Check()
309 CHECK_EQ(IrOpcode::kBranch, control->opcode()); in Check()
Dmachine-operator-reducer.cc900 case IrOpcode::kBranch: in Reduce()
2087 DCHECK(node->opcode() == IrOpcode::kBranch || in ReduceConditional()
Dgraph-visualizer.cc314 if (opcode == IrOpcode::kBranch) { in PrintNode()
Deffect-control-linearizer.cc436 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in TryCloneBranch()
756 case BasicBlock::kBranch: in Run()
763 block->control() == BasicBlock::kBranch) { in Run()
Dsimplified-lowering.cc1885 case IrOpcode::kBranch: { in VisitNode()
/external/skia/src/sksl/
DSkSLByteCode.h116 kBranch, enumerator
DSkSLByteCodeGenerator.cpp1252 this->write(ByteCode::Instruction::kBranch); in writeDoStatement()
1278 this->write(ByteCode::Instruction::kBranch); in writeForStatement()
1348 this->write(ByteCode::Instruction::kBranch); in writeWhileStatement()
DSkSLInterpreter.h419 case ByteCode::Instruction::kBranch: in disassemble()
742 &&kBranch, in innerRun()
853 CHECK_LABEL(kBranch); in innerRun()
1023 LABEL(kBranch) { in innerRun()
/external/vixl/src/aarch32/
Dconstants-aarch32.h114 kBranch = 0x10, enumerator
Ddisasm-aarch32.cc1274 os().SetCurrentInstruction(kB, kAddress | kBranch); in b()
1331 os().SetCurrentInstruction(kBl, kAddress | kBranch); in bl()
1337 os().SetCurrentInstruction(kBlx, kAddress | kBranch); in blx()
1343 os().SetCurrentInstruction(kBlx, kAddress | kBranch); in blx()
1348 os().SetCurrentInstruction(kBx, kAddress | kBranch); in bx()
1353 os().SetCurrentInstruction(kBxj, kAddress | kBranch); in bxj()
1358 os().SetCurrentInstruction(kCbnz, kAddress | kBranch); in cbnz()
1364 os().SetCurrentInstruction(kCbz, kAddress | kBranch); in cbz()
3298 os().SetCurrentInstruction(kTbb, kBranch); in tbb()
3304 os().SetCurrentInstruction(kTbh, kBranch); in tbh()
/external/v8/src/compiler/backend/
Dinstruction-selector.cc1238 case BasicBlock::kBranch: { in VisitControl()
1239 DCHECK_EQ(IrOpcode::kBranch, input->opcode()); in VisitControl()
1317 case IrOpcode::kBranch: in VisitNode()