| /external/harfbuzz_ng/src/ |
| D | hb-atomic-private.hh | 62 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) argument 78 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) argument 95 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) argument 107 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (… argument 117 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument 126 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument
|
| /external/llvm/unittests/Transforms/Utils/ |
| D | IntegerDivision.cpp | 37 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
|
| /external/llvm/lib/CodeGen/ |
| D | MachineCopyPropagation.cpp | 70 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in SourceNoLongerAvailable() local 194 for (MCRegAliasIterator AI(Src, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local 218 for (MCRegAliasIterator AI(Def, TRI, false); AI.isValid(); ++AI) { in CopyPropagateBlock() local 262 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local 303 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local
|
| D | StackProtector.cpp | 155 bool StackProtector::HasAddressTaken(const Instruction *AI) { in HasAddressTaken() 213 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in RequiresStackProtector() local 333 AllocaInst *&AI, Value *&StackGuardVar) { in CreatePrologue() 372 AllocaInst *AI = nullptr; // Place on stack that stores the stack guard. in InsertStackProtectors() local
|
| D | AtomicExpandPass.cpp | 220 AtomicRMWInst *AI = in expandAtomicStore() local 229 bool AtomicExpand::tryExpandAtomicRMW(AtomicRMWInst *AI) { in tryExpandAtomicRMW() 285 bool AtomicExpand::expandAtomicRMWToLLSC(AtomicRMWInst *AI) { in expandAtomicRMWToLLSC() 340 bool AtomicExpand::expandAtomicRMWToCmpXchg(AtomicRMWInst *AI) { in expandAtomicRMWToCmpXchg()
|
| D | CriticalAntiDepBreaker.cpp | 62 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local 77 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local 191 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local 309 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in ScanInstruction() local
|
| D | AggressiveAntiDepBreaker.cpp | 154 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local 170 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local 303 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) in HandleLastUse() local 377 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local 408 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
|
| /external/llvm/lib/DebugInfo/DWARF/ |
| D | DWARFFormValue.cpp | 151 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr); in extractValue() local 190 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4); in extractValue() local 206 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4); in extractValue() local 227 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4); in extractValue() local
|
| /external/clang/include/clang/CodeGen/ |
| D | CGFunctionInfo.h | 103 auto AI = ABIArgInfo(Direct); variable 111 auto AI = getDirect(T); variable 116 auto AI = ABIArgInfo(Extend); variable 122 auto AI = getExtend(T); variable 132 auto AI = ABIArgInfo(Indirect); variable 142 auto AI = getIndirect(Alignment, ByVal, Realign); variable 147 auto AI = ABIArgInfo(InAlloca); in getInAlloca() local 156 auto AI = getExpand(); in getExpandWithPadding() local
|
| /external/llvm/lib/Transforms/Scalar/ |
| D | ScalarReplAggregates.cpp | 102 AllocaInst *AI; member 338 AllocaInst *ConvertToScalarInfo::TryConvert(AllocaInst *AI) { in TryConvert() 1050 AllocaInst *AI; member in __anon6e1092380411::AllocaPromoter 1059 void run(AllocaInst *AI, const SmallVectorImpl<Instruction*> &Insts) { in run() 1246 static bool tryToMakeAllocaBePromotable(AllocaInst *AI, const DataLayout &DL) { in tryToMakeAllocaBePromotable() 1431 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca? in performPromotion() local 1442 AllocaInst *AI = Allocas[i]; in performPromotion() local 1461 bool SROA::ShouldAttemptScalarRepl(AllocaInst *AI) { in ShouldAttemptScalarRepl() 1489 AllocaInst *AI = WorkList.back(); in performScalarRepl() local 1549 void SROA::DoScalarReplacement(AllocaInst *AI, in DoScalarReplacement() [all …]
|
| D | TailRecursionElimination.cpp | 147 if (AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { in CanTRE() local 261 if (AllocaInst *AI = dyn_cast<AllocaInst>(&I)) in markTails() local 484 for (Function::arg_iterator AI = F->arg_begin(); &*AI != Arg; ++AI) in isDynamicConstant() local 696 if (AllocaInst *AI = dyn_cast<AllocaInst>(OEBI++)) in EliminateRecursiveTailCall() local
|
| /external/clang/test/Modules/Inputs/merge-template-members/ |
| D | a1.h | 8 typedef A<int> AI; typedef
|
| D | a2.h | 8 typedef A<int> AI; typedef
|
| /external/llvm/lib/Transforms/Utils/ |
| D | PromoteMemoryToRegister.cpp | 61 bool llvm::isAllocaPromotable(const AllocaInst *AI) { in isAllocaPromotable() 320 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) { in removeLifetimeIntrinsicUsers() 352 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, in rewriteSingleStoreAlloca() 450 static void promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, in promoteSingleBlockAlloca() 537 AllocaInst *AI = Allocas[AllocaNum]; in run() local 777 AllocaInst *AI, AllocaInfo &Info, in ComputeLiveInBlocks() 851 void PromoteMem2Reg::DetermineInsertionPoint(AllocaInst *AI, unsigned AllocaNum, in DetermineInsertionPoint() 1027 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); in RenamePass() local
|
| D | MetaRenamer.cpp | 74 for (Module::alias_iterator AI = M.alias_begin(), AE = M.alias_end(); in runOnModule() local 119 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); in runOnFunction() local
|
| D | InstructionNamer.cpp | 35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); in runOnFunction() local
|
| D | InlineFunction.cpp | 490 for (ImmutableCallSite::arg_iterator AI = ICS.arg_begin(), in AddAliasScopeMetadata() local 813 static bool hasLifetimeMarkers(AllocaInst *AI) { in hasLifetimeMarkers() 900 if (auto *AI = dyn_cast<AllocaInst>(BI)) in fixupLineNumbers() local 1006 CallSite::arg_iterator AI = CS.arg_begin(); in InlineFunction() local 1074 AllocaInst *AI = dyn_cast<AllocaInst>(I++); in InlineFunction() local 1107 for (auto &AI : IFI.StaticAllocas) in InlineFunction() local 1155 AllocaInst *AI = IFI.StaticAllocas[ai]; in InlineFunction() local
|
| D | Mem2Reg.cpp | 78 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca? in INITIALIZE_PASS_DEPENDENCY() local
|
| /external/llvm/lib/Transforms/IPO/ |
| D | IPConstantPropagation.cpp | 106 CallSite::arg_iterator AI = CS.arg_begin(); in PropagateConstantsIntoArguments() local 135 Function::arg_iterator AI = F.arg_begin(); in PropagateConstantsIntoArguments() local
|
| /external/llvm/lib/Target/X86/ |
| D | X86TargetObjectFile.cpp | 124 static std::string APIntToHexString(const APInt &AI) { in APIntToHexString() 137 APInt AI; in scalarConstantToHexString() local
|
| D | X86RegisterInfo.cpp | 404 for (MCRegAliasIterator AI(X86::R8 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local 408 for (MCRegAliasIterator AI(X86::XMM8 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local 414 for (MCRegAliasIterator AI(X86::XMM0 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local
|
| /external/llvm/lib/Transforms/Instrumentation/ |
| D | BoundsChecking.cpp | 198 } else if (AtomicCmpXchgInst *AI = dyn_cast<AtomicCmpXchgInst>(Inst)) { in runOnFunction() local 201 } else if (AtomicRMWInst *AI = dyn_cast<AtomicRMWInst>(Inst)) { in runOnFunction() local
|
| /external/llvm/lib/Target/Hexagon/ |
| D | HexagonRemoveSZExtArgs.cpp | 59 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); AI != AE; in runOnFunction() local
|
| /external/llvm/include/llvm/Transforms/Utils/ |
| D | ASanStackFrameLayout.h | 34 AllocaInst *AI; // The actual AllocaInst. member
|
| /external/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineLoadStoreAlloca.cpp | 159 isOnlyCopiedFromConstantGlobal(AllocaInst *AI, in isOnlyCopiedFromConstantGlobal() 167 static Instruction *simplifyAllocaArraySize(InstCombiner &IC, AllocaInst &AI) { in simplifyAllocaArraySize() 223 Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) { in visitAllocaInst() 537 if (AllocaInst *AI = dyn_cast<AllocaInst>(P)) { in isObjectSizeLessThanOrEq() local
|