| /minix3/minix/llvm/passes/magic/support/ |
| H A D | SmartType.cpp | 94 unsigned SmartType::getNumContainedTypes() const { in getNumContainedTypes() function in llvm::SmartType 98 unsigned numContainedTypes = type->getNumContainedTypes(); in getNumContainedTypes() 108 numContainedEDITypes = aEDIType.getNumContainedTypes(); in getNumContainedTypes() 139 SmartType_assert(getNumContainedTypes() == 1); in getUnionMemberIdx() 141 unsigned numSubEDITypes = aEDIType.getNumContainedTypes(); in getUnionMemberIdx() 247 unsigned numContainedTypes = getNumContainedTypes(); in equals() 248 unsigned otherNumContainedTypes = other->getNumContainedTypes(); in equals() 478 if(ret < 0 || explicitContainedEDITypes.size() != type->getNumContainedTypes()) { in flattenFunctionTy() 488 unsigned containedTypes = type->getNumContainedTypes(); in flattenFunctionArgs() 489 unsigned containedEDITypes = aEDIType->isUnionTy() ? 1 : aEDIType->getNumContainedTypes(); in flattenFunctionArgs() [all …]
|
| H A D | EDIType.cpp | 72 unsigned EDIType::getNumContainedTypes() const { in getNumContainedTypes() function in llvm::EDIType 113 unsigned numContainedTypes = getNumContainedTypes(); in hasInnerPointers() 192 unsigned numContainedTypes = getNumContainedTypes(); in getTopStructType() 225 unsigned numContainedTypes = getNumContainedTypes(); in printDescription() 278 unsigned numContainedTypes = getNumContainedTypes(); in printDescription() 294 unsigned numContainedTypes = getNumContainedTypes(); in printDescription() 334 unsigned numContainedTypes = getNumContainedTypes(); in equals() 335 unsigned numOtherContainedTypes = other->getNumContainedTypes(); in equals() 425 if(!type->isStructTy() || type->getNumContainedTypes() != 1) { in lookupUnionMemberName() 503 EDIType_assert(getNumContainedTypes() == 1); in normalize()
|
| H A D | TypeUtil.cpp | 12 if(type->getNumContainedTypes() < 2) { in isPaddedType() 15 TYPECONST Type *lastContainedType = type->getContainedType(type->getNumContainedTypes() - 1); in isPaddedType() 38 unsigned numContainedTypes = type->getNumContainedTypes(); in lookupTopStructType() 128 unsigned numContainedTypes = type->getNumContainedTypes(); in hasInnerPointers() 151 if (type->getNumContainedTypes() == 1) { in isArrayAsStructTy() 288 unsigned numContainedTypes = type->getNumContainedTypes(); in printTypeString() 343 unsigned numContainedTypes = type->getNumContainedTypes(); in printTypeString() 359 unsigned numContainedTypes = type->getNumContainedTypes(); in printTypeString()
|
| H A D | BitFieldAggregation.cpp | 81 unsigned typeContainedTypes = type->getNumContainedTypes(); in getBitFieldAggregations() 82 unsigned aEDITypeContainedTypes = aEDIType->getNumContainedTypes(); in getBitFieldAggregations()
|
| /minix3/minix/llvm/passes/include/magic/support/ |
| H A D | TypeInfo.h | 33 unsigned getNumContainedTypes() const; 109 unsigned numContainedTypes = aSmartType->getNumContainedTypes(); in TypeInfo() 158 assert(this->aType->getNumContainedTypes() > 0); in TypeInfo() 159 …TYPECONST Type *lastSubType = this->aType->getContainedType(this->aType->getNumContainedTypes()-1); in TypeInfo() 293 inline unsigned TypeInfo::getNumContainedTypes() const { in getNumContainedTypes() function 311 …std::string typeString = forceTypeDescription || aType->getNumContainedTypes() == 0 ? getDescripti… in getTypeString()
|
| H A D | SmartType.h | 50 unsigned getNumContainedTypes() const; 210 numElements = type->getNumContainedTypes(); in getNumElements()
|
| H A D | BitFieldAggregation.h | 98 unsigned numContainedTypes = aEDIType->getNumContainedTypes(); in hasBitFields()
|
| H A D | EDIType.h | 36 unsigned getNumContainedTypes() const;
|
| H A D | MagicMemFunction.h | 261 …d arg_size = MagicUtil::getCalledFunctionFromCS(CS)->getFunctionType()->getNumContainedTypes() - 1; in replaceInstruction() 292 for (i = 1; i < function->getFunctionType()->getNumContainedTypes(); i++) { in getMemFunctionPointerParam()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 176 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes()) in areTypesIsomorphic() 207 for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I) in areTypesIsomorphic() 281 if (Ty->getNumContainedTypes() == 0 && IsUniqued) in get() 286 ElementTypes.resize(Ty->getNumContainedTypes()); in get() 287 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) { in get()
|
| /minix3/minix/llvm/passes/magic/ |
| H A D | MagicPass.cpp | 1178 assert(aTypeInfo->getNumContainedTypes() == 0); in runOnModule() 1190 assert(rawTypeInfos[i]->getNumContainedTypes() == 1); in runOnModule() 1337 assert(aTypeInfo->getNumContainedTypes() == memberNames.size()); in runOnModule() 1350 assert(aTypeInfo->getNumContainedTypes() == aTypeInfo->getNumChildTypes()); in runOnModule() 1407 for(unsigned j=0;j<aTypeInfo->getNumContainedTypes();j++) { in runOnModule() 1428 …assert(aTypeInfo->getNumContainedTypes() == 1 && aTypeInfo->getContainedType(0)->getType()->isArra… in runOnModule() 1772 if(ptrVarIndex >= type->getNumContainedTypes()) { in checkPointerVariableIndexes() 2276 unsigned numContainedTypes = aSmartType ? aSmartType->getNumContainedTypes() : 0; in fillTypeInfos() 2456 unsigned numContainedTypes = aTypeInfo->getNumContainedTypes(); in printInterestingTypes() 2477 unsigned numContainedTypes = aTypeInfo->getNumContainedTypes(); in getMaxRecursiveSequenceLength() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Type.h | 339 unsigned getNumContainedTypes() const { return NumContainedTys; } in getNumContainedTypes() function
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | ExternalFunctions.cpp | 96 for (unsigned i = 0, e = FT->getNumContainedTypes(); i != e; ++i) in lookupFunction()
|
| /minix3/minix/llvm/passes/include/common/ |
| H A D | pass_common.h | 449 …->isStructTy() && (((TYPECONST StructType*)type)->isOpaque() || type->getNumContainedTypes() == 0); in isOpaqueTy() 993 unsigned numContainedTypes = type->getNumContainedTypes(); in getTypeHash()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | ScalarReplAggregates.cpp | 1556 ElementAllocas.reserve(ST->getNumContainedTypes()); in DoScalarReplacement() 1557 for (unsigned i = 0, e = ST->getNumContainedTypes(); i != e; ++i) { in DoScalarReplacement() 1767 NumElts = ST->getNumContainedTypes(); in isHomogeneousAggregate()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | Mips16ISelLowering.cpp | 394 if (RetTy->getNumContainedTypes() == 2) { in getMips16HelperFunction()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 1793 SrcElTy->getNumContainedTypes() /* not "{}" */) { in visitBitCast()
|