/external/llvm/lib/Analysis/ |
D | AssumptionCache.cpp | 63 for (auto &VH : AssumeHandles) { in registerAssumption() local 64 if (!VH) in registerAssumption() 67 assert(&F == cast<Instruction>(VH)->getParent()->getParent() && in registerAssumption() 69 assert(match(cast<CallInst>(VH), m_Intrinsic<Intrinsic::assume>()) && in registerAssumption() 71 assert(AssumptionSet.insert(VH).second && in registerAssumption() 84 for (auto &VH : AC.assumptions()) in run() local 85 if (VH) in run() 86 OS << " " << *cast<CallInst>(VH)->getArgOperand(0) << "\n"; in run() 119 for (auto &VH : I.second->assumptions()) in verifyAnalysis() local 120 if (VH) in verifyAnalysis() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | AssumptionCache.cpp | 136 remove_if(AssumeHandles, [CI](WeakTrackingVH &VH) { return CI == VH; }), in unregisterAssumption() argument 211 for (auto &VH : AssumeHandles) { in registerAssumption() local 212 if (!VH) in registerAssumption() 215 assert(&F == cast<Instruction>(VH)->getParent()->getParent() && in registerAssumption() 217 assert(match(cast<CallInst>(VH), m_Intrinsic<Intrinsic::assume>()) && in registerAssumption() 219 assert(AssumptionSet.insert(VH).second && in registerAssumption() 234 for (auto &VH : AC.assumptions()) in run() local 235 if (VH) in run() 236 OS << " " << *cast<CallInst>(VH)->getArgOperand(0) << "\n"; in run() 282 for (auto &VH : I.second->assumptions()) in verifyAnalysis() local [all …]
|
D | MemorySSAUpdater.cpp | 371 for (const auto &VH : InsertedPHIs) in insertDef() local 372 if (const auto *RealPHI = cast_or_null<MemoryPhi>(VH)) in insertDef() 1048 for (auto &VH : InsertedPhis) in applyInsertUpdates() local 1049 if (auto *MPhi = cast_or_null<MemoryPhi>(VH)) in applyInsertUpdates() 1378 for (auto &VH : UpdatedPHIs) in tryRemoveTrivialPhis() local 1379 if (auto *MPhi = cast_or_null<MemoryPhi>(VH)) in tryRemoveTrivialPhis()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | AssumptionCache.cpp | 234 for (auto &VH : AssumeHandles) { in registerAssumption() local 235 if (!VH) in registerAssumption() 238 assert(&F == cast<Instruction>(VH)->getParent()->getParent() && in registerAssumption() 240 assert(match(cast<CallInst>(VH), m_Intrinsic<Intrinsic::assume>()) && in registerAssumption() 242 assert(AssumptionSet.insert(VH).second && in registerAssumption() 257 for (auto &VH : AC.assumptions()) in run() local 258 if (VH) in run() 259 OS << " " << *cast<CallInst>(VH)->getArgOperand(0) << "\n"; in run() 305 for (auto &VH : I.second->assumptions()) in verifyAnalysis() local 306 if (VH) in verifyAnalysis() [all …]
|
D | MemorySSAUpdater.cpp | 374 for (const auto &VH : InsertedPHIs) in insertDef() local 375 if (const auto *RealPHI = cast_or_null<MemoryPhi>(VH)) in insertDef() 1085 for (auto &VH : InsertedPhis) in applyInsertUpdates() local 1086 if (auto *MPhi = cast_or_null<MemoryPhi>(VH)) in applyInsertUpdates() 1400 for (auto &VH : UpdatedPHIs) in tryRemoveTrivialPhis() local 1401 if (auto *MPhi = cast_or_null<MemoryPhi>(VH)) in tryRemoveTrivialPhis()
|
/external/llvm-project/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 433 PoisoningVH<CastInst> VH(BitcastV.get()); in TEST_F() local 434 CastInst *implicit_to_exact_type = VH; in TEST_F() 444 EXPECT_FALSE(VH->mayWriteToMemory()); in TEST_F() 445 EXPECT_FALSE((*VH).mayWriteToMemory()); in TEST_F() 450 PoisoningVH<const CastInst> VH(ConstBitcast); in TEST_F() local 451 const CastInst *implicit_to_exact_type = VH; in TEST_F() 489 PoisoningVH<Value> VH(BitcastV.get()); in TEST_F() local 491 EXPECT_TRUE(DenseMapInfo<PoisoningVH<Value>>::isEqual(VH, BitcastV.get())); in TEST_F() 527 TrackingVH<Value> VH(BitcastV.get()); in TEST_F() local 529 EXPECT_EQ(VH, ConstantV); in TEST_F() [all …]
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 293 typedef ValueMapCallbackVH<KeyT, ValueT, Config> VH; 295 static inline VH getEmptyKey() { 296 return VH(DenseMapInfo<Value *>::getEmptyKey()); 298 static inline VH getTombstoneKey() { 299 return VH(DenseMapInfo<Value *>::getTombstoneKey()); 301 static unsigned getHashValue(const VH &Val) { 307 static bool isEqual(const VH &LHS, const VH &RHS) { 310 static bool isEqual(const KeyT &LHS, const VH &RHS) {
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | ValueMap.h | 299 using VH = ValueMapCallbackVH<KeyT, ValueT, Config>; 301 static inline VH getEmptyKey() { 302 return VH(DenseMapInfo<Value *>::getEmptyKey()); 305 static inline VH getTombstoneKey() { 306 return VH(DenseMapInfo<Value *>::getTombstoneKey()); 309 static unsigned getHashValue(const VH &Val) { 317 static bool isEqual(const VH &LHS, const VH &RHS) { 321 static bool isEqual(const KeyT &LHS, const VH &RHS) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ValueMap.h | 299 using VH = ValueMapCallbackVH<KeyT, ValueT, Config>; 301 static inline VH getEmptyKey() { 302 return VH(DenseMapInfo<Value *>::getEmptyKey()); 305 static inline VH getTombstoneKey() { 306 return VH(DenseMapInfo<Value *>::getTombstoneKey()); 309 static unsigned getHashValue(const VH &Val) { 317 static bool isEqual(const VH &LHS, const VH &RHS) { 321 static bool isEqual(const KeyT &LHS, const VH &RHS) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LowerConstantIntrinsics.cpp | 107 for (WeakTrackingVH &VH: Worklist) { in lowerConstantIntrinsics() 111 if (!VH) in lowerConstantIntrinsics() 113 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&*VH); in lowerConstantIntrinsics()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LowerConstantIntrinsics.cpp | 109 for (WeakTrackingVH &VH: Worklist) { in lowerConstantIntrinsics() 113 if (!VH) in lowerConstantIntrinsics() 115 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&*VH); in lowerConstantIntrinsics()
|
D | StructurizeCFG.cpp | 662 for (WeakVH VH : AffectedPhis) { in simplifyAffectedPhis() local 663 if (auto Phi = dyn_cast_or_null<PHINode>(VH)) { in simplifyAffectedPhis()
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | ScalarEvolutionExpander.h | 205 for (auto &VH : InsertedValues) { 206 Value *V = VH; 212 for (auto &VH : InsertedPostIncValues) { 213 Value *V = VH;
|
/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | misched-fusion-aes.ll | 95 ; CHECK: aese [[VH:v[0-7].16b]], {{v[0-7].16b}} 96 ; CHECK-NEXT: aesmc [[VH]], [[VH]] 179 ; CHECK: aesd [[VH:v[0-7].16b]], {{v[0-7].16b}} 180 ; CHECK-NEXT: aesimc [[VH]], [[VH]]
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
D | resource_op_lifting.mlir | 154 // CHECK: %[[VH:.*]] = "tf.VarHandleOp"() 157 // CHECK: %[[READ:.*]] = "tf.ReadVariableOp"(%[[VH]]) 169 // CHECK: "tf.AssignVariableOp"(%[[VH]], %[[CLUSTER]]) 204 // CHECK: %[[VH:.*]] = "tf.VarHandleOp"() 206 // CHECK: %[[READ:.*]] = "tf.ReadVariableOp"(%[[VH]]) 218 // CHECK: "tf.AssignVariableOp"(%[[VH]], %[[CLUSTER]]) 245 // CHECK: %[[VH:.*]] = "tf.VarHandleOp"() 247 // CHECK: %[[READ:.*]] = "tf.ReadVariableOp"(%[[VH]]) 281 // CHECK: %[[VH:.*]] = "tf.VarHandleOp"() 285 // CHECK: %[[READ:.*]] = "tf.ReadVariableOp"(%[[VH]]) [all …]
|
/external/kotlinx.atomicfu/ |
D | README.md | 162 variant = "FU" // JVM transformation variant: FU,VH, or BOTH 211 <!-- "VH" to use Java 9 VarHandle, "BOTH" to produce multi-version code --> 249 variant = "VH" 262 If you configure `variant = "VH"` an array will be transformed to plain array using
|
/external/kotlinx.atomicfu/atomicfu/ |
D | build.gradle | 225 args = [classesPreAtomicFuDir, classesPostTransformVH, "VH"]
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 1540 for (auto &VH : InlinedFunctionInfo.OperandBundleCallSites) { in InlineFunction() local 1541 Instruction *I = dyn_cast_or_null<Instruction>(VH); in InlineFunction() 1584 VH = nullptr; in InlineFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 1760 for (auto &VH : InlinedFunctionInfo.OperandBundleCallSites) { in InlineFunction() local 1761 Instruction *I = dyn_cast_or_null<Instruction>(VH); in InlineFunction() 1806 VH = nullptr; in InlineFunction()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 1827 for (auto &VH : InlinedFunctionInfo.OperandBundleCallSites) { in InlineFunction() local 1828 CallBase *ICS = dyn_cast_or_null<CallBase>(VH); in InlineFunction() 1868 VH = nullptr; in InlineFunction()
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Despeckle.miff | 15 …�a��g��ol�e[K:]M=_N=_O=_O>`P=`P@aZ`rt�uv�sx�|�ŝ�ż��İ��tZ�QM�LL�?<�?6�?8�C:�VH�@4�:2�;1�:1�81�9/�95…
|
D | GaussianBlur.miff | 15 …tGa|Fe�Gi�Jk�Kl�Mm�Nn�On�PQK>RL?SN@WQD[VKb\Wibfohtrk|qj|mgviclf`be]Xh[QqYL�VH�PD�H=�A7�<1�:.�9+�9*…
|
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | AtomicFUTransformer.kt | 142 enum class Variant { FU, VH, BOTH } 165 val vh = variant == Variant.VH in transform()
|
/external/ImageMagick/PerlMagick/t/reference/jpeg/ |
D | write_non_interlaced.miff | 16 …�J@�`[�lo�js�co�}��bo�����r6P5���������������������������PN5XS=XS@RK;PF:TH<VH;UE8b[H{����җ�ޕ�ŏ��z…
|
D | read_plane_interlaced.miff | 16 …�J@�`[�lo�js�co�|��bo�����r7O5���������������������������PN5XS=XS@RK;PF:TH<VH;UE8b[H{����җ�ޕ�ŏ��z…
|