HomeSort by relevance Sort by last modified time
    Searched defs:ATy (Results 1 - 17 of 17) 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/llvm/lib/Target/
TargetLoweringObjectFile.cpp 78 ArrayType *ATy = cast<ArrayType>(C->getType());
82 if (ATy->getNumElements() == 0) return false;
85 dyn_cast<ConstantInt>(CVA->getOperand(ATy->getNumElements()-1));
90 for (unsigned i = 0, e = ATy->getNumElements()-1; i != e; ++i)
100 return ATy->getNumElements() == 1;
173 if (ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
175 dyn_cast<IntegerType>(ATy->getElementType())) {
TargetData.cpp 407 ArrayType *ATy = cast<ArrayType>(Ty);
408 return getTypeAllocSizeInBits(ATy->getElementType())*ATy->getNumElements();
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 345 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
347 new llvm::GlobalVariable(*mergedModule, ATy, false,
349 llvm::ConstantArray::get(ATy, asmUsed2),
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 142 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
143 if (ATy == 0 || AI->isArrayAllocation())
147 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
  /external/llvm/lib/VMCore/
Value.cpp 383 ArrayType *ATy = dyn_cast<ArrayType>(Ty);
384 if (!ATy)
388 if (CI->getZExtValue() >= ATy->getNumElements())
Type.cpp 114 const ArrayType *ATy = dyn_cast<ArrayType>(this);
115 if (ATy) {
116 unsigned NumElements = ATy->getNumElements();
117 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
175 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
176 return ATy->getElementType()->isSized();
AsmWriter.cpp 246 ArrayType *ATy = cast<ArrayType>(Ty);
247 OS << '[' << ATy->getNumElements() << " x ";
248 print(ATy->getElementType(), OS);
    [all...]
Constants.cpp 641 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
642 return get(ATy, ElementVals);
764 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
766 CI->getZExtValue() >= ATy->getNumElements())
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 650 DIType ATy(Args.getElement(i));
651 if (!ATy.Verify())
653 addGlobalType(ATy);
    [all...]
DwarfDebug.cpp 215 DIType ATy = DIType(DIType(Args.getElement(i)));
216 SPCU->addType(Arg, ATy);
217 if (ATy.isArtificial())
    [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 542 ArrayType *ATy = cast<ArrayType>(Ty);
543 unsigned NumElements = ATy->getNumElements();
548 printType(Out, ATy->getElementType(), false,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 505 milliseconds