HomeSort by relevance Sort by last modified time
    Searched refs:SequentialType (Results 1 - 20 of 20) 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 38 class SequentialType;
579 /// SequentialType, which reduces the amount of casting needed in parts of the
581 inline SequentialType *getType() const {
582 return 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 121 } else if (SequentialType *STy =
122 dyn_cast<SequentialType>(ElTy)) {
    [all...]
DataLayout.cpp 658 Ty = cast<SequentialType>(Ty)->getElementType();
Constants.cpp 673 if (isa<SequentialType>(getType()))
681 if (isa<SequentialType>(getType()))
706 if (isa<SequentialType>(getType()))
714 if (isa<SequentialType>(getType()))
    [all...]
Core.cpp 402 return wrap(unwrap<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 341 Type *EltTy = cast<SequentialType>(C->getType())->getElementType();
733 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 329 SequentialType *STy = cast<SequentialType>(Ty);
703 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 202 return containsPointerType(dyn_cast<SequentialType>(Ty)->getElementType());
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 202 return containsPointerType(dyn_cast<SequentialType>(Ty)->getElementType());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 499 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 2990 milliseconds