/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.cc | 1258 void CodeAssembler::GotoIf(TNode<IntegralT> condition, Label* true_label) { in GotoIf() argument 1260 Branch(condition, true_label, &false_label); in GotoIf() 1265 Label true_label(this); in GotoIfNot() 1266 Branch(condition, &true_label, false_label); in GotoIfNot() 1267 Bind(&true_label); in GotoIfNot() 1270 void CodeAssembler::Branch(TNode<IntegralT> condition, Label* true_label, in Branch() argument 1274 if ((true_label->is_used() || true_label->is_bound()) && in Branch() 1276 return Goto(constant ? true_label : false_label); in Branch() 1279 true_label in Branch() 1303 Branch(TNode<BoolT> condition, Label* true_label, const std::function<void()>& false_body) Branch() argument [all...] |
H A D | code-assembler.h | 676 void GotoIf(TNode<IntegralT> condition, Label* true_label); 678 void Branch(TNode<IntegralT> condition, Label* true_label, 718 void Branch(TNode<BoolT> condition, Label* true_label,
|
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
H A D | spirv_builder.h | 258 SpvId true_label, SpvId false_label);
|
H A D | spirv_builder.c | 719 SpvId true_label, SpvId false_label) in spirv_builder_emit_branch_conditional() 724 spirv_buffer_emit_word(&b->instructions, true_label); in spirv_builder_emit_branch_conditional() 718 spirv_builder_emit_branch_conditional(struct spirv_builder *b, SpvId condition, SpvId true_label, SpvId false_label) spirv_builder_emit_branch_conditional() argument
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | code-generator.h | 36 Label* true_label; member
|
H A D | code-generator.cc | 693 branch->true_label = GetLabel(true_rpo); in ComputeBranchInfo() 760 branch.true_label = exit->label(); in AssembleInstruction()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_cfg.cpp | 657 const auto true_label = terminator->GetOperandAs<uint32_t>(1); in ValidateStructuredSelections() local 662 const bool true_label_unseen = seen.insert(true_label).second; in ValidateStructuredSelections()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_cfg.cpp | 657 const auto true_label = terminator->GetOperandAs<uint32_t>(1); in ValidateStructuredSelections() local 662 const bool true_label_unseen = seen.insert(true_label).second; in ValidateStructuredSelections()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_cfg.cpp | 664 const auto true_label = terminator->GetOperandAs<uint32_t>(1); in ValidateStructuredSelections() local 669 const bool true_label_unseen = seen.insert(true_label).second; in ValidateStructuredSelections()
|
/third_party/node/deps/v8/src/compiler/backend/loong64/ |
H A D | code-generator-loong64.cc | 1929 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | code-generator-x64.cc | 4461 Label* tlabel = branch->true_label; in AssembleArchBranch() 4477 Label* tlabel = branch->true_label; in AssembleArchDeoptBranch()
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
H A D | code-generator-ppc.cc | 3809 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
H A D | code-generator-arm.cc | 3548 Label* tlabel = branch->true_label; in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | code-generator-ia32.cc | 3731 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | code-generator-s390.cc | 3206 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | code-generator-mips64.cc | 3870 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
H A D | code-generator-mips.cc | 3683 Label* tlabel = branch->true_label; in AssembleArchBranch()
|
/third_party/node/deps/v8/src/compiler/backend/riscv64/ |
H A D | code-generator-riscv64.cc | 3540 Label* tlabel = branch->true_label; in AssembleArchBranch()
|