/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 782 BatchAAResults(AAResults &AAR) : AA(AAR), AAQI() {} in BatchAAResults() argument 891 explicit Model(AAResultT &Result, AAResults &AAR) : Result(Result) { in Model() argument 892 Result.setAAResults(&AAR); in Model() 952 AAResults *AAR = nullptr; variable 959 void setAAResults(AAResults *NewAAR) { AAR = NewAAR; } in setAAResults() 966 AAResults *AAR; variable 970 AAResultsProxy(AAResults *AAR, DerivedT &CurrentResult) in AAResultsProxy() argument 971 : AAR(AAR), CurrentResult(CurrentResult) {} in AAResultsProxy() 975 return AAR ? AAR->alias(LocA, LocB, AAQI) in alias() 981 return AAR ? AAR->pointsToConstantMemory(Loc, AAQI, OrLocal) in pointsToConstantMemory() [all …]
|
D | BasicAliasAnalysis.h | 264 Optional<AAResults> AAR; variable 270 AAR.emplace(createLegacyPMAAResults(P, F, *BAR)); in operator() 271 return *AAR; in operator()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | AliasAnalysis.cpp | 796 AAR.reset( in runOnFunction() 804 AAR->addAAResult(getAnalysis<BasicAAWrapperPass>().getResult()); in runOnFunction() 808 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 810 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 813 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 815 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 817 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 819 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 821 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction() 827 WrapperPass->CB(*this, F, *AAR); in runOnFunction() [all …]
|
/third_party/flutter/flutter/dev/devicelab/bin/tasks/ |
D | build_aar_module_test.dart | 55 section('Build release AAR'); 138 section('Check assets in release AAR'); 156 section('Check AOT blobs in release AAR'); 165 section('Build debug AAR'); 241 section('Check assets in debug AAR'); 263 section('Check AOT blobs in debug AAR');
|
D | build_aar_plugin_test.dart | 42 section('Build release AAR'); 70 return TaskResult.failure('Failed to build the release AAR file.'); 88 section('Build debug AAR'); 113 return TaskResult.failure('Failed to build the debug AAR file.');
|
D | gradle_plugins_without_annotations_test.dart | 17 /// `com.android.support:support-annotations:+` dependency can be built as AAR.
|
D | run_release_test.dart | 61 // TODO(blasten): Remove this and the one below once the migration to AAR is completed.
|
/third_party/skia/modules/androidkit/ |
D | README | 1 AndroidKit is an AAR, or Android Library, that compiles Skia's native code, 20 - The AAR will be under the build/outputs/aar directory. 24 - If it builds with no errors, you’ll find the AAR in the out directory you were building from
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/android/ |
D | aar.dart | 16 /// Provides a method to build a module or plugin as AAR. 18 /// Builds the AAR artifacts. 31 /// Builds the AAR and POM files for the current Flutter module or plugin.
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | build_aar.dart | 16 /// The AAR builder in the current context. 66 final String description = 'Build a repository containing an AAR and a POM file.\n\n' 67 'The POM file is used to include the dependencies that the AAR was compiled against.\n\n'
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAliasAnalysis.h | 107 [](Pass &P, Function &, AAResults &AAR) { in AMDGPUExternalAAWrapper() 109 AAR.addAAResult(WrapperPass->getResult()); in AMDGPUExternalAAWrapper()
|
D | AMDGPUTargetMachine.cpp | 709 AAResults &AAR) { in addIRPasses() argument 711 AAR.addAAResult(WrapperPass->getResult()); in addIRPasses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 110 AAResults &AAR, in checkFunctionMemoryAccess() argument 112 FunctionModRefBehavior MRB = AAR.getModRefBehavior(&F); in checkFunctionMemoryAccess() 144 FunctionModRefBehavior MRB = AAR.getModRefBehavior(Call); in checkFunctionMemoryAccess() 175 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess() 190 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess() 197 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess() 203 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess() 228 AAResults &AAR) { in computeFunctionBodyMemoryAccess() argument 229 return checkFunctionMemoryAccess(F, /*ThisBody=*/true, AAR, {}); in computeFunctionBodyMemoryAccess() 241 AAResults &AAR = AARGetter(*F); in addReadAttrs() local [all …]
|
D | ArgumentPromotion.cpp | 571 static bool isSafeToPromoteArgument(Argument *Arg, Type *ByValTy, AAResults &AAR, in isSafeToPromoteArgument() argument 688 return isSafeToPromoteArgument(Arg, ByValTy, AAR, MaxElements); in isSafeToPromoteArgument() 758 if (AAR.canInstructionRangeModRef(BB->front(), *Load, Loc, ModRefInfo::Mod)) in isSafeToPromoteArgument() 766 if (AAR.canBasicBlockModify(*TranspBB, Loc)) in isSafeToPromoteArgument() 929 AAResults &AAR = AARGetter(*F); in promoteArguments() local 1006 if (isSafeToPromoteArgument(PtrArg, ByValTy, AAR, MaxElements)) in promoteArguments()
|
D | Inliner.cpp | 282 AAResults &AAR = AARGetter(*Callee); in InlineCallIfPossible() local 286 InlineResult IR = InlineFunction(CS, IFI, &AAR, InsertLifetime); in InlineCallIfPossible()
|
D | Attributor.cpp | 2487 if (AAResults *AAR = A.getInfoCache().getAAResultsForFunction(*F)) { in updateImpl() local 2488 bool IsAliasing = !AAR->isNoAlias(&getAssociatedValue(), ArgOp); in updateImpl() 2492 << AAR->isNoAlias(&getAssociatedValue(), ArgOp) << " " in updateImpl()
|
/third_party/flutter/flutter/packages/flutter_tools/gradle/ |
D | aar_init_script.gradle | 8 // The local repository will contain the AAR and POM files. 21 throw new GradleException("Can't generate AAR on a non Android library project."); 80 throw new GradleException("Can't generate AAR for variant ${variantName}.");
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ |
D | FunctionAttrs.h | 39 MemoryAccessKind computeFunctionBodyMemoryAccess(Function &F, AAResults &AAR);
|
/third_party/eudev/hwdb/ |
D | 20-pci-vendor-model.hwdb | 23517 ID_MODEL_FROM_DATABASE=Adaptec AAR-1210SA SATA HostRAID Controller 91728 ID_MODEL_FROM_DATABASE=AAC-RAID (AAR-2610SA) 91794 ID_MODEL_FROM_DATABASE=AAC-RAID (AAR-2410SA PCI SATA 4ch (Jaguar II)) 91797 ID_MODEL_FROM_DATABASE=AAC-RAID (AAR-2810SA PCI SATA 8ch (Corsair-8)) 91800 ID_MODEL_FROM_DATABASE=AAC-RAID (AAR-21610SA PCI SATA 16ch (Corsair-16))
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 69053 z;LM`mh3dfnLi;;AGdeMLbjkPBF9yhjzceXNU`H2$AAR}gBJf}ncm~T9ONIGO=wYru
|