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

1 2 3

  /external/clang/lib/CodeGen/
CGBuilder.h 170 auto PtrTy = Ty->getPointerTo(Addr.getAddressSpace());
171 return CreateBitCast(Addr, PtrTy, Name);
TargetInfo.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 76 Type *PtrTy = Ptr->getType();
77 Type *ElemTy = PtrTy->getPointerElementType();
81 PointerType::get(v4i32,PtrTy->getPointerAddressSpace()));
AMDGPUPromoteAlloca.cpp 137 PointerType *PtrTy = dyn_cast<PointerType>(ParamTy);
138 if (PtrTy && PtrTy->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
R600ISelLowering.cpp     [all...]
  /external/llvm/unittests/Transforms/Utils/
ValueMapperTest.cpp 69 auto *PtrTy = Type::getInt8Ty(Context)->getPointerTo();
71 PtrTy, false, GlobalValue::ExternalLinkage, nullptr, "G0");
73 PtrTy, false, GlobalValue::ExternalLinkage, nullptr, "G1");
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
StackProtector.cpp 168 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
175 PointerType::get(PtrTy, AddressSpace));
177 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
183 AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
  /external/llvm/lib/Analysis/
VectorUtils.cpp 159 auto *PtrTy = dyn_cast<PointerType>(Ptr->getType());
160 if (!PtrTy || PtrTy->isAggregateType())
LoopAccessAnalysis.cpp     [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 322 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
323 AI = B.CreateAlloca(PtrTy, nullptr, "StackGuardSlot");
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 215 PointerType *PtrTy = cast<PointerType>(Ptr->getType());
216 Type *DataTy = PtrTy->getElementType();
220 Type *OverloadedTypes[] = { DataTy, PtrTy };
234 PointerType *PtrTy = cast<PointerType>(Ptr->getType());
235 Type *DataTy = PtrTy->getElementType();
237 Type *OverloadedTypes[] = { DataTy, PtrTy };
266 auto PtrTy = cast<PointerType>(PtrsTy->getElementType());
268 Type *DataTy = VectorType::get(PtrTy->getElementType(), NumElts);
295 auto PtrTy = cast<PointerType>(PtrsTy->getElementType());
297 PtrTy->getElementType() == DataTy->getElementType() &
    [all...]
ConstantFold.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 182 Type *PtrTy = Ty->getPointerTo();
185 M.getOrInsertFunction(AtomicLoadName, Ty, PtrTy, OrdTy, nullptr));
189 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy, nullptr));
213 M.getOrInsertFunction(RMWName, Ty, PtrTy, Ty, OrdTy, nullptr));
219 AtomicCASName, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, nullptr));
283 Type *PtrTy = cast<PointerType>(Addr->getType()->getScalarType());
284 if (PtrTy->getPointerAddressSpace() != 0)
576 Type *PtrTy = Ty->getPointerTo();
577 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
597 Type *PtrTy = Ty->getPointerTo()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 64 PointerType *PtrTy;
188 PtrTy = dyn_cast<PointerType>(Ty);
189 if (PtrTy)
190 Ty = PtrTy->getElementType();
207 if (PtrTy) {
210 PointerType::get(PtrTy->getElementType()->getVectorElementType(),
211 PtrTy->getAddressSpace());
  /external/llvm/unittests/IR/
ConstantsTest.cpp 377 Type *PtrTy = PointerType::get(IntTy, 0);
385 new GlobalVariable(*M, PtrTy, false, GlobalValue::ExternalLinkage, GEP);
388 auto *Global = new GlobalVariable(*M, PtrTy, false,
473 auto *PtrTy = PointerType::get(i32, 0);
474 auto *C = ConstantExpr::getBitCast(G, PtrTy);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /frameworks/rs/rsov/compiler/
Wrapper.cpp 175 TypePointerInst *PtrTy =
178 b.MakeAccessChain(PtrTy, inputBuffer, {ConstZero, Index});
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 406 EVT PtrTy = SPUtli.getPointerTy();
415 Base = CurDAG->getTargetConstant(0, PtrTy);
416 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
426 Base = CurDAG->getTargetConstant(0, PtrTy);
441 Base = CurDAG->getTargetConstant(offset, PtrTy);
442 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
446 Base = CurDAG->getTargetConstant(offset, PtrTy);
462 Base = CurDAG->getTargetConstant(offset, PtrTy);
463 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
467 Base = CurDAG->getTargetConstant(offset, PtrTy);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 366 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
392 SVal BufStart = svalBuilder.evalCast(BufVal, PtrTy, FirstBuf->getType());
397 LastOffset, PtrTy);
412 BufStart = svalBuilder.evalCast(BufVal, PtrTy, SecondBuf->getType());
417 LastOffset, PtrTy);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 360 Type *PtrTy = cast<PointerType>(PtrOp->getType())->getElementType();
367 Nx->PTy = PtrTy;
373 PtrTy = next_type(PtrTy, Op);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]

Completed in 1931 milliseconds

1 2 3