HomeSort by relevance Sort by last modified time
    Searched defs:AI (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/clang/test/Modules/Inputs/merge-template-members/
a1.h 8 typedef A<int> AI;
a2.h 8 typedef A<int> AI;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 48 RelocAddrMap::const_iterator AI = RelocMap.find(Offset);
51 if (AI != RelocMap.end())
52 E.Begin += AI->second.second;
54 AI = RelocMap.find(Offset);
57 if (AI != RelocMap.end())
58 E.End += AI->second.second;
DWARFFormValue.cpp 152 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr);
153 if (AI != cu->getRelocMap()->end()) {
154 const std::pair<uint8_t, int64_t> &R = AI->second;
191 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4);
192 if (AI != cu->getRelocMap()->end())
193 Value.uval += AI->second.second;
222 RelocAddrMap::const_iterator AI =
224 if (AI != cu->getRelocMap()->end())
225 Value.uval += AI->second.second;
DWARFDebugLine.cpp 308 RelocAddrMap::const_iterator AI = RMap->find(*offset_ptr);
309 if (AI != RMap->end()) {
310 const std::pair<uint8_t, int64_t> &R = AI->second;
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 34 AllocaInst *AI; // The actual AllocaInst.
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 37 Function::arg_iterator AI = F->arg_begin();
38 Value *A = &*AI++;
39 Value *B = &*AI++;
67 Function::arg_iterator AI = F->arg_begin();
68 Value *A = &*AI++;
69 Value *B = &*AI++;
97 Function::arg_iterator AI = F->arg_begin();
98 Value *A = &*AI++;
99 Value *B = &*AI++;
127 Function::arg_iterator AI = F->arg_begin()
    [all...]
  /external/llvm/lib/Analysis/
ObjCARCInstKind.cpp 86 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
89 if (AI == AE)
96 const Argument *A0 = &*AI++;
97 if (AI == AE)
134 const Argument *A1 = &*AI++;
135 if (AI == AE)
Lint.cpp 233 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
234 for (; AI != AE; ++AI) {
235 Value *Actual = *AI;
248 if (AI != BI && (*BI)->getType()->isPointerTy()) {
249 AliasResult Result = AA->alias(*AI, *BI);
267 for (CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
268 AI != AE; ++AI) {
269 Value *Obj = findValue(*AI, /*OffsetOk=*/true)
    [all...]
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 106 CallSite::arg_iterator AI = CS.arg_begin();
109 ++i, ++AI, ++Arg) {
115 Constant *C = dyn_cast<Constant>(*AI);
120 } else if (*AI == &*Arg) {
135 Function::arg_iterator AI = F.arg_begin();
136 for (unsigned i = 0, e = ArgumentConstants.size(); i != e; ++i, ++AI) {
138 if (ArgumentConstants[i].second || AI->use_empty() ||
139 AI->hasInAllocaAttr() || (AI->hasByValAttr() && !F.onlyReadsMemory()))
143 if (!V) V = UndefValue::get(AI->getType())
    [all...]
Inliner.cpp 193 AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
198 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
199 if (!ATy || AI->isArrayAllocation())
213 unsigned Align1 = AI->getAlignment(),
218 if (AvailableAlloca->getParent() != AI->getParent())
226 // Otherwise, we *can* reuse it, RAUW AI into AvailableAlloca and declare
228 DEBUG(dbgs() << " ***MERGED ALLOCA: " << *AI << "\n\t\tINTO: "
233 if (auto *L = LocalAsMetadata::getIfExists(AI))
234 if (auto *MDV = MetadataAsValue::getIfExists(AI->getContext(), L))
239 AI->replaceAllUsesWith(AvailableAlloca)
    [all...]
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 115 Function::arg_iterator AI = F->arg_begin();
117 A.push_back(SE.getSCEV(&*AI++));
118 A.push_back(SE.getSCEV(&*AI++));
119 A.push_back(SE.getSCEV(&*AI++));
120 A.push_back(SE.getSCEV(&*AI++));
121 A.push_back(SE.getSCEV(&*AI++));
125 B.push_back(SE.getSCEV(&*AI++));
126 B.push_back(SE.getSCEV(&*AI++));
127 B.push_back(SE.getSCEV(&*AI++));
128 B.push_back(SE.getSCEV(&*AI++))
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 77 AddressInfo AI;
78 AI.file = internal_strdup(SLoc.getFilename());
79 AI.line = SLoc.getLine();
80 AI.column = SLoc.getColumn();
81 AI.function = internal_strdup(""); // Avoid printing ?? as function name.
82 ReportErrorSummary(ErrorKind, AI);
83 AI.Clear();
87 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
88 ReportErrorSummary(ErrorKind, AI);
426 const AddressInfo &AI = Stack.get()->info
    [all...]
  /external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
DependencyBank.java 172 AI(
173 new String[]{"com.badlogicgames.gdx:gdx-ai:$aiVersion"},
175 new String[]{"com.badlogicgames.gdx:gdx-ai:$aiVersion"},
178 new String[]{"com.badlogicgames.gdx:gdx-ai:$aiVersion:sources"},
179 new String[]{"com.badlogic.gdx.ai"},
  /external/llvm/lib/CodeGen/
StackProtector.cpp 60 StackProtector::getSSPLayout(const AllocaInst *AI) const {
61 return AI ? Layout.lookup(AI) : SSPLK_None;
155 bool StackProtector::HasAddressTaken(const Instruction *AI) {
156 for (const User *U : AI->users()) {
158 if (AI == SI->getValueOperand())
161 if (AI == SI->getOperand(0))
213 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
214 if (AI->isArrayAllocation()) {
220 if (const auto *CI = dyn_cast<ConstantInt>(AI->getArraySize()))
    [all...]
StackColoring.cpp 522 const AllocaInst *AI = dyn_cast_or_null<AllocaInst>(MMO->getValue());
523 if (!AI)
526 if (!Allocas.count(AI))
529 MMO->setValue(Allocas[AI]);
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 212 AllocaSlices(const DataLayout &DL, AllocaInst &AI);
283 AllocaInst &AI;
636 SliceBuilder(const DataLayout &DL, AllocaInst &AI, AllocaSlices &AS)
638 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), AS(AS) {}
654 << " alloca: " << AS.AI << "\n"
672 << " alloca: " << AS.AI << "\n"
776 << " alloca: " << AS.AI << "\n"
    [all...]
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 356 auto AI = Trampoline->arg_begin();
357 Value *Args[5] = {LSDA, &*AI++, &*AI++, &*AI++, &*AI++};
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 357 Function::arg_iterator AI = newFunction->arg_begin();
369 StructTy, &*AI, Idx, "gep_" + inputs[i]->getName(), TI);
372 RewriteVal = &*AI++;
384 AI = newFunction->arg_begin();
385 for (unsigned i = 0, e = inputs.size(); i != e; ++i, ++AI)
386 AI->setName(inputs[i]->getName());
387 for (unsigned i = 0, e = outputs.size(); i != e; ++i, ++AI)
388 AI->setName(outputs[i]->getName()+".out");
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 326 AbstractInterpreter *AI = BD.switchToSafeInterpreter();
341 BD.switchToInterpreter(AI);
361 BD.switchToInterpreter(AI);
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 543 AppliedMappingsT::iterator AI = AppliedMappings.find(Tmp->first);
545 if (AI != AppliedMappings.end()) {
546 AlreadyAllocated[AI->second] = Tmp->second;
  /frameworks/compile/slang/
slang.cpp 517 // Type(ai) = Type(bi) must hold;
519 // Name(ai) = Name(bi) must hold;
529 RSExportRecordType::const_field_iterator AI = Reflected->fields_begin(),
533 if ((*AI)->getName() != (*BI)->getName())
535 AI++;
538 PassODR = (AI == (Reflected->fields_end()));
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 104 auto AI = ABIArgInfo(Direct);
105 AI.setCoerceToType(T);
106 AI.setDirectOffset(Offset);
107 AI.setPaddingType(Padding);
108 AI.setCanBeFlattened(CanBeFlattened);
109 return AI;
112 auto AI = getDirect(T);
113 AI.setInReg(true);
114 return AI;
117 auto AI = ABIArgInfo(Extend)
    [all...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 171 llvm::Function::arg_iterator AI = Fn->arg_begin();
173 ++AI;
177 Address ThisPtr(&*AI, CGM.getClassPointerAlignment(MD->getParent()));
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 42 MacroInfo::arg_iterator AI = MI.arg_begin(), E = MI.arg_end();
43 for (; AI+1 != E; ++AI) {
44 OS << (*AI)->getName();
49 if ((*AI)->getName() == "__VA_ARGS__")
52 OS << (*AI)->getName();

Completed in 468 milliseconds

1 2 3