Home
last modified time | relevance | path

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

123456

/external/harfbuzz_ng/src/
Dhb-atomic-private.hh51 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) argument
67 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) argument
84 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) argument
96 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (… argument
106 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument
115 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument
/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-atomic-private.hh59 #define hb_atomic_int_add(AI, V) InterlockedExchangeAdd (&(AI), (V)) argument
75 #define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier ((V), &(AI)) - (V)) argument
92 #define hb_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V)) argument
104 #define hb_atomic_int_add(AI, V) ( ({__machine_rw_barrier ();}), atomic_add_int_nv (&(AI), (V)) - (… argument
114 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument
123 #define hb_atomic_int_add(AI, V) (((AI) += (V)) - (V)) argument
/external/llvm/lib/CodeGen/
DMachineCopyPropagation.cpp68 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in SourceNoLongerAvailable() local
192 for (MCRegAliasIterator AI(Src, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local
212 for (MCRegAliasIterator AI(Def, TRI, false); AI.isValid(); ++AI) { in CopyPropagateBlock() local
256 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local
293 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in CopyPropagateBlock() local
DStackProtector.cpp171 bool StackProtector::HasAddressTaken(const Instruction *AI) { in HasAddressTaken()
235 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) { in RequiresStackProtector() local
278 AllocaInst *&AI, Value *&StackGuardVar) { in CreatePrologue()
317 AllocaInst *AI = 0; // Place on stack that stores the stack guard. in InsertStackProtectors() local
DCriticalAntiDepBreaker.cpp65 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
80 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
187 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local
292 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in ScanInstruction() local
DAggressiveAntiDepBreaker.cpp159 for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
175 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { in StartBlock() local
375 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { in PrescanInstruction() local
406 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) in PrescanInstruction() local
660 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { in FindSuitableFreeRegisters() local
/external/llvm/unittests/Transforms/Utils/
DIntegerDivision.cpp36 Function::arg_iterator AI = F->arg_begin(); in TEST() local
66 Function::arg_iterator AI = F->arg_begin(); in TEST() local
96 Function::arg_iterator AI = F->arg_begin(); in TEST() local
126 Function::arg_iterator AI = F->arg_begin(); in TEST() local
/external/llvm/lib/DebugInfo/
DDWARFFormValue.cpp94 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr); in extractValue() local
130 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr); in extractValue() local
144 RelocAddrMap::const_iterator AI in extractValue() local
170 RelocAddrMap::const_iterator AI in extractValue() local
DDWARFDebugLoc.cpp47 RelocAddrMap::const_iterator AI = RelocMap.find(Offset); in parse() local
/external/llvm/lib/Analysis/
DCodeMetrics.cpp59 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) { in analyzeBasicBlock() local
DLoads.cpp67 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Base)) { in isSafeToLoadUnconditionally() local
/external/llvm/lib/Transforms/Utils/
DMetaRenamer.cpp74 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
DPromoteMemoryToRegister.cpp365 static void removeDeadInstructions(AllocaInst *AI, in removeDeadInstructions()
406 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, in rewriteSingleStoreAlloca()
512 static void promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, in promoteSingleBlockAlloca()
597 AllocaInst *AI = Allocas[AllocaNum]; in run() local
837 AllocaInst *AI, AllocaInfo &Info, in ComputeLiveInBlocks()
921 void PromoteMem2Reg::DetermineInsertionPoint(AllocaInst *AI, unsigned AllocaNum, in DetermineInsertionPoint()
1096 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); in RenamePass() local
1148 bool llvm::isAllocaPromotable(const AllocaInst *AI, const DataLayout *DL) { in isAllocaPromotable()
DInstructionNamer.cpp35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); in runOnFunction() local
DMem2Reg.cpp75 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca? in INITIALIZE_PASS_DEPENDENCY() local
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp101 AllocaInst *AI; member
332 AllocaInst *ConvertToScalarInfo::TryConvert(AllocaInst *AI) { in TryConvert()
1046 AllocaInst *AI; member in __anon654fc0e20411::AllocaPromoter
1055 void run(AllocaInst *AI, const SmallVectorImpl<Instruction*> &Insts) { in run()
1239 static bool tryToMakeAllocaBePromotable(AllocaInst *AI, const DataLayout *TD) { in tryToMakeAllocaBePromotable()
1422 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca? in performPromotion() local
1433 AllocaInst *AI = Allocas[i]; in performPromotion() local
1453 bool SROA::ShouldAttemptScalarRepl(AllocaInst *AI) { in ShouldAttemptScalarRepl()
1480 AllocaInst *AI = WorkList.back(); in performScalarRepl() local
1539 void SROA::DoScalarReplacement(AllocaInst *AI, in DoScalarReplacement()
[all …]
DTailRecursionElimination.cpp137 static bool CanTRE(AllocaInst *AI) { in CanTRE()
194 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) { in runOnFunction() local
315 for (Function::arg_iterator AI = F->arg_begin(); &*AI != Arg; ++AI) in isDynamicConstant() local
526 if (AllocaInst *AI = dyn_cast<AllocaInst>(OEBI++)) in EliminateRecursiveTailCall() local
/external/llvm/lib/Transforms/IPO/
DIPConstantPropagation.cpp105 CallSite::arg_iterator AI = CS.arg_begin(); in PropagateConstantsIntoArguments() local
134 Function::arg_iterator AI = F.arg_begin(); in PropagateConstantsIntoArguments() local
/external/llvm/lib/Target/X86/
DX86RegisterInfo.cpp371 for (MCRegAliasIterator AI(X86::R8 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local
375 for (MCRegAliasIterator AI(X86::XMM8 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local
381 for (MCRegAliasIterator AI(X86::XMM0 + n, this, true); AI.isValid(); ++AI) in getReservedRegs() local
/external/llvm/lib/Transforms/Instrumentation/
DBoundsChecking.cpp199 } 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/
DHexagonRemoveSZExtArgs.cpp57 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); AI != AE; in runOnFunction() local
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCUtil.cpp84 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end(); in GetFunctionClass() local
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp168 AI = D->specific_attr_begin<AnnotateAttr>(), in isAnnotatedToAllowDirectAssignment() local
238 AI = M->specific_attr_begin<AnnotateAttr>(), in operator ()() local
/external/llvm/lib/MC/
DMCObjectDisassembler.cpp123 for (MCModule::atom_iterator AI = Module->atom_begin(), in buildCFG() local
159 for (MCModule::atom_iterator AI = Module->atom_begin(), in buildCFG() local
/external/llvm/tools/opt/
DAnalysisWrappers.cpp48 for (CallSite::arg_iterator AI = CS.arg_begin(), in runOnModule() local

123456