HomeSort by relevance Sort by last modified time
    Searched defs:ATy (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 35 ArrayType *ATy = cast<ArrayType>(GVCtor->getType()->getElementType());
36 EltTy = cast<StructType>(ATy->getElementType());
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 417 const ArrayType *ATy = Context.getAsArrayType(T);
418 Info.Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity();
  /external/llvm/lib/IR/
Value.cpp 534 ArrayType *ATy = dyn_cast<ArrayType>(Ty);
535 if (!ATy)
539 if (CI->getZExtValue() >= ATy->getNumElements())
AutoUpgrade.cpp 177 ArrayType *ATy = dyn_cast<ArrayType>(GV->getType()->getElementType());
179 ATy ? dyn_cast<StructType>(ATy->getElementType()) : nullptr;
211 assert(Initializers.size() == ATy->getNumElements());
214 ATy = ArrayType::get(NewTy, Initializers.size());
215 Constant *NewInit = ConstantArray::get(ATy, Initializers);
217 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
Type.cpp 99 const ArrayType *ATy = dyn_cast<ArrayType>(this);
100 if (ATy) {
101 unsigned NumElements = ATy->getNumElements();
102 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
159 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
160 return ATy->getElementType()->isSized(Visited);
AsmWriter.cpp 254 ArrayType *ATy = cast<ArrayType>(Ty);
255 OS << '[' << ATy->getNumElements() << " x ";
256 print(ATy->getElementType(), OS);
    [all...]
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 424 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
426 new llvm::GlobalVariable(*mergedModule, ATy, false,
428 llvm::ConstantArray::get(ATy, asmUsed2),
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 187 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
188 if (!ATy || AI->isArrayAllocation())
192 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
GlobalOpt.cpp 513 if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
514 NumElements = ATy->getNumElements();
    [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 530 ArrayType *ATy = cast<ArrayType>(Ty);
531 return ATy->getNumElements() *
532 getTypeAllocSizeInBits(ATy->getElementType());
  /external/llvm/lib/Analysis/
Lint.cpp 426 Type *ATy = AI->getAllocatedType();
427 if (DL && !AI->isArrayAllocation() && ATy->isSized())
428 BaseSize = DL->getTypeAllocSize(ATy);
430 if (DL && BaseAlign == 0 && ATy->isSized())
431 BaseAlign = DL->getABITypeAlignment(ATy);
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 674 milliseconds