Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/include/llvm/IR/
DDerivedTypes.h306 class SequentialType : public CompositeType {
308 SequentialType(const SequentialType &) LLVM_DELETED_FUNCTION;
309 const SequentialType &operator=(const SequentialType &) LLVM_DELETED_FUNCTION;
312 SequentialType(TypeID TID, Type *ElType) in SequentialType() function
332 class ArrayType : public SequentialType {
358 class VectorType : public SequentialType {
425 class PointerType : public SequentialType {
DConstants.h38 class SequentialType; variable
581 inline SequentialType *getType() const {
582 return cast<SequentialType>(Value::getType());
DInstructions.h764 SequentialType *getType() const {
765 return cast<SequentialType>(Instruction::getType());
/freebsd-9-stable/contrib/llvm/lib/IR/
DType.cpp207 return cast<SequentialType>(this)->getElementType(); in getSequentialElementType()
635 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex()
643 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex()
675 : SequentialType(ArrayTyID, ElType) { in ArrayType()
702 : SequentialType(VectorTyID, ElType) { in VectorType()
747 : SequentialType(PointerTyID, E) { in PointerType()
DConstantFold.cpp121 } else if (SequentialType *STy = in FoldBitCast()
122 dyn_cast<SequentialType>(ElTy)) { in FoldBitCast()
1903 static bool isIndexInRangeOfSequentialType(const SequentialType *STy, in isIndexInRangeOfSequentialType()
1997 else if (SequentialType *STy = dyn_cast_or_null<SequentialType>(LastTy)) in ConstantFoldGetElementPtrImpl()
2072 !isIndexInRangeOfSequentialType(cast<SequentialType>(Ty), CI)) { in ConstantFoldGetElementPtrImpl()
2073 if (isa<SequentialType>(Prev)) { in ConstantFoldGetElementPtrImpl()
DDataLayout.cpp665 Ty = cast<SequentialType>(Ty)->getElementType(); in getIndexedOffset()
DConstants.cpp673 if (isa<SequentialType>(getType())) in getElementValue()
681 if (isa<SequentialType>(getType())) in getElementValue()
706 if (isa<SequentialType>(getType())) in getElementValue()
714 if (isa<SequentialType>(getType())) in getElementValue()
DCore.cpp426 return wrap(unwrap<SequentialType>(Ty)->getElementType()); in LLVMGetElementType()
/freebsd-9-stable/contrib/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp126 SequentialType *STy = cast<SequentialType>(Ty); in isLeakCheckerRoot()
508 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) { in SRAGlobal()
2228 SequentialType *InitTy = cast<SequentialType>(Init->getType()); in EvaluateStoreInto()
/freebsd-9-stable/contrib/llvm/lib/Transforms/Scalar/
DSROA.cpp1225 if (SequentialType *SeqTy = dyn_cast<SequentialType>(ElementTy)) { in getNaturalGEPWithType()
2947 if (SequentialType *SeqTy = dyn_cast<SequentialType>(Ty)) { in getTypePartition()
DScalarReplAggregates.cpp2231 Type *EltTy = cast<SequentialType>(OtherTy)->getElementType(); in RewriteMemIntrinUserOfAlloca()
/freebsd-9-stable/contrib/llvm/lib/Analysis/
DConstantFolding.cpp760 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) { in SymbolicallyEvaluateGEP()
/freebsd-9-stable/contrib/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1094 SequentialType *SeqTy = dyn_cast<SequentialType>(*GTI); in visitGetElementPtrInst()
/freebsd-9-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1008 SequentialType *ST = cast<SequentialType>(*I); in executeGEPOperation()
/freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp499 Ty = cast<SequentialType>(Ty)->getElementType(); in SelectGetElementPtr()
DSelectionDAGBuilder.cpp3279 Ty = cast<SequentialType>(Ty)->getElementType(); in visitGetElementPtr()
/freebsd-9-stable/contrib/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1270 Type *EltTy = cast<SequentialType>(CurTy)->getElementType(); in ParseConstants()