Home
last modified time | relevance | path

Searched refs:IfTrue (Results 1 – 19 of 19) 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/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/lib/Target/Hexagon/
DHexagonInstrInfoV3.td42 class T_CallPred<bit IfTrue, string ExtStr>
44 CondStr<"$Pu", IfTrue, 0>.S # "call " # ExtStr # "$dst",
47 let isPredicatedFalse = !if(IfTrue,0,1);
54 let Inst{21} = !if(IfTrue,0,1);
/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.cpp781 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, in GetIfCondition() argument
836 IfTrue = Pred1; in GetIfCondition()
840 IfTrue = Pred2; in GetIfCondition()
864 IfTrue = Pred1; in GetIfCondition()
867 IfTrue = Pred2; in GetIfCondition()
DSimplifyCFG.cpp1795 BasicBlock *IfTrue, *IfFalse; in FoldTwoEntryPHINode() local
1796 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode()
1883 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n"); in FoldTwoEntryPHINode()
1904 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); in FoldTwoEntryPHINode()
/external/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.h2531 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = nullptr);
2532 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2534 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
2535 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2540 static BranchInst *Create(BasicBlock *IfTrue,
2542 return new(1) BranchInst(IfTrue, InsertBefore);
2544 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2546 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2548 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2549 return new(1) BranchInst(IfTrue, InsertAtEnd);
[all …]
/external/llvm/lib/IR/
DInstructions.cpp756 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) in BranchInst() argument
757 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
760 assert(IfTrue && "Branch destination may not be null!"); in BranchInst()
761 Op<-1>() = IfTrue; in BranchInst()
763 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, in BranchInst() argument
765 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
768 Op<-1>() = IfTrue; in BranchInst()
776 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) in BranchInst() argument
777 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst()
780 assert(IfTrue && "Branch destination may not be null!"); in BranchInst()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DBasicBlockUtils.h309 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp8626 SDValue IfTrue = N->getOperand(1); in performVSelectCombine() local
8633 IfTrue, IfFalse); in performVSelectCombine()