Home
last modified time | relevance | path

Searched defs:AI (Results 1 – 25 of 511) sorted by relevance

12345678910>>...21

/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-atomic.hh59 #define hb_atomic_int_impl_add(AI, V) __atomic_fetch_add ((AI), (V), __ATOMIC_ACQ_REL) argument
60 #define hb_atomic_int_impl_set_relaxed(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELAXED) argument
61 #define hb_atomic_int_impl_set(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELEASE) argument
62 #define hb_atomic_int_impl_get_relaxed(AI) __atomic_load_n ((AI), __ATOMIC_RELAXED) argument
63 #define hb_atomic_int_impl_get(AI) __atomic_load_n ((AI), __ATOMIC_ACQUIRE) argument
87 #define hb_atomic_int_impl_add(AI, V) (reinterpret_cast<std::atomic<std::decay<decltype (*(AI))>::… argument
88 #define hb_atomic_int_impl_set_relaxed(AI, V) (reinterpret_cast<std::atomic<std::decay<decltype (*(… argument
89 #define hb_atomic_int_impl_set(AI, V) (reinterpret_cast<std::atomic<std::decay<decltype (*(AI))>::… argument
90 #define hb_atomic_int_impl_get_relaxed(AI) (reinterpret_cast<std::atomic<std::decay<decltype (*(AI)… argument
91 #define hb_atomic_int_impl_get(AI) (reinterpret_cast<std::atomic<std::decay<decltype (*(AI))>::typ… argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/CodeGen/
DCGFunctionInfo.h145 auto AI = ABIArgInfo(Direct); variable
154 auto AI = getDirect(T); variable
161 auto AI = ABIArgInfo(Extend); variable
172 auto AI = ABIArgInfo(Extend); variable
191 auto AI = getExtend(Ty, T); variable
201 auto AI = ABIArgInfo(Indirect); variable
214 auto AI = ABIArgInfo(IndirectAliased); variable
224 auto AI = getIndirect(Alignment, ByVal, Realign); variable
229 auto AI = ABIArgInfo(InAlloca); variable
235 auto AI = ABIArgInfo(Expand); in getExpand() local
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/CodeGen/
DCGFunctionInfo.h145 auto AI = ABIArgInfo(Direct); variable
154 auto AI = getDirect(T); variable
161 auto AI = ABIArgInfo(Extend); variable
172 auto AI = ABIArgInfo(Extend); variable
191 auto AI = getExtend(Ty, T); variable
201 auto AI = ABIArgInfo(Indirect); variable
214 auto AI = ABIArgInfo(IndirectAliased); variable
224 auto AI = getIndirect(Alignment, ByVal, Realign); variable
229 auto AI = ABIArgInfo(InAlloca); variable
235 auto AI = ABIArgInfo(Expand); in getExpand() local
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/CodeGen/
DCGFunctionInfo.h145 auto AI = ABIArgInfo(Direct); variable
154 auto AI = getDirect(T); variable
161 auto AI = ABIArgInfo(Extend); variable
172 auto AI = ABIArgInfo(Extend); variable
191 auto AI = getExtend(Ty, T); variable
201 auto AI = ABIArgInfo(Indirect); variable
214 auto AI = ABIArgInfo(IndirectAliased); variable
224 auto AI = getIndirect(Alignment, ByVal, Realign); variable
229 auto AI = ABIArgInfo(InAlloca); variable
235 auto AI = ABIArgInfo(Expand); in getExpand() local
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/CodeGen/
DCGFunctionInfo.h145 auto AI = ABIArgInfo(Direct); variable
154 auto AI = getDirect(T); variable
161 auto AI = ABIArgInfo(Extend); variable
172 auto AI = ABIArgInfo(Extend); variable
191 auto AI = getExtend(Ty, T); variable
201 auto AI = ABIArgInfo(Indirect); variable
214 auto AI = ABIArgInfo(IndirectAliased); variable
224 auto AI = getIndirect(Alignment, ByVal, Realign); variable
229 auto AI = ABIArgInfo(InAlloca); variable
235 auto AI = ABIArgInfo(Expand); in getExpand() local
[all …]
/aosp_15_r20/external/llvm/unittests/Transforms/Utils/
H A DIntegerDivision.cpp37 Function::arg_iterator AI = F->arg_begin(); in TEST() local
67 Function::arg_iterator AI = F->arg_begin(); in TEST() local
97 Function::arg_iterator AI = F->arg_begin(); in TEST() local
127 Function::arg_iterator AI = F->arg_begin(); in TEST() local
158 Function::arg_iterator AI = F->arg_begin(); in TEST() local
188 Function::arg_iterator AI = F->arg_begin(); in TEST() local
218 Function::arg_iterator AI = F->arg_begin(); in TEST() local
248 Function::arg_iterator AI = F->arg_begin(); in TEST() local
/aosp_15_r20/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h124 auto AI = ABIArgInfo(Direct); variable
132 auto AI = getDirect(T); variable
137 auto AI = ABIArgInfo(Extend); variable
144 auto AI = getExtend(T); variable
154 auto AI = ABIArgInfo(Indirect); variable
164 auto AI = getIndirect(Alignment, ByVal, Realign); variable
169 auto AI = ABIArgInfo(InAlloca); in getInAlloca() local
174 auto AI = ABIArgInfo(Expand); in getExpand() local
180 auto AI = getExpand(); in getExpandWithPadding() local
219 auto AI = ABIArgInfo(CoerceAndExpand); in getCoerceAndExpand() local
/aosp_15_r20/external/llvm/tools/sancov/
H A Dsancov.cc257 bool isBlacklisted(const AddrInfo &AI) { in isBlacklisted()
685 group_by(AllAddrInfo, [](const AddrInfo &AI) { return AI.FileName; }); in computeFileCoverage()
687 group_by(CovAddrInfo, [](const AddrInfo &AI) { return AI.FileName; }); in computeFileCoverage()
708 auto AllLocs = group_by(AllAddrInfo, [](const AddrInfo &AI) { in computeLineStatusMap()
711 auto CovLocs = group_by(CovAddrInfo, [](const AddrInfo &AI) { in computeLineStatusMap()
731 for (const auto &AI : AllAddrInfo) { in computeAllFunctions() local
739 auto CovFns = group_by(CovAddrInfo, [](const AddrInfo &AI) { in computeCoveredFunctions()
752 auto AllFns = group_by(AllAddrInfo, [](const AddrInfo &AI) { in computeNotCoveredFunctions()
755 auto CovFns = group_by(CovAddrInfo, [](const AddrInfo &AI) { in computeNotCoveredFunctions()
770 auto AllFns = group_by(AllAddrInfo, [](const AddrInfo &AI) { in computeFunctionsCoverage()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp271 AllocaInst *AI; member
393 bool AArch64StackTagging::isInterestingAlloca(const AllocaInst &AI) { in isInterestingAlloca()
407 void AArch64StackTagging::tagAlloca(AllocaInst *AI, Instruction *InsertBefore, in tagAlloca()
428 void AArch64StackTagging::untagAlloca(AllocaInst *AI, Instruction *InsertBefore, in untagAlloca()
442 AllocaInst *AI = Info.AI; in insertBaseTaggedPointer() local
532 if (auto *AI = dyn_cast<AllocaInst>(I)) { in runOnFunction() local
538 if (auto *AI = in runOnFunction() local
548 AllocaInst *AI = in runOnFunction() local
616 AllocaInst *AI = Info.AI; in runOnFunction() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Utils/
H A DMemoryTaggingSupport.cpp118 if (AllocaInst *AI = dyn_cast<AllocaInst>(&Inst)) { in visit() local
127 AllocaInst *AI = findAllocaForValue(II->getArgOperand(1)); in visit() local
142 if (auto *AI = dyn_cast_or_null<AllocaInst>(V)) { in visit() local
157 bool StackInfoBuilder::isInterestingAlloca(const AllocaInst &AI) { in isInterestingAlloca()
175 uint64_t getAllocaSizeInBytes(const AllocaInst &AI) { in getAllocaSizeInBytes()
H A DPromoteMemoryToRegister.cpp63 bool llvm::isAllocaPromotable(const AllocaInst *AI) { in isAllocaPromotable()
111 void init(AllocaInst *AI) { in init()
399 static void removeIntrinsicUsers(AllocaInst *AI) { in removeIntrinsicUsers()
441 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, in rewriteSingleStoreAlloca()
543 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, in promoteSingleBlockAlloca()
646 AllocaInst *AI = Allocas[AllocaNum]; in run() local
880 AllocaInst *AI, AllocaInfo &Info, in ComputeLiveInBlocks()
1048 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); in RenamePass() local
/aosp_15_r20/external/intel-media-driver/media_softlet/agnostic/common/vp/cm_fc_ld/
H A DPatchInfoRecord.h203 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in appendRegAcc() local
249 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isDef() local
258 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isUse() local
267 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isDefOnly() local
276 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isUseOnly() local
285 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isDefByToken() local
294 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isUseByToken() local
303 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isDefNotByToken() local
312 for (auto AI = AccList.begin(), AE = AccList.end(); AI != AE; ++AI) { in isUseNotByToken() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DStackProtector.cpp164 bool StackProtector::HasAddressTaken(const Instruction *AI) { in HasAddressTaken()
282 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in RequiresStackProtector() local
388 const TargetLoweringBase *TLI, AllocaInst *&AI) { in CreatePrologue()
414 AllocaInst *AI = nullptr; // Place on stack that stores the stack guard. in InsertStackProtectors() local
561 const AllocaInst *AI = MFI.getObjectAllocation(I); in copyToMachineFrameInfo() local
H A DAggressiveAntiDepBreaker.cpp164 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
182 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
314 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) in HandleLastUse() local
397 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local
428 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in PrescanInstruction() local
688 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { in FindSuitableFreeRegisters() local
927 for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI) in BreakAntiDependencies() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DStackProtector.cpp169 bool StackProtector::HasAddressTaken(const Instruction *AI, in HasAddressTaken()
313 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in RequiresStackProtector() local
425 const TargetLoweringBase *TLI, AllocaInst *&AI) { in CreatePrologue()
450 AllocaInst *AI = nullptr; // Place on stack that stores the stack guard. in InsertStackProtectors() local
625 const AllocaInst *AI = MFI.getObjectAllocation(I); in copyToMachineFrameInfo() local
H A DAggressiveAntiDepBreaker.cpp157 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
175 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
305 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) in HandleLastUse() local
387 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local
417 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in PrescanInstruction() local
673 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { in FindSuitableFreeRegisters() local
906 for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI) in BreakAntiDependencies() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp64 bool llvm::isAllocaPromotable(const AllocaInst *AI) { in isAllocaPromotable()
315 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) { in removeLifetimeIntrinsicUsers()
347 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, in rewriteSingleStoreAlloca()
444 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, in promoteSingleBlockAlloca()
541 AllocaInst *AI = Allocas[AllocaNum]; in run() local
774 AllocaInst *AI, AllocaInfo &Info, in ComputeLiveInBlocks()
940 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); in RenamePass() local
/aosp_15_r20/external/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp51 bool llvm::isAllocaPromotable(const AllocaInst *AI) { in isAllocaPromotable()
304 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) { in removeLifetimeIntrinsicUsers()
336 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, in rewriteSingleStoreAlloca()
436 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, in promoteSingleBlockAlloca()
529 AllocaInst *AI = Allocas[AllocaNum]; in run() local
776 AllocaInst *AI, AllocaInfo &Info, in ComputeLiveInBlocks()
935 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); in RenamePass() local
/aosp_15_r20/external/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp153 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
169 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
301 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) in HandleLastUse() local
379 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local
410 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in PrescanInstruction() local
670 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { in FindSuitableFreeRegisters() local
910 for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI) in BreakAntiDependencies() local
H A DStackProtector.cpp166 bool StackProtector::HasAddressTaken(const Instruction *AI) { in HasAddressTaken()
237 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in RequiresStackProtector() local
319 const TargetLoweringBase *TLI, AllocaInst *&AI) { in CreatePrologue()
340 AllocaInst *AI = nullptr; // Place on stack that stores the stack guard. in InsertStackProtectors() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp154 ConstantRange getStaticAllocaSizeRange(const AllocaInst &AI) { in getStaticAllocaSizeRange()
210 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in print() local
341 bool StackSafetyLocalAnalysis::isSafeAccess(const Use &U, AllocaInst *AI, in isSafeAccess()
346 bool StackSafetyLocalAnalysis::isSafeAccess(const Use &U, AllocaInst *AI, in isSafeAccess()
355 bool StackSafetyLocalAnalysis::isSafeAccess(const Use &U, AllocaInst *AI, in isSafeAccess()
399 AllocaInst *AI = dyn_cast<AllocaInst>(Ptr); in analyzeAllUses() local
530 if (auto *AI = dyn_cast<AllocaInst>(&I)) in run() local
535 for (auto *AI : Allocas) { in run() local
891 const AllocaInst *AI = KV.first; in getInfo() local
H A DStackLifetime.cpp45 bool StackLifetime::isAliveAfter(const AllocaInst *AI, in isAliveAfter()
66 const AllocaInst *AI = findAllocaForValue(II.getArgOperand(1), true); in findMatchingAlloca() local
98 const AllocaInst *AI = findMatchingAlloca(*II, DL); in collectMarkers() local
405 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) in run() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp759 static uint64_t getAllocaSizeInBytes(const AllocaInst &AI) { in getAllocaSizeInBytes()
771 bool HWAddressSanitizer::tagAlloca(IRBuilder<> &IRB, AllocaInst *AI, in tagAlloca()
852 AllocaInst *AI, unsigned AllocaNo) { in getAllocaTag()
1027 auto *AI = Allocas[N]; in instrumentStack() local
1067 bool HWAddressSanitizer::isInterestingAlloca(const AllocaInst &AI) { in isInterestingAlloca()
1100 if (AllocaInst *AI = dyn_cast<AllocaInst>(&Inst)) { in sanitizeFunction() local
1195 if (auto *AI = in sanitizeFunction() local
1213 if (auto *AI = dyn_cast<AllocaInst>(I)) in sanitizeFunction() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp443 if (auto *AI = dyn_cast<AllocaInst>(CurrentDef)) { in buildFrameType() local
624 if (auto *AI = dyn_cast<AllocaInst>(Orig)) { in insertSpills() local
662 if (auto *AI = dyn_cast<AllocaInst>(CurrentValue)) { in insertSpills() local
1043 static bool isLocalAlloca(CoroAllocaAllocInst *AI) { in isLocalAlloca()
1076 static bool localAllocaNeedsStackSave(CoroAllocaAllocInst *AI) { in localAllocaNeedsStackSave()
1096 for (auto AI : LocalAllocas) { in lowerLocalAllocas() local
1138 static Instruction *lowerNonLocalAlloca(CoroAllocaAllocInst *AI, in lowerNonLocalAlloca()
1398 if (auto AI = dyn_cast<CoroAllocaAllocInst>(&I)) { in buildCoroutineFrame() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp473 [[nodiscard]] FieldIDType addFieldForAlloca(AllocaInst *AI, in addFieldForAlloca()
1341 auto *AI = dyn_cast<AllocaInst>(SI.getPointerOperand()); in visitStoreInst() local
1605 if (auto *AI = dyn_cast<AllocaInst>(Orig)) { in insertSpills() local
1618 if (auto *AI = dyn_cast<AllocaInst>(Orig)) { in insertSpills() local
2195 static bool isLocalAlloca(CoroAllocaAllocInst *AI) { in isLocalAlloca()
2228 static bool localAllocaNeedsStackSave(CoroAllocaAllocInst *AI) { in localAllocaNeedsStackSave()
2248 for (auto *AI : LocalAllocas) { in lowerLocalAllocas() local
2290 static Instruction *lowerNonLocalAlloca(CoroAllocaAllocInst *AI, in lowerNonLocalAlloca()
2539 AllocaInst* AI = dyn_cast<AllocaInst>(&I); in sinkLifetimeStartMarkers() local
2553 auto collectLifetimeStart = [&](Instruction *U, AllocaInst *AI) { in sinkLifetimeStartMarkers()
[all …]

12345678910>>...21