/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonEarlyIfConv.cpp | 195 unsigned getCondStoreOpcode(unsigned Opc, bool IfTrue) const; 197 MachineInstr *MI, unsigned PredR, bool IfTrue); 200 unsigned PredR, bool IfTrue); 705 bool IfTrue) const { in getCondStoreOpcode() 706 return HII->getCondOpcode(Opc, !IfTrue); in getCondStoreOpcode() 711 unsigned PredR, bool IfTrue) { in predicateInstr() argument 721 unsigned COpc = getCondStoreOpcode(Opc, IfTrue); in predicateInstr() 742 const MCInstrDesc &D = HII->get(IfTrue ? Hexagon::J2_jumpt in predicateInstr() 762 unsigned PredR, bool IfTrue) { in predicateBlockNB() argument 773 predicateInstr(ToB, At, &*I, PredR, IfTrue); in predicateBlockNB()
|
D | HexagonGenMux.cpp | 252 bool IfTrue = HII->isPredicatedTrue(Opc); in genMuxInBlock() local 266 if (IfTrue) in genMuxInBlock()
|
D | HexagonExpandCondsets.cpp | 579 bool IfTrue) { in getCondTfrOpcode() argument 597 return IfTrue ? A2_tfrt : A2_tfrf; in getCondTfrOpcode() 599 return IfTrue ? A2_tfrpt : A2_tfrpf; in getCondTfrOpcode() 612 return IfTrue ? C2_cmoveit : C2_cmoveif; in getCondTfrOpcode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlan.h | 524 void setTwoSuccessors(VPBlockBase *IfTrue, VPBlockBase *IfFalse, in setTwoSuccessors() argument 529 appendSuccessor(IfTrue); in setTwoSuccessors() 1567 static void insertTwoBlocksAfter(VPBlockBase *IfTrue, VPBlockBase *IfFalse, 1569 assert(IfTrue->getSuccessors().empty() && 1573 BlockPtr->setTwoSuccessors(IfTrue, IfFalse, Condition); 1574 IfTrue->setPredecessors({BlockPtr}); 1576 IfTrue->setParent(BlockPtr->getParent());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 997 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, in GetIfCondition() argument 1052 IfTrue = Pred1; in GetIfCondition() 1056 IfTrue = Pred2; in GetIfCondition() 1080 IfTrue = Pred1; in GetIfCondition() 1083 IfTrue = Pred2; in GetIfCondition()
|
D | SimplifyCFG.cpp | 2313 BasicBlock *IfTrue, *IfFalse; in FoldTwoEntryPHINode() local 2314 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() 2413 << " T: " << IfTrue->getName() in FoldTwoEntryPHINode() 2436 Value *FalseVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfTrue); in FoldTwoEntryPHINode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 1131 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) in BranchInst() argument 1132 : Instruction(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 1135 assert(IfTrue && "Branch destination may not be null!"); in BranchInst() 1136 Op<-1>() = IfTrue; in BranchInst() 1139 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, in BranchInst() argument 1141 : Instruction(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 1144 Op<-1>() = IfTrue; in BranchInst() 1152 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) in BranchInst() argument 1153 : Instruction(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, in BranchInst() 1155 assert(IfTrue && "Branch destination may not be null!"); in BranchInst() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | BasicBlockUtils.h | 339 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instructions.h | 2994 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = nullptr); 2995 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 2997 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd); 2998 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, 3037 static BranchInst *Create(BasicBlock *IfTrue, 3039 return new(1) BranchInst(IfTrue, InsertBefore); 3042 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, 3044 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore); 3047 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) { 3048 return new(1) BranchInst(IfTrue, InsertAtEnd); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 12201 SDValue IfTrue = N->getOperand(1); in performVSelectCombine() local 12208 IfTrue, IfFalse); in performVSelectCombine()
|