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

  /external/llvm/lib/Transforms/Instrumentation/
EdgeProfiling.cpp 77 Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);
79 new GlobalVariable(M, ATy, false, GlobalValue::InternalLinkage,
80 Constant::getNullValue(ATy), "EdgeProfCounters");
OptimalEdgeProfiling.cpp 116 ArrayType *ATy = ArrayType::get(Int32, NumEdges);
118 new GlobalVariable(M, ATy, false, GlobalValue::InternalLinkage,
119 Constant::getNullValue(ATy), "OptEdgeProfCounters");
218 Constant *init = ConstantArray::get(ATy, Initializer);
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 417 const ArrayType *ATy = Context.getAsArrayType(T);
418 Info.Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity();
  /external/llvm/include/llvm/IR/
DataLayout.h 456 ArrayType *ATy = cast<ArrayType>(Ty);
457 return ATy->getNumElements() *
458 getTypeAllocSizeInBits(ATy->getElementType());
  /external/llvm/lib/IR/
Value.cpp 445 ArrayType *ATy = dyn_cast<ArrayType>(Ty);
446 if (!ATy)
450 if (CI->getZExtValue() >= ATy->getNumElements())
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();
162 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
163 return ATy->getElementType()->isSized();
AsmWriter.cpp 249 ArrayType *ATy = cast<ArrayType>(Ty);
250 OS << '[' << ATy->getNumElements() << " x ";
251 print(ATy->getElementType(), OS);
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 178 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
179 if (ATy == 0 || AI->isArrayAllocation())
183 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
GlobalOpt.cpp 705 if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
706 NumElements = ATy->getNumElements();
    [all...]
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 371 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
373 new llvm::GlobalVariable(*mergedModule, ATy, false,
375 llvm::ConstantArray::get(ATy, asmUsed2),
  /external/llvm/lib/Analysis/
Lint.cpp 426 Type *ATy = AI->getAllocatedType();
427 if (TD && !AI->isArrayAllocation() && ATy->isSized())
428 BaseSize = TD->getTypeAllocSize(ATy);
430 if (TD && BaseAlign == 0 && ATy->isSized())
431 BaseAlign = TD->getABITypeAlignment(ATy);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 823 DIType ATy(Args.getElement(i));
824 if (!ATy.isType())
826 addGlobalType(ATy);
    [all...]
DwarfDebug.cpp 399 DIType ATy = DIType(Args.getElement(i));
400 SPCU->addType(Arg, ATy);
401 if (ATy.isArtificial())
403 if (ATy.isObjectPointer())
    [all...]
  /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...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 1626 milliseconds