Searched defs:ConstantVector (Results 1 - 4 of 4) sorted by last modified time

/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml271 | ConstantVector Constructor in type:ValueKind/t
H A Dllvm_ocaml.c489 ConstantVector, enumerator in enum:ValueKind
516 DEFINE_CASE(Val, ConstantVector);
/external/llvm/include/llvm/IR/
H A DConstants.h435 /// ConstantVector - Constant Vector Declarations
437 class ConstantVector : public Constant { class in namespace:llvm
438 friend struct ConstantArrayCreator<ConstantVector, VectorType>;
439 ConstantVector(const ConstantVector &) LLVM_DELETED_FUNCTION;
441 ConstantVector(VectorType *T, ArrayRef<Constant *> Val);
443 // ConstantVector accessors
446 /// getSplat - Return a ConstantVector with the specified constant in each
474 struct OperandTraits<ConstantVector> :
475 public VariadicOperandTraits<ConstantVector> {
[all...]
/external/llvm/lib/IR/
H A DConstants.cpp98 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
120 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
180 C = ConstantVector::getSplat(VTy->getNumElements(), C);
197 return ConstantVector::getSplat(VTy->getNumElements(),
212 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
496 return ConstantVector::getSplat(VTy->getNumElements(),
508 return ConstantVector
950 ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V) function in class:ConstantVector
[all...]

Completed in 350 milliseconds