Home
last modified time | relevance | path

Searched refs:AAR (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DAliasAnalysis.h782 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 …]
DBasicAliasAnalysis.h264 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/
DAliasAnalysis.cpp796 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/
Dbuild_aar_module_test.dart55 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');
Dbuild_aar_plugin_test.dart42 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.');
Dgradle_plugins_without_annotations_test.dart17 /// `com.android.support:support-annotations:+` dependency can be built as AAR.
Drun_release_test.dart61 // TODO(blasten): Remove this and the one below once the migration to AAR is completed.
/third_party/skia/modules/androidkit/
DREADME1 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/
Daar.dart16 /// 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/
Dbuild_aar.dart16 /// 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/
DAMDGPUAliasAnalysis.h107 [](Pass &P, Function &, AAResults &AAR) { in AMDGPUExternalAAWrapper()
109 AAR.addAAResult(WrapperPass->getResult()); in AMDGPUExternalAAWrapper()
DAMDGPUTargetMachine.cpp709 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/
DFunctionAttrs.cpp110 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 …]
DArgumentPromotion.cpp571 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()
DInliner.cpp282 AAResults &AAR = AARGetter(*Callee); in InlineCallIfPossible() local
286 InlineResult IR = InlineFunction(CS, IFI, &AAR, InsertLifetime); in InlineCallIfPossible()
DAttributor.cpp2487 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/
Daar_init_script.gradle8 // 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/
DFunctionAttrs.h39 MemoryAccessKind computeFunctionBodyMemoryAccess(Function &F, AAResults &AAR);
/third_party/eudev/hwdb/
D20-pci-vendor-model.hwdb23517 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/
D0001-cve.patch69053 z;LM`mh3dfnLi;;AGdeMLbjkPBF9yhjzceXNU`H2$AAR}gBJf}ncm~T9ONIGO=wYru