HomeSort by relevance Sort by last modified time
    Searched defs:if_true (Results 1 - 25 of 30) sorted by null

1 2

  /external/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 64 typedef if_<true, true_type, false_type>::type if_true; typedef
65 EXPECT_TRUE(if_true::value);
  /external/v8/src/compiler/
diamond.h 21 Node* if_true; member in struct:v8::internal::compiler::Diamond
30 if_true = graph->NewNode(common->IfTrue(), branch);
32 merge = graph->NewNode(common->Merge(2), if_true, if_false);
41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) {
43 if (if_true) {
44 branch->ReplaceInput(1, that.if_true);
control-flow-optimizer.cc 85 Node* if_true; local
90 if_true = matcher.IfTrue();
110 if_true->ReplaceInput(0, node);
112 NodeProperties::ChangeOp(if_true, common()->IfValue(value));
114 Enqueue(if_true);
130 if_true->ReplaceInput(0, node);
131 NodeProperties::ChangeOp(if_true, common()->IfValue(value));
132 Enqueue(if_true);
common-operator-reducer.cc 175 Node* if_true = node->InputAt(0); local
177 if (if_true->opcode() != IrOpcode::kIfTrue) std::swap(if_true, if_false);
178 if (if_true->opcode() == IrOpcode::kIfTrue &&
180 if_true->InputAt(0) == if_false->InputAt(0) && if_true->OwnedBy(node) &&
182 Node* const branch = if_true->InputAt(0);
184 DCHECK(branch->OwnedBy(if_true, if_false));
233 Node* if_true = merge_inputs[0]; local
235 if (if_true->opcode() != IrOpcode::kIfTrue)
    [all...]
js-intrinsic-lowering.cc 200 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
213 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false);
js-generic-lowering.cc 663 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
670 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false);
js-native-context-specialization.cc 1902 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
    [all...]
js-builtin-reducer.cc 756 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
1657 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
1711 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
    [all...]
effect-control-linearizer.cc 852 auto if_true = __ MakeLabel<1>(); local
855 __ GotoIf(value, &if_true);
858 __ Bind(&if_true);
    [all...]
js-typed-lowering.cc 1253 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
1768 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
    [all...]
simplified-lowering.cc 3019 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); local
    [all...]
  /art/compiler/optimizing/
graph_test.cc 84 HBasicBlock* if_true = CreateGotoBlock(graph); local
89 if_block->AddSuccessor(if_true);
90 if_true->AddSuccessor(return_block);
94 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
100 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
induction_var_analysis.cc 895 HBasicBlock* if_true = ifs->IfTrueSuccessor(); local
    [all...]
  /external/v8/src/
code-stub-assembler.h 289 void BranchIfSmiEqual(Node* a, Node* b, Label* if_true, Label* if_false) {
290 Branch(SmiEqual(a, b), if_true, if_false); local
293 void BranchIfSmiLessThan(Node* a, Node* b, Label* if_true, Label* if_false) {
294 Branch(SmiLessThan(a, b), if_true, if_false); local
297 void BranchIfSmiLessThanOrEqual(Node* a, Node* b, Label* if_true,
299 Branch(SmiLessThanOrEqual(a, b), if_true, if_false); local
302 void BranchIfFloat64IsNaN(Node* value, Label* if_true, Label* if_false) {
303 Branch(Float64Equal(value, value), if_false, if_true); local
306 // Branches to {if_true} if ToBoolean applied to {value} yields true,
308 void BranchIfToBooleanIsTrue(Node* value, Label* if_true, Label* if_false)
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeMIPS_common.c 1863 sljit_s32 if_true; local
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 637 Label* if_true,
643 Split(eq, if_true, if_false, fall_through);
648 Label* if_true,
652 __ b(cond, if_true);
653 } else if (if_true == fall_through) {
656 __ b(cond, if_true);
720 Label* if_true,
733 Split(eq, if_true, if_false, NULL);
1943 Label* if_true = NULL; local
1964 Label* if_true = NULL; local
1986 Label* if_true = NULL; local
2008 Label* if_true = NULL; local
2030 Label* if_true = NULL; local
2542 Label* if_true = NULL; local
2619 Label* if_true = NULL; local
2685 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 631 Label* if_true,
637 Split(eq, if_true, if_false, fall_through);
641 // If (cond), branch to if_true.
646 Label* if_true,
650 __ B(cond, if_true);
651 } else if (if_true == fall_through) {
655 __ B(cond, if_true);
713 Label* if_true,
728 Split(eq, if_true, if_false, NULL);
1896 Label* if_true = NULL; local
1916 Label* if_true = NULL; local
1938 Label* if_true = NULL; local
1960 Label* if_true = NULL; local
1982 Label* if_true = NULL; local
2511 Label* if_true = NULL; local
2593 Label* if_true = NULL; local
2659 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 590 Label* if_true,
596 Split(equal, if_true, if_false, fall_through);
601 Label* if_true,
605 __ j(cc, if_true);
606 } else if (if_true == fall_through) {
609 __ j(cc, if_true);
670 Label* if_true,
682 Split(equal, if_true, if_false, NULL);
1867 Label* if_true = NULL; local
1888 Label* if_true = NULL; local
1910 Label* if_true = NULL; local
1932 Label* if_true = NULL; local
1954 Label* if_true = NULL; local
2478 Label* if_true = NULL; local
2553 Label* if_true = NULL; local
2621 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 633 Label* if_true,
640 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through);
647 Label* if_true,
651 __ Branch(if_true, cc, lhs, rhs);
652 } else if (if_true == fall_through) {
655 __ Branch(if_true, cc, lhs, rhs);
718 Label* if_true,
730 Split(eq, v0, Operand(t0), if_true, if_false, NULL);
1965 Label* if_true = NULL; local
1986 Label* if_true = NULL; local
2009 Label* if_true = NULL; local
2032 Label* if_true = NULL; local
2054 Label* if_true = NULL; local
2568 Label* if_true = NULL; local
2645 Label* if_true = NULL; local
2711 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 633 Label* if_true,
640 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through);
647 Label* if_true,
651 __ Branch(if_true, cc, lhs, rhs);
652 } else if (if_true == fall_through) {
655 __ Branch(if_true, cc, lhs, rhs);
718 Label* if_true,
730 Split(eq, v0, Operand(a4), if_true, if_false, NULL);
1966 Label* if_true = NULL; local
1987 Label* if_true = NULL; local
2010 Label* if_true = NULL; local
2033 Label* if_true = NULL; local
2055 Label* if_true = NULL; local
2569 Label* if_true = NULL; local
2646 Label* if_true = NULL; local
2712 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 613 void FullCodeGenerator::DoTest(Expression* condition, Label* if_true,
618 Split(eq, if_true, if_false, fall_through);
622 void FullCodeGenerator::Split(Condition cond, Label* if_true, Label* if_false,
625 __ b(cond, if_true, cr);
626 } else if (if_true == fall_through) {
629 __ b(cond, if_true, cr);
687 Label* if_true,
700 Split(eq, if_true, if_false, NULL);
1955 Label* if_true = NULL; local
1976 Label* if_true = NULL; local
1998 Label* if_true = NULL; local
2020 Label* if_true = NULL; local
2042 Label* if_true = NULL; local
2553 Label* if_true = NULL; local
2632 Label* if_true = NULL; local
2698 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 595 void FullCodeGenerator::DoTest(Expression* condition, Label* if_true,
600 Split(eq, if_true, if_false, fall_through);
603 void FullCodeGenerator::Split(Condition cond, Label* if_true, Label* if_false,
606 __ b(cond, if_true);
607 } else if (if_true == fall_through) {
610 __ b(cond, if_true);
663 Label* if_true,
675 Split(eq, if_true, if_false, NULL);
1920 Label* if_true = NULL; local
1940 Label* if_true = NULL; local
1961 Label* if_true = NULL; local
1982 Label* if_true = NULL; local
2003 Label* if_true = NULL; local
2505 Label* if_true = NULL; local
2580 Label* if_true = NULL; local
2646 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 606 Label* if_true,
612 Split(equal, if_true, if_false, fall_through);
617 Label* if_true,
621 __ j(cc, if_true);
622 } else if (if_true == fall_through) {
625 __ j(cc, if_true);
686 Label* if_true,
698 Split(equal, if_true, if_false, NULL);
1855 Label* if_true = NULL; local
1876 Label* if_true = NULL; local
1898 Label* if_true = NULL; local
1920 Label* if_true = NULL; local
1942 Label* if_true = NULL; local
2464 Label* if_true = NULL; local
2540 Label* if_true = NULL; local
2608 Label* if_true = NULL; local
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 585 Label* if_true,
591 Split(equal, if_true, if_false, fall_through);
596 Label* if_true,
600 __ j(cc, if_true);
601 } else if (if_true == fall_through) {
604 __ j(cc, if_true);
665 Label* if_true,
677 Split(equal, if_true, if_false, NULL);
1857 Label* if_true = NULL; local
1878 Label* if_true = NULL; local
1900 Label* if_true = NULL; local
1922 Label* if_true = NULL; local
1944 Label* if_true = NULL; local
2468 Label* if_true = NULL; local
2543 Label* if_true = NULL; local
2611 Label* if_true = NULL; local
    [all...]
  /external/v8/src/wasm/
function-body-decoder.cc 819 TFNode* if_true = nullptr; local
821 BUILD(BranchNoHint, cond.node, &if_true, &if_false);
826 true_env->control = if_true;
    [all...]

Completed in 638 milliseconds

1 2