HomeSort by: relevance | last modified time | path
    Searched refs:GEPIdx (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerModuleLDSPass.cpp 235 Constant *GEPIdx[] = {ConstantInt::get(I32, 0), ConstantInt::get(I32, I)};
237 ConstantExpr::getGetElementPtr(LDSTy, SGV, GEPIdx));
AMDGPUPromoteAlloca.cpp 336 const std::map<GetElementPtrInst *, Value *> &GEPIdx) {
341 auto I = GEPIdx.find(GEP);
342 return I == GEPIdx.end() ? nullptr : I->second;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Constants.cpp 2348 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
2350 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
2376 Constant *GEPIdx[] = {
2381 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4176 SmallVector<Value*, 16> GEPIdx;
4181 GEPIdx.push_back(Op);
4184 I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx);
4185 FullTy = GetElementPtrInst::getGEPReturnType(FullTy, I, GEPIdx);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 8249 auto *GEPIdx = GEP->idx_begin()->get();
8250 assert(GEP->getNumIndices() == 1 || !isa<Constant>(GEPIdx));
8251 Bundle[BundleIndex++] = GEPIdx;

Completed in 42 milliseconds