HomeSort by: relevance | last modified time | path
    Searched refs:getAllocatedType (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXXABI.cpp 167 return getArrayCookieSizeImpl(expr->getAllocatedType());
201 return expr->getAllocatedType().isDestructedType();
CGExprCXX.cpp 696 QualType type = e->getAllocatedType();
1074 QualType AllocType = E->getAllocatedType();
1300 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr,
1556 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckPlacementNew.cpp 75 QualType ElementType = NE->getAllocatedType();
278 QualType AllocatedT = NE->getAllocatedType();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 163 uint64_t AllocaSize = DL.getTypeStoreSize(AI->getAllocatedType());
185 Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
357 if (AI.getAllocatedType()->isSized()) {
361 if (DL.getTypeAllocSize(AI.getAllocatedType()).getKnownMinSize() == 0) {
377 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() ||
378 DL.getTypeAllocSize(EntryAI->getAllocatedType())
416 auto *DestTy = PointerType::get(AI.getAllocatedType(), SrcAddrSpace);
773 if (!AI->getAllocatedType()->isSized())
780 uint64_t TypeSize = DL.getTypeAllocSize(AI->getAllocatedType());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 659 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType()).getFixedSize()),
2342 NewAllocaTy(NewAI.getAllocatedType()),
2346 DL.getTypeSizeInBits(NewAI.getAllocatedType())
2475 Value *V = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI,
2483 Value *V = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI,
2529 LoadInst *NewLI = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI,
2629 Value *Old = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI,
2647 Value *Old = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI,
2797 Type *AllocaTy = NewAI.getAllocatedType();
2854 Value *Old = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI
    [all...]
RewriteStatepointsForGC.cpp 1865 cast<AllocaInst>(Alloca)->getAllocatedType(),
1995 auto PT = cast<PointerType>(AI->getAllocatedType());
2044 new LoadInst(Alloca->getAllocatedType(), Alloca, "",
2051 new LoadInst(Alloca->getAllocatedType(), Alloca, "", Use);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackProtector.cpp 339 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
355 AI->getAllocatedType()))) {
GCRootLowering.cpp 162 ConstantPointerNull::get(cast<PointerType>(Root->getAllocatedType())),
SafeStack.cpp 225 uint64_t Size = DL.getTypeAllocSize(AI->getAllocatedType());
518 Type *Ty = StackGuardSlot->getAllocatedType();
538 Type *Ty = AI->getAllocatedType();
667 Type *Ty = AI->getAllocatedType();
ShadowStackGCLowering.cpp 165 EltTys.push_back(Roots[I].second->getAllocatedType());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 415 Type *AllocaTy = Alloca->getAllocatedType();
856 Type *AllocaTy = I.getAllocatedType();
891 DL.getValueOrABITypeAlignment(I.getAlign(), I.getAllocatedType());
922 Type *GVTy = ArrayType::get(I.getAllocatedType(), WorkGroupSize);
AMDGPUTargetTransformInfo.cpp 195 Type *Ty = Alloca->getAllocatedType();
1217 AllocaSize += DL.getTypeAllocSize(AI->getAllocatedType());
AMDGPULibCalls.cpp 1352 Instruction *Reload = B.CreateLoad(Alloc->getAllocatedType(), Alloc);
1357 Instruction *Reload = B.CreateLoad(Alloc->getAllocatedType(), Alloc);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryBuiltins.cpp 665 if (!I.getAllocatedType()->isSized())
668 if (isa<ScalableVectorType>(I.getAllocatedType()))
671 APInt Size(IntTyBits, DL.getTypeAllocSize(I.getAllocatedType()));
954 if (!I.getAllocatedType()->isSized())
968 DL.getTypeAllocSize(I.getAllocatedType()));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64StackTagging.cpp 419 AI.getAllocatedType()->isSized() && AI.isStaticAlloca() &&
502 Info.AI->getAllocatedType(),
504 : Info.AI->getAllocatedType();
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 753 return Builder->CreateLoad(A->getAllocatedType(), A, Name.c_str());
966 Builder->CreateLoad(Alloca->getAllocatedType(), Alloca, VarName.c_str());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 411 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86WinEHState.cpp 774 Value *StateField = Builder.CreateStructGEP(RegNode->getAllocatedType(),
786 Value *StateField = Builder.CreateStructGEP(RegNode->getAllocatedType(),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionComparator.cpp 556 if (int Res = cmpTypes(AI->getAllocatedType(),
557 cast<AllocaInst>(R)->getAllocatedType()))
PromoteMemoryToRegister.cpp 648 Values[i] = UndefValue::get(Allocas[i]->getAllocatedType());
864 PN = PHINode::Create(Allocas[AllocaNo]->getAllocatedType(), getNumPreds(BB),
Evaluator.cpp 468 Type *Ty = AI->getAllocatedType();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 887 Type *Ty = AI.getAllocatedType();
1193 return (AI.getAllocatedType()->isSized() &&
1293 Type *AllocatedType = AI->getAllocatedType();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 137 Type *Ty = AI->getAllocatedType();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 443 Type *Ty = AI->getAllocatedType();
1705 auto *Value = Builder.CreateLoad(Alloca->getAllocatedType(), Alloca);
2157 auto ValueTy = Alloca->getAllocatedType();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 706 SVal ElementSize = getElementExtent(CNE->getAllocatedType(), svalBuilder);

Completed in 66 milliseconds

1 2 3