Home
last modified time | relevance | path

Searched refs:CompositeType (Results 1 – 17 of 17) sorted by relevance

/external/llvm/include/llvm/IR/
DGetElementPtrTypeIterator.h73 CompositeType *CT = cast<CompositeType>(CurTy.getPointer()); in getIndexedType()
86 } else if (CompositeType *CT =
87 dyn_cast<CompositeType>(CurTy.getPointer())) {
DDerivedTypes.h148 class CompositeType : public Type {
150 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) {} in CompositeType() function
190 class StructType : public CompositeType {
194 : CompositeType(C, StructTyID), SymbolTableEntry(nullptr) {} in StructType()
305 class SequentialType : public CompositeType {
312 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType()
/external/guice/core/src/com/google/inject/internal/
DMoreTypes.java139 } else if (type instanceof CompositeType) { in isFullySpecified()
140 return ((CompositeType) type).isFullySpecified(); in isFullySpecified()
146 return ((CompositeType) canonicalize(type)).isFullySpecified(); in isFullySpecified()
160 } else if (type instanceof CompositeType) { in canonicalize()
356 implements ParameterizedType, Serializable, CompositeType {
445 implements GenericArrayType, Serializable, CompositeType {
481 public static class WildcardTypeImpl implements WildcardType, Serializable, CompositeType {
547 private interface CompositeType { interface in MoreTypes
/external/llvm/lib/CodeGen/
DAnalysis.cpp377 static bool indexReallyValid(CompositeType *T, unsigned Idx) { in indexReallyValid()
401 static bool advanceToNextLeafType(SmallVectorImpl<CompositeType *> &SubTypes, in advanceToNextLeafType()
419 CompositeType *CT = cast<CompositeType>(DeeperType); in advanceToNextLeafType()
443 SmallVectorImpl<CompositeType *> &SubTypes, in firstRealType()
449 indexReallyValid(cast<CompositeType>(Next), 0)) { in firstRealType()
450 SubTypes.push_back(cast<CompositeType>(Next)); in firstRealType()
452 Next = cast<CompositeType>(Next)->getTypeAtIndex(0U); in firstRealType()
472 static bool nextRealType(SmallVectorImpl<CompositeType *> &SubTypes, in nextRealType()
577 SmallVector<CompositeType *, 4> RetSubTypes, CallSubTypes; in returnTypeIsEligibleForTailCall()
/external/deqp/external/vulkancts/
Dgen_framework.py175 class CompositeType: class
185 names = {CompositeType.CLASS_STRUCT: 'struct', CompositeType.CLASS_UNION: 'union'}
325 return CompositeType(type, name, members)
328 typeMap = { 'struct': CompositeType.CLASS_STRUCT, 'union': CompositeType.CLASS_UNION }
861 return type.typeClass == CompositeType.CLASS_STRUCT and \
/external/llvm/lib/IR/
DType.cpp626 Type *CompositeType::getTypeAtIndex(const Value *V) const { in getTypeAtIndex()
637 Type *CompositeType::getTypeAtIndex(unsigned Idx) const{ in getTypeAtIndex()
646 bool CompositeType::indexValid(const Value *V) const { in indexValid()
663 bool CompositeType::indexValid(unsigned Idx) const { in indexValid()
DInstructions.cpp1552 CompositeType *CT = dyn_cast<CompositeType>(Agg); in getIndexedTypeInternal()
1899 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index); in getIndexedType()
DConstantFold.cpp2174 Prev = Ty, Ty = cast<CompositeType>(Ty)->getTypeAtIndex(Idxs[i]), ++i) { in ConstantFoldGetElementPtrImpl()
/external/llvm/bindings/go/llvm/
DDIBuilderBindings.cpp76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument
81 unwrap<DISubroutineType>(CompositeType), in LLVMDIBuilderCreateFunction()
DDIBuilderBindings.h57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
/external/llvm/lib/Transforms/IPO/
DStripSymbols.cpp153 if (isa<CompositeType>(C->getType())) in RemoveDeadConstant()
DArgumentPromotion.cpp144 if (!isa<CompositeType>(type)) in isDenselyPacked()
820 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(*II); in DoPromotion()
DGlobalOpt.cpp145 if (isa<CompositeType>(InnerTy)) in isLeakCheckerRoot()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp1819 isa<CompositeType>(SrcElTy) && !SrcElTy->isPointerTy() && in visitBitCast()
1821 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(0U); in visitBitCast()
DInstructionCombining.cpp1439 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) { in visitGetElementPtrInst()
/external/testng/lib-supplied/
Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ ...
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp2101 GepTy = cast<CompositeType>(GepTy)->getTypeAtIndex(0U); in RewriteGEP()