HomeSort by relevance Sort by last modified time
    Searched refs:ATy (Results 1 - 25 of 36) sorted by null

1 2

  /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/CodeGen/
Analysis.cpp 56 else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
57 Type *EltTy = ATy->getElementType();
58 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
92 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
93 Type *EltTy = ATy->getElementType();
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 301 AliasSet::AccessType ATy = AliasSet::Refs;
302 if (!LI->isUnordered()) ATy = AliasSet::ModRef;
307 ATy, NewPtr);
314 AliasSet::AccessType ATy = AliasSet::Mods;
315 if (!SI->isUnordered()) ATy = AliasSet::ModRef;
321 ATy, NewPtr);
ConstantFolding.cpp 686 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
687 if (ATy->isPointerTy()) {
693 if (!ATy->getElementType()->isSized())
698 APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType()));
712 Ty = ATy->getElementType();
    [all...]
  /external/llvm/tools/lto/
LTOCodeGenerator.cpp 316 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
318 new llvm::GlobalVariable(*mergedModule, ATy, false,
320 llvm::ConstantArray::get(ATy, asmUsed2),
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 167 if (ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
169 dyn_cast<IntegerType>(ATy->getElementType())) {
TargetData.cpp 472 ArrayType *ATy = cast<ArrayType>(Ty);
473 return getTypeAllocSizeInBits(ATy->getElementType())*ATy->getNumElements();
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 148 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
149 if (ATy == 0 || AI->isArrayAllocation())
153 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();
ConstantFold.cpp 335 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
336 Constant *N = ConstantInt::get(DestTy, ATy->getNumElements());
337 Constant *E = getFoldedSizeOf(ATy->getElementType(), DestTy, true);
394 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
395 Constant *C = ConstantExpr::getAlignOf(ATy->getElementType());
459 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
463 Constant *E = getFoldedSizeOf(ATy->getElementType(), DestTy, true);
    [all...]
AsmWriter.cpp 246 ArrayType *ATy = cast<ArrayType>(Ty);
247 OS << '[' << ATy->getNumElements() << " x ";
248 print(ATy->getElementType(), OS);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 94 if (ArrayType *ATy = dyn_cast<ArrayType>(
100 OutStreamer.EmitRawText(".globound," + Twine(ATy->getNumElements()));
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 695 DIType ATy(Args.getElement(i));
696 if (!ATy.Verify())
698 addGlobalType(ATy);
    [all...]
DwarfDebug.cpp 294 DIType ATy = DIType(DIType(Args.getElement(i)));
295 SPCU->addType(Arg, ATy);
296 if (ATy.isArtificial())
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 358 } else if (ArrayType *ATy = dyn_cast<ArrayType>(SrcPTy)) {
360 SrcPTy = ATy->getElementType();
InstCombineCalls.cpp 89 } else if (ArrayType *ATy = dyn_cast<ArrayType>(SrcETy)) {
90 if (ATy->getNumElements() == 1)
91 SrcETy = ATy->getElementType();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 111 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
112 BaseType = ATy->getElementType();
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp     [all...]
CodeGenModule.cpp 635 llvm::ArrayType *ATy = llvm::ArrayType::get(Int8PtrTy, UsedArray.size());
638 new llvm::GlobalVariable(getModule(), ATy, false,
640 llvm::ConstantArray::get(ATy, UsedArray),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 472 milliseconds

1 2