/external/v8/src/compiler/ |
D | control-flow-optimizer.cc | 38 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()
|
D | node-matchers.cc | 18 if (branch->opcode() != IrOpcode::kBranch) return; in BranchMatcher() 44 if (branch->opcode() != IrOpcode::kBranch) return; in DiamondMatcher()
|
D | schedule.cc | 136 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()
|
D | common-operator-reducer.cc | 58 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()
|
D | branch-elimination.cc | 39 case IrOpcode::kBranch: in Reduce() 85 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); in SimplifyBranchCondition()
|
D | common-operator.cc | 67 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()
|
D | dead-code-elimination.cc | 72 case IrOpcode::kBranch: in Reduce() 350 DCHECK(node->opcode() == IrOpcode::kBranch || in ReduceBranchOrSwitch()
|
D | node-properties.cc | 271 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in CollectControlProjections() 275 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in CollectControlProjections()
|
D | raw-machine-assembler.cc | 172 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()
|
D | schedule.h | 38 kBranch, // Branch if true to first successor, otherwise second. in NON_EXPORTED_BASE() enumerator
|
D | scheduler.cc | 357 case IrOpcode::kBranch: in BuildBlocks() 381 case IrOpcode::kBranch: in ConnectBlocks()
|
D | machine-graph-verifier.cc | 658 case IrOpcode::kBranch: in Run()
|
D | verifier.cc | 290 case IrOpcode::kBranch: { in Check() 309 CHECK_EQ(IrOpcode::kBranch, control->opcode()); in Check()
|
D | machine-operator-reducer.cc | 900 case IrOpcode::kBranch: in Reduce() 2087 DCHECK(node->opcode() == IrOpcode::kBranch || in ReduceConditional()
|
D | graph-visualizer.cc | 314 if (opcode == IrOpcode::kBranch) { in PrintNode()
|
D | effect-control-linearizer.cc | 436 DCHECK_EQ(IrOpcode::kBranch, node->opcode()); in TryCloneBranch() 756 case BasicBlock::kBranch: in Run() 763 block->control() == BasicBlock::kBranch) { in Run()
|
D | simplified-lowering.cc | 1885 case IrOpcode::kBranch: { in VisitNode()
|
/external/skia/src/sksl/ |
D | SkSLByteCode.h | 116 kBranch, enumerator
|
D | SkSLByteCodeGenerator.cpp | 1252 this->write(ByteCode::Instruction::kBranch); in writeDoStatement() 1278 this->write(ByteCode::Instruction::kBranch); in writeForStatement() 1348 this->write(ByteCode::Instruction::kBranch); in writeWhileStatement()
|
D | SkSLInterpreter.h | 419 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/ |
D | constants-aarch32.h | 114 kBranch = 0x10, enumerator
|
D | disasm-aarch32.cc | 1274 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/ |
D | instruction-selector.cc | 1238 case BasicBlock::kBranch: { in VisitControl() 1239 DCHECK_EQ(IrOpcode::kBranch, input->opcode()); in VisitControl() 1317 case IrOpcode::kBranch: in VisitNode()
|