Home
last modified time | relevance | path

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

/external/llvm/include/llvm/
DDerivedTypes.h309 class SequentialType : public CompositeType {
311 SequentialType(const SequentialType &); // Do not implement!
312 const SequentialType &operator=(const SequentialType &); // Do not implement!
315 SequentialType(TypeID TID, Type *ElType) in SequentialType() function
325 static inline bool classof(const SequentialType *) { return true; } in classof() argument
336 class ArrayType : public SequentialType {
363 class VectorType : public SequentialType {
431 class PointerType : public SequentialType {
DConstants.h37 class SequentialType; variable
592 inline SequentialType *getType() const {
593 return reinterpret_cast<SequentialType*>(Value::getType());
/external/llvm/lib/VMCore/
DType.cpp226 return cast<SequentialType>(this)->getElementType(); in getSequentialElementType()
663 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex()
671 return cast<SequentialType>(this)->getElementType(); in getTypeAtIndex()
699 : SequentialType(ArrayTyID, ElType) { in ArrayType()
727 : SequentialType(VectorTyID, ElType) { in VectorType()
773 : SequentialType(PointerTyID, E) { in PointerType()
DConstantFold.cpp116 } else if (SequentialType *STy = in FoldBitCast()
117 dyn_cast<SequentialType>(ElTy)) { in FoldBitCast()
1953 if ((LastTy && isa<SequentialType>(LastTy)) || Idx0->isNullValue()) { in ConstantFoldGetElementPtrImpl()
2017 if (isa<SequentialType>(Prev)) { in ConstantFoldGetElementPtrImpl()
DConstants.cpp616 if (isa<SequentialType>(getType())) in getElementValue()
624 if (isa<SequentialType>(getType())) in getElementValue()
649 if (isa<SequentialType>(getType())) in getElementValue()
657 if (isa<SequentialType>(getType())) in getElementValue()
DCore.cpp389 return wrap(unwrap<SequentialType>(Ty)->getElementType()); in LLVMGetElementType()
/external/llvm/lib/Analysis/
DConstantFolding.cpp261 SequentialType *SQT = cast<SequentialType>(*GTI); in IsConstantOffsetFromGlobal()
352 Type *EltTy = cast<SequentialType>(C->getType())->getElementType(); in ReadDataFromGlobal()
707 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) { in SymbolicallyEvaluateGEP()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp324 SequentialType *STy = cast<SequentialType>(Ty); in isLeakCheckerRoot()
698 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) { in SRAGlobal()
2413 SequentialType *InitTy = cast<SequentialType>(Init->getType()); in EvaluateStoreInto()
/external/llvm/lib/Target/
DTargetData.cpp623 Ty = cast<SequentialType>(Ty)->getElementType(); in getIndexedOffset()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp790 SequentialType *ST = cast<SequentialType>(*I); in executeGEPOperation()
/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp826 SequentialType *SeqTy = dyn_cast<SequentialType>(*GTI); in visitGetElementPtrInst()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp482 Ty = cast<SequentialType>(Ty)->getElementType(); in SelectGetElementPtr()
DSelectionDAGBuilder.cpp3127 Ty = cast<SequentialType>(Ty)->getElementType(); in visitGetElementPtr()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp2239 Type *EltTy = cast<SequentialType>(OtherTy)->getElementType(); in RewriteMemIntrinUserOfAlloca()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1075 Type *EltTy = cast<SequentialType>(CurTy)->getElementType(); in ParseConstants()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli532 type [ty]. See the method [llvm::SequentialType::get]. *)