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

1 2 3 4 5

  /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 47 RelocAddrMap::const_iterator AI = RelocMap.find(Offset);
50 if (AI != RelocMap.end())
51 E.Begin += AI->second.second;
53 AI = RelocMap.find(Offset);
56 if (AI != RelocMap.end())
57 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;
  /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/Target/WebAssembly/InstPrinter/
WebAssemblyInstPrinter.cpp 117 APInt AI = FP.bitcastToAPInt();
119 std::string(AI.isNegative() ? "-" : "") + "nan:0x" +
120 utohexstr(AI.getZExtValue() &
121 (AI.getBitWidth() == 32 ? INT64_C(0x007fffff) :
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 38 AllocaInst *AI; // The actual AllocaInst.
  /external/llvm/lib/Analysis/
ObjCARCInstKind.cpp 88 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
91 if (AI == AE)
98 const Argument *A0 = &*AI++;
99 if (AI == AE)
138 const Argument *A1 = &*AI++;
139 if (AI == AE)
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 76 CallSite::arg_iterator AI = CS.arg_begin();
79 ++i, ++AI, ++Arg) {
85 Constant *C = dyn_cast<Constant>(*AI);
90 } else if (*AI == &*Arg) {
105 Function::arg_iterator AI = F.arg_begin();
106 for (unsigned i = 0, e = ArgumentConstants.size(); i != e; ++i, ++AI) {
108 if (ArgumentConstants[i].second || AI->use_empty() ||
109 AI->hasInAllocaAttr() || (AI->hasByValAttr() && !F.onlyReadsMemory()))
113 if (!V) V = UndefValue::get(AI->getType())
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVRegularizeLLVM.cpp 197 auto AI = F->arg_begin();
198 if (hasFunctionPointerArg(F, AI)) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
IPConstantPropagation.cpp 105 CallSite::arg_iterator AI = CS.arg_begin();
108 ++i, ++AI, ++Arg) {
114 Constant *C = dyn_cast<Constant>(*AI);
119 } else if (*AI == &*Arg) {
134 Function::arg_iterator AI = F.arg_begin();
135 for (unsigned i = 0, e = ArgumentConstants.size(); i != e; ++i, ++AI) {
137 if (ArgumentConstants[i].second || AI->use_empty() ||
138 (AI->hasByValAttr() && !F.onlyReadsMemory()))
142 if (V == 0) V = UndefValue::get(AI->getType());
143 AI->replaceAllUsesWith(V)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 67 Function::arg_iterator AI;
71 AI = MainFn->arg_begin(); ++AI;
72 if (AI->getType() != ArgVTy) {
73 Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy,
76 CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall));
78 InitCall->setArgOperand(1, AI);
83 AI = MainFn->arg_begin();
86 if (!AI->getType()->isIntegerTy(32)) {
88 if (!AI->use_empty())
    [all...]
  /external/llvm/lib/CodeGen/
SafeStackColoring.cpp 27 const StackColoring::LiveRange &StackColoring::getLiveRange(AllocaInst *AI) {
28 const auto IT = AllocaNumbering.find(AI);
59 AllocaInst *AI = Allocas[AllocaNo];
61 WorkList.push_back(AI);
StackProtector.cpp 61 StackProtector::getSSPLayout(const AllocaInst *AI) const {
62 return AI ? Layout.lookup(AI) : SSPLK_None;
166 bool StackProtector::HasAddressTaken(const Instruction *AI) {
167 for (const User *U : AI->users()) {
169 if (AI == SI->getValueOperand())
172 if (AI == SI->getOperand(0))
237 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
238 if (AI->isArrayAllocation()) {
244 if (const auto *CI = dyn_cast<ConstantInt>(AI->getArraySize()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
StackProtector.cpp 120 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
121 if (AI->isArrayAllocation())
126 if (ArrayType *AT = dyn_cast<ArrayType>(AI->getAllocatedType())) {
151 AllocaInst *AI = 0; // Place on stack that stores the stack guard.
183 AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
186 Value *Args[] = { LI, AI };
234 LoadInst *LI2 = new LoadInst(AI, "", true, BB);
  /external/swiftshader/third_party/LLVM/unittests/Analysis/
ScalarEvolutionTest.cpp 108 Function::arg_iterator AI = F->arg_begin();
110 A.push_back(SE.getSCEV(&*AI++));
111 A.push_back(SE.getSCEV(&*AI++));
112 A.push_back(SE.getSCEV(&*AI++));
113 A.push_back(SE.getSCEV(&*AI++));
114 A.push_back(SE.getSCEV(&*AI++));
118 B.push_back(SE.getSCEV(&*AI++));
119 B.push_back(SE.getSCEV(&*AI++));
120 B.push_back(SE.getSCEV(&*AI++));
121 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);
423 const AddressInfo &AI = Stack.get()->info
    [all...]

Completed in 390 milliseconds

1 2 3 4 5