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

1 2

  /external/llvm/include/llvm/IR/
Constants.h 436 /// ConstantVector - Constant Vector Declarations
438 class ConstantVector : public Constant {
439 friend struct ConstantArrayCreator<ConstantVector, VectorType>;
440 ConstantVector(const ConstantVector &) LLVM_DELETED_FUNCTION;
442 ConstantVector(VectorType *T, ArrayRef<Constant *> Val);
444 // ConstantVector accessors
447 /// getSplat - Return a ConstantVector with the specified constant in each
475 struct OperandTraits<ConstantVector> :
476 public VariadicOperandTraits<ConstantVector> {
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 161 if (isa<ConstantVector>(C))
162 return VM[V] = ConstantVector::get(Ops);
  /external/llvm/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 708 ConstantVector *AndMaskVec = dyn_cast<ConstantVector>(AndMask);
709 ConstantVector *ShrValVec = dyn_cast<ConstantVector>(ShrVal);
739 newMaskConst = ConstantVector::get(maskVals);
740 shiftValConst = ConstantVector::get(shiftVals);
813 negOneConst = ConstantVector::get(negOneVals);
854 newMaskConst = ConstantVector::get(newMaskVals);
855 newShiftConst = ConstantVector::get(newShiftVals);
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 155 Constant *C2xi32a = ConstantVector::get(ConstVa);
156 Constant *C2xi32b = ConstantVector::get(ConstVb);
  /external/llvm/lib/IR/
Constants.cpp 101 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
161 C = ConstantVector::getSplat(VTy->getNumElements(), C);
178 return ConstantVector::getSplat(VTy->getNumElements(),
193 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
453 return ConstantVector::getSplat(VTy->getNumElements(),
465 return ConstantVector::getSplat(VTy->getNumElements(),
490 return ConstantVector::getSplat(VTy->getNumElements(), C);
515 return ConstantVector::getSplat(VTy->getNumElements(), C)
    [all...]
ConstantFold.cpp 67 return ConstantVector::get(Result);
146 // Handle ConstantVector and ConstantAggregateVector.
154 return ConstantExpr::getBitCast(ConstantVector::get(V), DestPTy);
549 if ((isa<ConstantVector>(V) || isa<ConstantDataVector>(V)) &&
561 return ConstantVector::get(res);
701 if (ConstantVector *CondV = dyn_cast<ConstantVector>(Cond)) {
715 return ConstantVector::get(Result);
780 return ConstantVector::get(Result);
    [all...]
LLVMContextImpl.h 272 typedef ConstantAggrUniqueMap<VectorType, ConstantVector> VectorConstantsTy;
AutoUpgrade.cpp 293 Rep = Builder.CreateShuffleVector(Op0, Op0, ConstantVector::get(Idxs));
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 188 return ConstantVector::get(VectorValue);
368 return PT->push_back(ConstantVector::getAllOnesValue(Ty));
370 return PT->push_back(ConstantVector::getNullValue(Ty));
448 Constant *Mask = ConstantVector::get(Idxs);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 102 return FoldBitCast(ConstantVector::get(Ops), DestTy, TD);
106 if (!isa<ConstantDataVector>(C) && !isa<ConstantVector>(C))
149 if (!isa<ConstantVector>(C) && // FIXME: Remove ConstantVector.
189 return ConstantVector::get(Result);
215 return ConstantVector::get(Result);
338 if (isa<ConstantArray>(C) || isa<ConstantVector>(C) ||
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp     [all...]
CGDecl.cpp 679 isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) ||
716 isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) ||
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineSelect.cpp     [all...]
InstCombineVectorOps.cpp 401 return new ShuffleVectorInst(LHS, RHS, ConstantVector::get(Mask));
474 SVI.setOperand(2, ConstantVector::get(Elts));
678 return new ShuffleVectorInst(newLHS, newRHS, ConstantVector::get(Elts));
InstCombineMulDivRem.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
LoopVectorize.cpp 792 Constant *Cv = ConstantVector::get(Indices);
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 524 Constant *CV = ConstantVector::get(r);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 424 ConstantVector,
449 DEFINE_CASE(Val, ConstantVector);
    [all...]

Completed in 377 milliseconds

1 2