/external/swiftshader/third_party/LLVM/include/llvm/ |
D | DerivedTypes.h | 305 class SequentialType : public CompositeType { 307 SequentialType(const SequentialType &); // Do not implement! 308 const SequentialType &operator=(const SequentialType &); // Do not implement! 311 SequentialType(TypeID TID, Type *ElType) in SequentialType() function 321 static inline bool classof(const SequentialType *) { return true; } in classof() argument 332 class ArrayType : public SequentialType { 359 class VectorType : public SequentialType { 425 class PointerType : public SequentialType {
|
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 314 class SequentialType : public CompositeType { 316 SequentialType(const SequentialType &) = delete; 317 const SequentialType &operator=(const SequentialType &) = delete; 320 SequentialType(TypeID TID, Type *ElType) in SequentialType() function 338 class ArrayType : public SequentialType { 365 class VectorType : public SequentialType { 443 class PointerType : public SequentialType {
|
D | Constants.h | 38 class SequentialType; variable 595 inline SequentialType *getType() const { 596 return cast<SequentialType>(Value::getType());
|
/external/llvm/lib/IR/ |
D | Type.cpp | 562 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex() 571 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex() 604 : SequentialType(ArrayTyID, ElType) { in ArrayType() 631 : SequentialType(VectorTyID, ElType) { in VectorType() 676 : SequentialType(PointerTyID, E) { in PointerType()
|
D | ConstantFold.cpp | 121 } else if (SequentialType *STy = in FoldBitCast() 122 dyn_cast<SequentialType>(ElTy)) { in FoldBitCast() 2019 static bool isIndexInRangeOfSequentialType(SequentialType *STy, in isIndexInRangeOfSequentialType() 2119 else if (SequentialType *STy = dyn_cast_or_null<SequentialType>(LastTy)) in ConstantFoldGetElementPtrImpl() 2205 auto *STy = cast<SequentialType>(Ty); in ConstantFoldGetElementPtrImpl() 2219 if (!isa<SequentialType>(Prev)) { in ConstantFoldGetElementPtrImpl()
|
D | Constants.cpp | 753 if (isa<SequentialType>(getType())) in getElementValue() 759 if (isa<SequentialType>(getType())) in getElementValue() 786 if (isa<SequentialType>(getType())) in getElementValue() 792 if (isa<SequentialType>(getType())) in getElementValue()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Type.cpp | 583 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex() 591 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex() 619 : SequentialType(ArrayTyID, ElType) { in ArrayType() 647 : SequentialType(VectorTyID, ElType) { in VectorType() 691 : SequentialType(PointerTyID, E) { in PointerType()
|
D | ConstantFold.cpp | 118 } else if (SequentialType *STy = in FoldBitCast() 119 dyn_cast<SequentialType>(ElTy)) { in FoldBitCast() 2276 if (isa<SequentialType>(Prev)) { in ConstantFoldGetElementPtrImpl()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SeparateConstOffsetFromGEP.cpp | 725 if (isa<SequentialType>(*GTI)) { in canonicalizeArrayIndicesToPointerSize() 742 if (isa<SequentialType>(*GTI)) { in accumulateByteOffset() 790 if (isa<SequentialType>(*GTI)) { in lowerToSingleIndexGEPs() 851 if (isa<SequentialType>(*GTI)) { in lowerToArithmetics() 931 if (isa<SequentialType>(*GTI)) { in splitGEP()
|
D | NaryReassociate.cpp | 318 if (isa<SequentialType>(*GTI++)) { in tryReassociateGEP()
|
D | StraightLineStrengthReduce.cpp | 494 if (!isa<SequentialType>(*GTI++)) in allocateCandidatesAndFindBasisForGEP()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 289 } else if (SequentialType *STy = in getAggregateConstantElement() 290 dyn_cast<SequentialType>(Agg->getType())) { in getAggregateConstantElement() 297 } else if (SequentialType *STy = in getAggregateConstantElement() 298 dyn_cast<SequentialType>(Agg->getType())) { in getAggregateConstantElement() 536 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) { in SRAGlobal() 2223 SequentialType *InitTy = cast<SequentialType>(Init->getType()); in EvaluateStoreInto()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ConstantFolding.cpp | 224 SequentialType *SQT = cast<SequentialType>(*GTI); in IsConstantOffsetFromGlobal() 658 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) { in SymbolicallyEvaluateGEP()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 93 SequentialType *STy = cast<SequentialType>(Ty); in isLeakCheckerRoot() 474 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) { in SRAGlobal() 2125 SequentialType *InitTy = cast<SequentialType>(Init->getType()); in EvaluateStoreInto()
|
D | ArgumentPromotion.cpp | 179 if (SequentialType *seqTy = dyn_cast<SequentialType>(type)) in isDenselyPacked()
|
/external/swiftshader/third_party/LLVM/lib/Target/ |
D | TargetData.cpp | 558 Ty = cast<SequentialType>(Ty)->getElementType(); in getIndexedOffset()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 461 if (isa<SequentialType>(*GTI)) { in getGEPCost()
|
/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
D | PTXAsmPrinter.cpp | 101 type = dyn_cast<SequentialType>(type)->getElementType(); in getTypeName()
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 879 if (isa<SequentialType>(Ty)) { in aliasSameBasePointerGEPs() 892 DL.getTypeStoreSize(cast<SequentialType>(Ty)->getElementType()); in aliasSameBasePointerGEPs()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 781 SequentialType *ST = cast<SequentialType>(*I); in executeGEPOperation()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 817 SequentialType *SeqTy = dyn_cast<SequentialType>(*GTI); in visitGetElementPtrInst()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 202 return containsPointerType(dyn_cast<SequentialType>(Ty)->getElementType()); in containsPointerType()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1010 SequentialType *ST = cast<SequentialType>(*I); in executeGEPOperation()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 450 Ty = cast<SequentialType>(Ty)->getElementType(); in SelectGetElementPtr()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonCommonGEP.cpp | 186 Type *NexTy = cast<SequentialType>(Ty)->getElementType(); in next_type()
|