HomeSort by relevance Sort by last modified time
    Searched refs:SequentialType (Results 1 - 19 of 19) sorted by null

  /external/llvm/include/llvm/IR/
DerivedTypes.h 298 /// SequentialType - This is the superclass of the array, pointer and vector
302 /// allow for use of SIMD instructions. SequentialType holds the common
306 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)
332 class ArrayType : public SequentialType {
358 class VectorType : public SequentialType {
    [all...]
Constants.h 37 class SequentialType;
580 /// SequentialType, which reduces the amount of casting needed in parts of the
582 inline SequentialType *getType() const {
583 return reinterpret_cast<SequentialType*>(Value::getType());
    [all...]
Instructions.h 766 SequentialType *getType() const {
767 return cast<SequentialType>(Instruction::getType());
    [all...]
  /external/llvm/lib/IR/
Type.cpp 207 return cast<SequentialType>(this)->getElementType();
639 return cast<SequentialType>(this)->getElementType();
647 return cast<SequentialType>(this)->getElementType();
679 : SequentialType(ArrayTyID, ElType) {
706 : SequentialType(VectorTyID, ElType) {
751 : SequentialType(PointerTyID, E) {
ConstantFold.cpp 120 } else if (SequentialType *STy =
121 dyn_cast<SequentialType>(ElTy)) {
    [all...]
DataLayout.cpp 691 Ty = cast<SequentialType>(Ty)->getElementType();
Constants.cpp 668 if (isa<SequentialType>(getType()))
676 if (isa<SequentialType>(getType()))
701 if (isa<SequentialType>(getType()))
709 if (isa<SequentialType>(getType()))
    [all...]
Core.cpp 396 return wrap(unwrap<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 340 Type *EltTy = cast<SequentialType>(C->getType())->getElementType();
732 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 328 SequentialType *STy = cast<SequentialType>(Ty);
702 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 790 SequentialType *ST = cast<SequentialType>(*I);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 204 return containsPointerType(dyn_cast<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 503 Ty = cast<SequentialType>(Ty)->getElementType();
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 532 type [ty]. See the method [llvm::SequentialType::get]. *)
    [all...]

Completed in 601 milliseconds