HomeSort by: relevance | last modified time | path
    Searched defs:AI (Results 1 - 25 of 81) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUArgumentUsageInfo.cpp 150 AMDGPUFunctionArgInfo AI;
151 AI.PrivateSegmentBuffer
153 AI.DispatchPtr = ArgDescriptor::createRegister(AMDGPU::SGPR4_SGPR5);
154 AI.QueuePtr = ArgDescriptor::createRegister(AMDGPU::SGPR6_SGPR7);
158 AI.ImplicitArgPtr = ArgDescriptor::createRegister(AMDGPU::SGPR8_SGPR9);
159 AI.DispatchID = ArgDescriptor::createRegister(AMDGPU::SGPR10_SGPR11);
162 AI.WorkGroupIDX = ArgDescriptor::createRegister(AMDGPU::SGPR12);
163 AI.WorkGroupIDY = ArgDescriptor::createRegister(AMDGPU::SGPR13);
164 AI.WorkGroupIDZ = ArgDescriptor::createRegister(AMDGPU::SGPR14);
167 AI.WorkItemIDX = ArgDescriptor::createRegister(AMDGPU::VGPR31, Mask)
    [all...]
AMDGPULowerKernelArguments.cpp 46 AllocaInst *AI = dyn_cast<AllocaInst>(&*InsPt);
50 if (!AI || !AI->isStaticAlloca())
SIMachineFunctionInfo.cpp 505 yaml::SIArgumentInfo AI;
528 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer);
529 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr);
530 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr);
531 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr);
532 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID);
533 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit);
534 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize);
535 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX);
536 Any |= convertArg(AI.WorkGroupIDY, ArgInfo.WorkGroupIDY)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 AllocaInst *AI; // The actual AllocaInst.
  /src/external/gpl3/gdb.old/dist/sim/iq2000/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb.old/dist/sim/lm32/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb.old/dist/sim/or1k/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb/dist/sim/iq2000/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb/dist/sim/lm32/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb/dist/sim/or1k/
arch.h 32 #define AI USI
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MacroPPCallbacks.cpp 30 MacroInfo::param_iterator AI = MI.param_begin(), E = MI.param_end();
31 for (; AI + 1 != E; ++AI) {
32 Name << (*AI)->getName();
37 if ((*AI)->getName() == "__VA_ARGS__")
40 Name << (*AI)->getName();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AutoInitRemark.cpp 169 const auto *AI = dyn_cast<AllocaInst>(V);
170 if (!AI)
174 Optional<StringRef> Name = AI->hasName()
175 ? Optional<StringRef>(AI->getName())
177 Optional<TypeSize> TySize = AI->getAllocationSizeInBits(DL);
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyInstPrinter.cpp 273 APInt AI = FP.bitcastToAPInt();
274 return std::string(AI.isNegative() ? "-" : "") + "nan:0x" +
275 utohexstr(AI.getZExtValue() &
276 (AI.getBitWidth() == 32 ? INT64_C(0x007fffff)
  /src/external/gpl3/gdb.old/dist/sim/m32r/
arch.h 32 #define AI USI
  /src/external/gpl3/gdb/dist/sim/m32r/
arch.h 32 #define AI USI
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 82 AddressInfo AI;
83 AI.file = internal_strdup(SLoc.getFilename());
84 AI.line = SLoc.getLine();
85 AI.column = SLoc.getColumn();
86 AI.function = internal_strdup(""); // Avoid printing ?? as function name.
87 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
88 AI.Clear();
92 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
93 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
431 const AddressInfo &AI = Stack.get()->info
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
RemoteJITUtils.cpp 269 addrinfo *AI;
275 if (int EC = getaddrinfo(Host.c_str(), PortStr.c_str(), &Hints, &AI))
284 for (Server = AI; Server != nullptr; Server = Server->ai_next) {
287 if ((SockFD = socket(AI->ai_family, AI->ai_socktype, AI->ai_protocol)) < 0)
296 freeaddrinfo(AI);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StackLifetime.cpp 40 StackLifetime::getLiveRange(const AllocaInst *AI) const {
41 const auto IT = AllocaNumbering.find(AI);
50 bool StackLifetime::isAliveAfter(const AllocaInst *AI,
64 return getLiveRange(AI).test(InstNum);
71 const AllocaInst *AI = findAllocaForValue(II.getArgOperand(1), true);
72 if (!AI)
75 auto AllocaSizeInBits = AI->getAllocationSizeInBits(DL);
88 return AI;
104 const AllocaInst *AI = findMatchingAlloca(*II, DL);
105 if (!AI) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackProtector.cpp 166 bool StackProtector::HasAddressTaken(const Instruction *AI,
169 for (const User *U : AI->users()) {
179 if (AI == cast<StoreInst>(I)->getValueOperand())
185 if (AI == cast<AtomicCmpXchgInst>(I)->getNewValOperand())
189 if (AI == cast<PtrToIntInst>(I)->getOperand(0))
303 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
304 if (AI->isArrayAllocation()) {
313 if (const auto *CI = dyn_cast<ConstantInt>(AI->getArraySize())) {
317 Layout.insert(std::make_pair(AI,
323 Layout.insert(std::make_pair(AI,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixFunctionBitcasts.cpp 127 Function::arg_iterator AI = Wrapper->arg_begin();
142 for (; AI != AE && PI != PE; ++AI, ++PI) {
143 Type *ArgType = AI->getType();
147 Args.push_back(&*AI);
151 CastInst::CreateBitOrPointerCast(AI, ParamType, "cast");
173 for (; AI != AE; ++AI)
174 Args.push_back(&*AI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
Inliner.cpp 164 AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
169 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
170 if (!ATy || AI->isArrayAllocation())
183 Align Align1 = AI->getAlign();
188 if (AvailableAlloca->getParent() != AI->getParent())
196 // Otherwise, we *can* reuse it, RAUW AI into AvailableAlloca and declare
198 LLVM_DEBUG(dbgs() << " ***MERGED ALLOCA: " << *AI
203 if (auto *L = LocalAsMetadata::getIfExists(AI))
204 if (auto *MDV = MetadataAsValue::getIfExists(AI->getContext(), L))
209 AI->replaceAllUsesWith(AvailableAlloca)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 224 AllocaSlices(const DataLayout &DL, AllocaInst &AI);
303 AllocaInst &AI;
657 SliceBuilder(const DataLayout &DL, AllocaInst &AI, AllocaSlices &AS)
659 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType()).getFixedSize()),
677 << " alloca: " << AS.AI << "\n"
696 << " alloca: " << AS.AI << "\n"
821 << " alloca: " << AS.AI << "\n"
1064 AllocaSlices::AllocaSlices(const DataLayout &DL, AllocaInst &AI)
1067 AI(AI),
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.cpp 87 AddressInfo AI;
88 AI.file = internal_strdup(SLoc.getFilename());
89 AI.line = SLoc.getLine();
90 AI.column = SLoc.getColumn();
91 AI.function = internal_strdup(""); // Avoid printing ?? as function name.
92 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
93 AI.Clear();
97 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
98 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
448 const AddressInfo &AI = Stack.get()->info
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.cpp 89 AddressInfo AI;
90 AI.file = internal_strdup(SLoc.getFilename());
91 AI.line = SLoc.getLine();
92 AI.column = SLoc.getColumn();
93 AI.function = internal_strdup(""); // Avoid printing ?? as function name.
94 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
95 AI.Clear();
99 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
100 ReportErrorSummary(ErrorKind, AI, GetSanititizerToolName());
442 const AddressInfo &AI = Stack.get()->info
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/cris/
arch.h 32 #define AI USI

Completed in 35 milliseconds

1 2 3 4