/external/llvm/lib/Transforms/Utils/ |
CtorUtils.cpp | 39 ArrayType *ATy = 41 Constant *CA = ConstantArray::get(ATy, CAList);
|
ModuleUtils.cpp | 36 ArrayType *ATy = cast<ArrayType>(GVCtor->getType()->getElementType()); 37 EltTy = cast<StructType>(ATy->getElementType());
|
/external/llvm/lib/LTO/ |
LTOCodeGenerator.cpp | 438 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size()); 440 new llvm::GlobalVariable(*MergedModule, ATy, false, 442 llvm::ConstantArray::get(ATy, asmUsed2),
|
/external/llvm/include/llvm/IR/ |
DataLayout.h | 520 ArrayType *ATy = cast<ArrayType>(Ty); 521 return ATy->getNumElements() * 522 getTypeAllocSizeInBits(ATy->getElementType());
|
/external/llvm/lib/Analysis/ |
Lint.cpp | 428 Type *ATy = AI->getAllocatedType(); 429 if (!AI->isArrayAllocation() && ATy->isSized()) 430 BaseSize = DL->getTypeAllocSize(ATy); 432 if (BaseAlign == 0 && ATy->isSized()) 433 BaseAlign = DL->getABITypeAlignment(ATy);
|
LoopAccessAnalysis.cpp | [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonBitTracker.cpp | 53 Type *ATy = Arg.getType(); 55 if (ATy->isIntegerTy()) 56 Width = ATy->getIntegerBitWidth(); 57 else if (ATy->isPointerTy()) [all...] |
/external/llvm/lib/Transforms/IPO/ |
Inliner.cpp | 198 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType()); 199 if (!ATy || AI->isArrayAllocation()) 203 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy]; [all...] |
GlobalOpt.cpp | 516 if (ArrayType *ATy = dyn_cast<ArrayType>(STy)) 517 NumElements = ATy->getNumElements(); [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
InstrProfiling.cpp | 454 ArrayType *ATy = ArrayType::get(i8PTy, MergedVars.size()); 456 new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage, 457 ConstantArray::get(ATy, MergedVars), "llvm.used");
|
/external/clang/lib/AST/ |
RecordLayoutBuilder.cpp | [all...] |
ASTContext.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
ScalarReplAggregates.cpp | [all...] |
/external/llvm/lib/IR/ |
AsmWriter.cpp | 514 ArrayType *ATy = cast<ArrayType>(Ty); 515 OS << '[' << ATy->getNumElements() << " x "; 516 print(ATy->getElementType(), OS); [all...] |