Home
last modified time | relevance | path

Searched refs:IfTrue (Results 1 – 18 of 18) sorted by relevance

/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp111 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/
Dchange-lowering.cc107 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()
Dcommon-operator.h75 const Operator* IfTrue();
Djs-builtin-reducer.cc130 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ReduceMathMax()
Dcommon-operator-unittest.cc51 SHARED(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 1),
Dcommon-operator.cc60 V(IfTrue, Operator::kFoldable, 0, 1) \
Dgraph-builder.h95 Node* NewIfTrue() { return NewNode(common()->IfTrue()); } in NewIfTrue()
Dopcodes.h13 V(IfTrue) \
Djs-typed-lowering.cc604 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in ReduceJSStoreProperty()
/external/llvm/test/CodeGen/AArch64/
Dregress-fp128-livein.ll3 ; Regression test for NZCV reg live-in not being added to fp128csel IfTrue BB,
/external/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp741 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()
DSimplifyCFG.cpp1713 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/
DBasicBlockUtils.h234 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
/external/chromium_org/v8/test/cctest/compiler/
Dtest-scheduler.cc661 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 …]
Dtest-simplified-lowering.cc742 Node* tb = graph()->NewNode(common()->IfTrue(), br); in Branch()
/external/llvm/include/llvm/IR/
DInstructions.h2458 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/
DInstructions.cpp731 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/
DAArch64ISelLowering.cpp7656 SDValue IfTrue = N->getOperand(1); in performVSelectCombine() local
7663 IfTrue, IfFalse); in performVSelectCombine()