/external/clang/unittests/ASTMatchers/Dynamic/ |
D | VariantValueTest.cpp | 111 bool IfTrue = false; in TEST() local 113 IfTrue = true; in TEST() 115 EXPECT_FALSE(IfTrue); in TEST() 119 IfTrue = false; in TEST() 121 IfTrue = true; in TEST() 123 EXPECT_TRUE(IfTrue); in TEST()
|
/external/chromium_org/v8/src/compiler/ |
D | change-lowering.cc | 107 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ChangeBitToBool() 146 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ChangeInt32ToTagged() 170 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ChangeTaggedToUI32() 196 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ChangeTaggedToFloat64() 219 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ChangeUint32ToTagged()
|
D | common-operator.h | 75 const Operator* IfTrue();
|
D | js-builtin-reducer.cc | 130 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ReduceMathMax()
|
D | common-operator-unittest.cc | 51 SHARED(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 1),
|
D | common-operator.cc | 60 V(IfTrue, Operator::kFoldable, 0, 1) \
|
D | graph-builder.h | 95 Node* NewIfTrue() { return NewNode(common()->IfTrue()); } in NewIfTrue()
|
D | opcodes.h | 13 V(IfTrue) \
|
D | js-typed-lowering.cc | 604 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ReduceJSStoreProperty()
|
/external/llvm/test/CodeGen/AArch64/ |
D | regress-fp128-livein.ll | 3 ; Regression test for NZCV reg live-in not being added to fp128csel IfTrue BB,
|
/external/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 741 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, in GetIfCondition() argument 796 IfTrue = Pred1; in GetIfCondition() 800 IfTrue = Pred2; in GetIfCondition() 824 IfTrue = Pred1; in GetIfCondition() 827 IfTrue = Pred2; in GetIfCondition()
|
D | SimplifyCFG.cpp | 1713 BasicBlock *IfTrue, *IfFalse; in FoldTwoEntryPHINode() local 1714 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() 1799 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); in FoldTwoEntryPHINode() 1820 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); in FoldTwoEntryPHINode()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | BasicBlockUtils.h | 234 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
|
/external/chromium_org/v8/test/cctest/compiler/ |
D | test-scheduler.cc | 661 Node* true_branch = graph.NewNode(builder.IfTrue(), branch); in TEST() 739 op = common_builder.IfTrue(); in TEST() 881 op = common_builder.IfTrue(); in TEST() 1008 op = common_builder.IfTrue(); in TEST() 1050 op = common_builder.IfTrue(); in TEST() 1136 op = common_builder.IfTrue(); in TEST() 1257 op = common_builder.IfTrue(); in TEST() 1271 op = common_builder.IfTrue(); in TEST() 1315 op = common_builder.IfTrue(); in TEST() 1342 op = common_builder.IfTrue(); in TEST() [all …]
|
D | test-simplified-lowering.cc | 742 Node* tb = graph()->NewNode(common()->IfTrue(), br); in Branch()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 2458 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = nullptr); 2459 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 2461 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd); 2462 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 2467 static BranchInst *Create(BasicBlock *IfTrue, 2469 return new(1) BranchInst(IfTrue, InsertBefore); 2471 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, 2473 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore); 2475 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) { 2476 return new(1) BranchInst(IfTrue, InsertAtEnd); [all …]
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 731 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) in BranchInst() argument 732 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 735 assert(IfTrue && "Branch destination may not be null!"); in BranchInst() 736 Op<-1>() = IfTrue; in BranchInst() 738 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, in BranchInst() argument 740 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 743 Op<-1>() = IfTrue; in BranchInst() 751 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) in BranchInst() argument 752 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 755 assert(IfTrue && "Branch destination may not be null!"); in BranchInst() [all …]
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 7656 SDValue IfTrue = N->getOperand(1); in performVSelectCombine() local 7663 IfTrue, IfFalse); in performVSelectCombine()
|