/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ValueHandleTest.cpp | 42 WeakVH WVH(BitcastV.get()); in TEST_F() 54 WeakVH BitcastWVH(BitcastV.get()); in TEST_F() 55 WeakVH ConstantWVH(ConstantV); in TEST_F() 87 WeakVH WVH(BitcastV.get()); in TEST_F() 88 WeakVH WVH_Copy(WVH); in TEST_F() 89 WeakVH WVH_Recreated(BitcastV.get()); in TEST_F() 97 WeakVH WVH(BitcastV.get()); in TEST_F() 98 WeakVH WVH_Copy(WVH); in TEST_F() 99 WeakVH WVH_Recreated(BitcastV.get()); in TEST_F() 342 OwningPtr<WeakVH> ToClear[2]; in TEST_F() [all …]
|
/external/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 38 WeakVH WVH(BitcastV.get()); in TEST_F() 50 WeakVH BitcastWVH(BitcastV.get()); in TEST_F() 51 WeakVH ConstantWVH(ConstantV); in TEST_F() 83 WeakVH WVH(BitcastV.get()); in TEST_F() 84 WeakVH WVH_Copy(WVH); in TEST_F() 85 WeakVH WVH_Recreated(BitcastV.get()); in TEST_F() 93 WeakVH WVH(BitcastV.get()); in TEST_F() 94 WeakVH WVH_Copy(WVH); in TEST_F() 95 WeakVH WVH_Recreated(BitcastV.get()); in TEST_F() 346 std::unique_ptr<WeakVH> ToClear[2]; in TEST_F() [all …]
|
/external/llvm/include/llvm/IR/ |
D | ValueHandle.h | 145 class WeakVH : public ValueHandleBase { 147 WeakVH() : ValueHandleBase(Weak) {} in WeakVH() function 148 WeakVH(Value *P) : ValueHandleBase(Weak, P) {} in WeakVH() function 149 WeakVH(const WeakVH &RHS) in WeakVH() function 152 WeakVH &operator=(const WeakVH &RHS) = default; 168 template <> struct simplify_type<WeakVH> { 170 static SimpleType getSimplifiedValue(WeakVH &WVH) { return WVH; } 172 template <> struct simplify_type<const WeakVH> { 174 static SimpleType getSimplifiedValue(const WeakVH &WVH) { return WVH; }
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ValueHandle.h | 134 class WeakVH : public ValueHandleBase { 136 WeakVH() : ValueHandleBase(Weak) {} in WeakVH() function 137 WeakVH(Value *P) : ValueHandleBase(Weak, P) {} in WeakVH() function 138 WeakVH(const WeakVH &RHS) in WeakVH() function 156 template<> struct simplify_type<const WeakVH> { 158 static SimpleType getSimplifiedValue(const WeakVH &WVH) { 162 template<> struct simplify_type<WeakVH> : public simplify_type<const WeakVH> {};
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ValueHandle.h | 141 class WeakVH : public ValueHandleBase { 143 WeakVH() : ValueHandleBase(Weak) {} in WeakVH() function 144 WeakVH(Value *P) : ValueHandleBase(Weak, P) {} in WeakVH() function 145 WeakVH(const WeakVH &RHS) in WeakVH() function 148 WeakVH &operator=(const WeakVH &RHS) = default; 164 template <> struct simplify_type<WeakVH> { 167 static SimpleType getSimplifiedValue(WeakVH &WVH) { return WVH; } 169 template <> struct simplify_type<const WeakVH> { 172 static SimpleType getSimplifiedValue(const WeakVH &WVH) { return WVH; }
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
D | SimplifyIndVar.h | 43 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V = NULL); 48 SmallVectorImpl<WeakVH> &Dead); 54 SmallVectorImpl<WeakVH> &Dead);
|
D | Cloning.h | 189 SmallVector<WeakVH, 8> InlinedCalls;
|
/external/llvm/lib/Target/XCore/ |
D | XCoreLowerThreadLocal.cpp | 131 SmallVector<WeakVH,8> WUsers(CE->user_begin(), CE->user_end()); in replaceConstantExprOp() 135 if (WeakVH WU = WUsers.pop_back_val()) { in replaceConstantExprOp() 162 SmallVector<WeakVH,8> WUsers; in rewriteNonInstructionUses() 165 WUsers.push_back(WeakVH(U)); in rewriteNonInstructionUses() 167 if (WeakVH WU = WUsers.pop_back_val()) { in rewriteNonInstructionUses()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | SimplifyIndVar.h | 50 LoopInfo *LI, SmallVectorImpl<WeakVH> &Dead, 56 LoopInfo *LI, SmallVectorImpl<WeakVH> &Dead);
|
D | Cloning.h | 80 std::vector<WeakVH> OperandBundleCallSites; 193 SmallVector<WeakVH, 8> InlinedCalls;
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | SimplifyIndVar.cpp | 52 SmallVectorImpl<WeakVH> &DeadInsts; 58 SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = NULL) : in SimplifyIndvar() 381 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V) in simplifyUsersOfIV() 392 SmallVectorImpl<WeakVH> &Dead) { in simplifyLoopIVs() 406 SmallVectorImpl<WeakVH> &Dead) { in simplifyIVUsers()
|
/external/llvm/include/llvm/Analysis/ |
D | AssumptionCache.h | 47 SmallVector<WeakVH, 4> AssumeHandles; 85 MutableArrayRef<WeakVH> assumptions() { in assumptions()
|
D | MemoryBuiltins.h | 212 typedef std::pair<WeakVH, WeakVH> WeakEvalType;
|
D | IVUsers.h | 82 WeakVH OperandValToReplace;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | MemorySSAUpdater.h | 66 SmallVector<WeakVH, 16> InsertedPHIs; 222 void fixupDefs(const SmallVectorImpl<WeakVH> &);
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyIndVar.cpp | 51 SmallVectorImpl<WeakVH> &DeadInsts; 57 LoopInfo *LI,SmallVectorImpl<WeakVH> &Dead) in SimplifyIndvar() 670 LoopInfo *LI, SmallVectorImpl<WeakVH> &Dead, in simplifyUsersOfIV() 680 LoopInfo *LI, SmallVectorImpl<WeakVH> &Dead) { in simplifyLoopIVs()
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.h | 36 std::vector<WeakVH> ValuePtrs; 95 std::vector<WeakVH> MDValuePtrs;
|
/external/llvm/lib/Transforms/Scalar/ |
D | NaryReassociate.cpp | 191 DenseMap<const SCEV *, SmallVector<WeakVH, 2>> SeenExprs; 263 SeenExprs[NewSCEV].push_back(WeakVH(&*I)); in doOneIteration() 283 SeenExprs[OldSCEV].push_back(WeakVH(&*I)); in doOneIteration()
|
D | LoopSimplifyCFG.cpp | 43 SmallVector<WeakVH, 16> Blocks(L.blocks()); in simplifyLoopCFG()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 557 std::vector<WeakVH> Deferred; 616 Deferred.push_back(WeakVH(I)); in runOnModule() 621 std::vector<WeakVH> Worklist; in runOnModule() 629 for (std::vector<WeakVH>::iterator I = Worklist.begin(), in runOnModule() 644 for (std::vector<WeakVH>::iterator I = Worklist.begin(), in runOnModule()
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1403 std::vector<WeakVH> Deferred; 1407 bool doSanityCheck(std::vector<WeakVH> &Worklist); 1466 bool MergeFunctions::doSanityCheck(std::vector<WeakVH> &Worklist) { in doSanityCheck() 1474 for (std::vector<WeakVH>::iterator I = Worklist.begin(), E = Worklist.end(); in doSanityCheck() 1477 for (std::vector<WeakVH>::iterator J = I; J != E && j < Max; ++J, ++j) { in doSanityCheck() 1496 for (std::vector<WeakVH>::iterator K = J; K != E && k < Max; in doSanityCheck() 1567 Deferred.push_back(WeakVH(I->second)); in runOnModule() 1572 std::vector<WeakVH> Worklist; in runOnModule() 1581 for (WeakVH &I : Worklist) { in runOnModule()
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.h | 346 std::vector<llvm::WeakVH> LLVMUsed; 347 std::vector<llvm::WeakVH> LLVMCompilerUsed; 418 std::vector<std::pair<llvm::WeakVH,llvm::Constant*> > CXXGlobalDtors; 431 llvm::WeakVH CFConstantStringClassRef; 435 llvm::WeakVH ConstantStringClassRef;
|
/external/llvm/include/llvm/Transforms/Vectorize/ |
D | SLPVectorizer.h | 43 typedef SmallVector<WeakVH, 8> WeakVHList;
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | IVUsers.h | 82 WeakVH OperandValToReplace;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Vectorize/ |
D | SLPVectorizer.h | 133 bool vectorizeSimpleInstructions(SmallVectorImpl<WeakVH> &Instructions,
|