HomeSort by relevance Sort by last modified time
    Searched defs:ATy (Results 1 - 15 of 15) 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/tools/lto/
LTOCodeGenerator.cpp 325 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
327 new llvm::GlobalVariable(*mergedModule, ATy, false,
329 llvm::ConstantArray::get(ATy, asmUsed2),
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 149 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
150 if (ATy == 0 || AI->isArrayAllocation())
154 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
  /external/llvm/lib/VMCore/
Value.cpp 433 ArrayType *ATy = dyn_cast<ArrayType>(Ty);
434 if (!ATy)
438 if (CI->getZExtValue() >= ATy->getNumElements())
Type.cpp 116 const ArrayType *ATy = dyn_cast<ArrayType>(this);
117 if (ATy) {
118 unsigned NumElements = ATy->getNumElements();
119 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
179 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
180 return ATy->getElementType()->isSized();
AsmWriter.cpp 252 ArrayType *ATy = cast<ArrayType>(Ty);
253 OS << '[' << ATy->getNumElements() << " x ";
254 print(ATy->getElementType(), OS);
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 472 ArrayType *ATy = cast<ArrayType>(Ty);
473 return getTypeAllocSizeInBits(ATy->getElementType())*ATy->getNumElements();
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 689 DIType ATy(Args.getElement(i));
690 if (!ATy.Verify())
692 addGlobalType(ATy);
    [all...]
DwarfDebug.cpp 329 DIType ATy = DIType(DIType(Args.getElement(i)));
330 SPCU->addType(Arg, ATy);
331 if (ATy.isArtificial())
    [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...]

Completed in 522 milliseconds