/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | AliasSetTracker.cpp | 53 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) { in mergeSetIn() argument 54 assert(!AS.Forward && "Alias set is already forwarding!"); in mergeSetIn() 59 Access |= AS.Access; in mergeSetIn() 60 Alias |= AS.Alias; in mergeSetIn() 68 PointerRec *R = AS.getSomePointer(); in mergeSetIn() 80 if (AS.Alias == SetMustAlias) in mergeSetIn() 81 AST.TotalMayAliasSetSize += AS.size(); in mergeSetIn() 84 bool ASHadUnknownInsts = !AS.UnknownInsts.empty(); in mergeSetIn() 87 std::swap(UnknownInsts, AS.UnknownInsts); in mergeSetIn() 91 UnknownInsts.insert(UnknownInsts.end(), AS in mergeSetIn() 114 removeAliasSet(AliasSet *AS) removeAliasSet() argument 566 AliasSet *AS = PtrValEnt->getAliasSet(*this); deleteValue() local 600 AliasSet *AS = I->second->getAliasSet(*this); copyValue() local 644 AliasSet &AS = getAliasSetFor(Loc); addPointer() local [all...] |
H A D | ScalarEvolutionAliasAnalysis.cpp | 34 const SCEV *AS = SE.getSCEV(const_cast<Value *>(LocA.Ptr)); in alias() local 38 if (AS == BS) in alias() 43 if (SE.getEffectiveSCEVType(AS->getType()) == in alias() 45 unsigned BitWidth = SE.getTypeSizeInBits(AS->getType()); in alias() 54 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() 64 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS in alias() 68 const SCEV *AB = SE.getMinusSCEV(AS, BS); in alias() 81 Value *AO = GetBaseValue(AS); in alias()
|
H A D | StackSafetyAnalysis.cpp | 182 for (auto &AS : Allocas) in print() 183 O << " " << AS << "\n"; in print() local 218 bool analyzeAllUses(const Value *Ptr, UseInfo &AS); 379 AllocaInfo &AS = Info.Allocas.back(); in run() local 380 analyzeAllUses(AI, AS.Use); in run() 485 for (auto &AS : FS.Allocas) in updateOneNode() 486 Changed |= updateOneUse(AS.Use, UpdateToFullSet); in updateOneNode() 510 for (auto &AS : FS.Allocas) in runDataFlow() 511 for (auto &CS : AS.Use.Calls) in runDataFlow()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Type.cpp | 188 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) { in getHalfPtrTy() argument 189 return getHalfTy(C)->getPointerTo(AS); in getHalfPtrTy() 192 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) { in getFloatPtrTy() argument 193 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy() 196 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) { in getDoublePtrTy() argument 197 return getDoubleTy(C)->getPointerTo(AS); in getDoublePtrTy() 200 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) { in getX86_FP80PtrTy() argument 201 return getX86_FP80Ty(C)->getPointerTo(AS); in getX86_FP80PtrTy() 204 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) { in getFP128PtrTy() argument 205 return getFP128Ty(C)->getPointerTo(AS); in getFP128PtrTy() 208 getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) getPPC_FP128PtrTy() argument 212 getX86_MMXPtrTy(LLVMContext &C, unsigned AS) getX86_MMXPtrTy() argument 216 getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) getIntNPtrTy() argument 220 getInt1PtrTy(LLVMContext &C, unsigned AS) getInt1PtrTy() argument 224 getInt8PtrTy(LLVMContext &C, unsigned AS) getInt8PtrTy() argument 228 getInt16PtrTy(LLVMContext &C, unsigned AS) getInt16PtrTy() argument 232 getInt32PtrTy(LLVMContext &C, unsigned AS) getInt32PtrTy() argument 236 getInt64PtrTy(LLVMContext &C, unsigned AS) getInt64PtrTy() argument [all...] |
H A D | DataLayout.cpp | 249 unsigned AS = getInt(Split.first); in parseSpecifier() local 250 if (AS == 0) in parseSpecifier() 252 NonIntegralAddressSpaces.push_back(AS); in parseSpecifier() 636 Align DataLayout::getPointerABIAlignment(unsigned AS) const { 637 PointersTy::const_iterator I = findPointerLowerBound(AS); 638 if (I == Pointers.end() || I->AddressSpace != AS) { 645 Align DataLayout::getPointerPrefAlignment(unsigned AS) const { 646 PointersTy::const_iterator I = findPointerLowerBound(AS); 647 if (I == Pointers.end() || I->AddressSpace != AS) { 654 unsigned DataLayout::getPointerSize(unsigned AS) cons [all...] |
H A D | Statepoint.cpp | 60 llvm::parseStatepointDirectivesFromAttrs(AttributeList AS) { in parseStatepointDirectivesFromAttrs() argument 64 AS.getAttribute(AttributeList::FunctionIndex, "statepoint-id"); in parseStatepointDirectivesFromAttrs() 71 Attribute AttrNumPatchBytes = AS.getAttribute(AttributeList::FunctionIndex, in parseStatepointDirectivesFromAttrs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Type.h | 445 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0); 446 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0); 447 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0); 448 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0); 449 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0); 450 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0); 451 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0); 452 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0); 453 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0); 454 static PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS [all...] |
H A D | DataLayout.h | 351 Align getPointerABIAlignment(unsigned AS) const; 356 Align getPointerPrefAlignment(unsigned AS = 0) const; 361 unsigned getPointerSize(unsigned AS = 0) const; 367 unsigned getIndexSize(unsigned AS) const; 392 unsigned getPointerSizeInBits(unsigned AS = 0) const { in getPointerSizeInBits() 393 return getPointerSize(AS) * 8; in getPointerSizeInBits() 402 unsigned getIndexSizeInBits(unsigned AS) const { in getIndexSizeInBits() 403 return getIndexSize(AS) * 8; in getIndexSizeInBits()
|
H A D | Attributes.h | 253 AttributeSet AS) const; 321 static unsigned getHashValue(AttributeSet AS) { in getHashValue() 322 return (unsigned((uintptr_t)AS.SetNode) >> 4) ^ in getHashValue() 323 (unsigned((uintptr_t)AS.SetNode) >> 9); in getHashValue() 690 static unsigned getHashValue(AttributeList AS) { in getHashValue() 691 return (unsigned((uintptr_t)AS.pImpl) >> 4) ^ in getHashValue() 692 (unsigned((uintptr_t)AS.pImpl) >> 9); in getHashValue() 723 AttrBuilder(AttributeList AS, unsigned Idx); 724 AttrBuilder(AttributeSet AS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A D | Type.h | 400 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0); 401 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0); 402 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0); 403 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0); 404 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0); 405 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0); 406 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0); 407 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0); 408 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0); 409 static PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | AliasSetTracker.h | 55 AliasSet *AS = nullptr; member in llvm::AliasSet::PointerRec 70 bool hasAliasSet() const { return AS != nullptr; } in hasAliasSet() 117 assert(AS && "No AliasSet yet!"); in getAliasSet() 118 if (AS->Forward) { in getAliasSet() 119 AliasSet *OldAS = AS; in getAliasSet() 120 AS = OldAS->getForwardedTarget(AST); in getAliasSet() 121 AS->addRef(); in getAliasSet() 124 return AS; in getAliasSet() 128 assert(!AS && "Already have an alias set!"); in setAliasSet() 129 AS in setAliasSet() 323 operator <<(raw_ostream &OS, const AliasSet &AS) operator <<() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
H A D | Target.cpp | 81 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) { in LLVMPointerSizeForAS() argument 82 return unwrap(TD)->getPointerSize(AS); in LLVMPointerSizeForAS() 89 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS) { in LLVMIntPtrTypeForAS() argument 90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()), AS)); in LLVMIntPtrTypeForAS() 97 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, unsigned AS) { in LLVMIntPtrTypeForASInContext() argument 98 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS)); in LLVMIntPtrTypeForASInContext()
|
/third_party/skia/platform_tools/android/apps/skottie/ |
H A D | skottie_metric.sql | 3 CREATE VIEW dequeue_buffer AS 17 CREATE VIEW test_start_ts AS 30 CREATE VIEW startup_time AS 43 CREATE VIEW hwui_draw_frame2 AS 57 CREATE VIEW skottie_animator AS 72 CREATE VIEW total_cpu_time AS 86 CREATE VIEW cpu_time_rt_hwui_tasks AS 96 CREATE VIEW cpu_time_ui_thread AS 107 CREATE VIEW cpu_time_rt AS 117 CREATE VIEW cpu_time_skottie_animator AS [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFAcceleratorTable.cpp | 379 Error DWARFDebugNames::Header::extract(const DWARFDataExtractor &AS, in extract() argument 382 if (!AS.isValidOffset(*Offset + sizeof(HeaderPOD) - 1)) in extract() 386 UnitLength = AS.getU32(Offset); in extract() 387 Version = AS.getU16(Offset); in extract() 388 Padding = AS.getU16(Offset); in extract() 389 CompUnitCount = AS.getU32(Offset); in extract() 390 LocalTypeUnitCount = AS.getU32(Offset); in extract() 391 ForeignTypeUnitCount = AS.getU32(Offset); in extract() 392 BucketCount = AS.getU32(Offset); in extract() 393 NameCount = AS in extract() 484 const DWARFDataExtractor &AS = Section.AccelSection; extract() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonBlockRanges.cpp | 36 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); in overlaps() local 37 if (AS == S) in overlaps() 40 bool ASbE = (AS < E) || (AS == E && TiedEnd); // AS-before-E. in overlaps() 41 if ((AS < S && SbAE) || (S < AS && ASbE)) in overlaps() 61 IndexType AS = A.start(), AE = A.end(); in merge() local 62 if (AS < start() || start() == IndexType::None) in merge() 63 setStart(AS); in merge() 115 IndexType AS = A.start(), AE = A.end(); addsub() local [all...] |
H A D | RDFRegisters.cpp | 103 std::set<RegisterId> AS; in getAliasSet() local 111 AS.insert(i); in getAliasSet() 116 AS.insert(MI); in getAliasSet() 118 return AS; in getAliasSet() 122 AS.insert(*AI); in getAliasSet() 126 AS.insert(MI); in getAliasSet() 128 return AS; in getAliasSet()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopVersioningLICM.cpp | 283 const AliasSet &AS = I; in legalLoopMemoryAccesses() local 286 if (AS.isForwardingAliasSet()) in legalLoopMemoryAccesses() 289 if (AS.isMustAlias()) in legalLoopMemoryAccesses() 291 Value *SomePtr = AS.begin()->getValue(); in legalLoopMemoryAccesses() 294 HasMayAlias |= AS.isMayAlias(); in legalLoopMemoryAccesses() 295 HasMod |= AS.isMod(); in legalLoopMemoryAccesses() 296 for (const auto &A : AS) { in legalLoopMemoryAccesses()
|
H A D | SROA.cpp | 655 AllocaSlices &AS; 664 SliceBuilder(const DataLayout &DL, AllocaInst &AI, AllocaSlices &AS) 666 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), AS(AS) {} 671 AS.DeadUsers.push_back(&I); 683 << " alloca: " << AS.AI << "\n" 702 << " alloca: " << AS.AI << "\n" 707 AS.Slices.push_back(Slice(BeginOffset, EndOffset, U, IsSplittable)); 819 << " alloca: " << AS.AI << "\n" 880 AS [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIISelLowering.h | 123 SDValue getSegmentAperture(unsigned AS, const SDLoc &DL, 140 unsigned AS, 240 unsigned AS, 243 bool canMergeStoresTo(unsigned AS, EVT MemVT, 247 unsigned Size, unsigned AS, unsigned Align, 252 EVT VT, unsigned AS, unsigned Align, 265 static bool isFlatGlobalAddrSpace(unsigned AS) { in isFlatGlobalAddrSpace() argument 266 return AS == AMDGPUAS::GLOBAL_ADDRESS || in isFlatGlobalAddrSpace() 267 AS == AMDGPUAS::FLAT_ADDRESS || in isFlatGlobalAddrSpace() 268 AS in isFlatGlobalAddrSpace() [all...] |
H A D | AMDGPUAliasAnalysis.cpp | 95 unsigned AS = Base->getType()->getPointerAddressSpace(); in pointsToConstantMemory() local 96 if (AS == AMDGPUAS::CONSTANT_ADDRESS || in pointsToConstantMemory() 97 AS == AMDGPUAS::CONSTANT_ADDRESS_32BIT) { in pointsToConstantMemory()
|
H A D | AMDGPUAlwaysInlinePass.cpp | 121 unsigned AS = GV.getAddressSpace(); in runOnModule() local 122 if (AS != AMDGPUAS::LOCAL_ADDRESS && AS != AMDGPUAS::REGION_ADDRESS) in runOnModule()
|
/third_party/ltp/include/mk/ |
H A D | rules.mk | 5 $(AS) $(ASFLAGS) -c -o $@ $< 7 @$(AS) $(ASFLAGS) -c -o $@ $< 8 @echo AS $(target_rel_dir)$@
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
H A D | SROA.h | 125 bool presplitLoadsAndStores(AllocaInst &AI, sroa::AllocaSlices &AS); 126 AllocaInst *rewritePartition(AllocaInst &AI, sroa::AllocaSlices &AS, 128 bool splitAlloca(AllocaInst &AI, sroa::AllocaSlices &AS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | Target.h | 226 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS); 235 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS); 245 unsigned AS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetTransformInfo.cpp | 81 unsigned AS = LI->getPointerAddressSpace(); in isSourceOfDivergence() local 82 return AS == ADDRESS_SPACE_GENERIC || AS == ADDRESS_SPACE_LOCAL; in isSourceOfDivergence()
|