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

1 2

  /external/llvm/include/llvm/IR/
DerivedTypes.h 301 /// SequentialType - This is the superclass of the array, pointer and vector
305 /// allow for use of SIMD instructions. SequentialType holds the common
309 class SequentialType : public CompositeType {
311 SequentialType(const SequentialType &) = delete;
312 const SequentialType &operator=(const SequentialType &) = delete;
315 SequentialType(TypeID TID, Type *ElType)
335 class ArrayType : public SequentialType {
361 class VectorType : public SequentialType {
    [all...]
Operator.h 404 return cast<SequentialType>(getPointerOperandType()->getScalarType())
Constants.h 38 class SequentialType;
589 /// SequentialType, which reduces the amount of casting needed in parts of the
591 inline SequentialType *getType() const {
592 return cast<SequentialType>(Value::getType());
    [all...]
Instructions.h 866 SequentialType *getType() const
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 681 if (isa<SequentialType>(*GTI)) {
699 if (isa<SequentialType>(*GTI)) {
741 if (isa<SequentialType>(*GTI)) {
    [all...]
StraightLineStrengthReduce.cpp 248 if (isa<SequentialType>(*GTI)) {
498 if (!isa<SequentialType>(*GTI++))
SROA.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/IR/
Type.cpp 205 return cast<SequentialType>(this)->getElementType();
637 return cast<SequentialType>(this)->getElementType();
645 return cast<SequentialType>(this)->getElementType();
677 : SequentialType(ArrayTyID, ElType) {
704 : SequentialType(VectorTyID, ElType) {
750 : SequentialType(PointerTyID, E) {
ConstantFold.cpp 123 } else if (SequentialType *STy =
124 dyn_cast<SequentialType>(ElTy)) {
    [all...]
DataLayout.cpp 747 Ty = cast<SequentialType>(Ty)->getElementType();
Constants.cpp 754 if (isa<SequentialType>(getType()))
762 if (isa<SequentialType>(getType()))
795 if (isa<SequentialType>(getType()))
803 if (isa<SequentialType>(getType()))
    [all...]
Core.cpp 485 return wrap(unwrap<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 142 if (SequentialType *seqTy = dyn_cast<SequentialType>(type))
    [all...]
GlobalOpt.cpp 128 SequentialType *STy = cast<SequentialType>(Ty);
511 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 813 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 202 return containsPointerType(dyn_cast<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 713 if (SequentialType *SeqTy = dyn_cast<SequentialType>(InitTy)) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 515 Ty = cast<SequentialType>(Ty)->getElementType();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]

Completed in 595 milliseconds

1 2