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

1 2 3 4

  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 48 assert(Ty->isVectorTy() && "Can only scalarize vectors");
65 assert(Ty->isVectorTy() && "Can only shuffle vectors");
316 if (Ty->isVectorTy()) {
368 if (!Src->isVectorTy() && !Dst->isVectorTy()) {
384 if (Dst->isVectorTy() && Src->isVectorTy()) {
423 return (Src->isVectorTy() ? getScalarizationOverhead(Src, false, true)
425 (Dst->isVectorTy() ? getScalarizationOverhead(Dst, true, false)
444 if (CondTy->isVectorTy())
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 296 assert(Val->isVectorTy() && "This must be a vector type");
372 if (Ty->isVectorTy() && IsComplex)
386 if (ValTy->isVectorTy() && ISD == ISD::SELECT) {
415 if (Opcode == Instruction::Store && Src->isVectorTy() && Alignment != 16 &&
427 if (Src->isVectorTy() && Src->getVectorElementType()->isIntegerTy(8) &&
465 if (!I->isVectorTy())
AArch64PromoteConstant.cpp 222 if (CstTy->isVectorTy())
326 if (Cst->getType()->isVectorTy())
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 384 if (RemTy->isVectorTy())
444 if (DivTy->isVectorTy())
495 if (RemTy->isVectorTy())
545 if (RemTy->isVectorTy())
596 if (DivTy->isVectorTy())
646 if (DivTy->isVectorTy())
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
Instructions.cpp     [all...]
  /external/llvm/lib/Analysis/
CodeMetrics.cpp 149 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
VectorUtils.cpp 368 assert(V->getType()->isVectorTy() && "Not looking at a vector?");
469 !I.getType()->isVectorTy() &&
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 109 } else if (Arg->getType()->isVectorTy() &&
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 91 EXPECT_TRUE(V->getType()->isVectorTy());
  /external/llvm/include/llvm/IR/
Type.h 217 /// isVectorTy - True if this is an instance of VectorType.
219 bool isVectorTy() const { return getTypeID() == VectorTyID; }
245 isPointerTy() || isVectorTy();
PatternMatch.h 168 if (V->getType()->isVectorTy())
208 if (V->getType()->isVectorTy())
227 if (V->getType()->isVectorTy())
333 if (V->getType()->isVectorTy())
370 if (!CI && V->getType()->isVectorTy())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 295 assert(Val->isVectorTy() && "This must be a vector type");
383 if (Src->isVectorTy() && Opcode == Instruction::Store)
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 62 if (Src->isVectorTy() && ST->hasNEON() && (ISD == ISD::FP_ROUND ||
249 ValTy->isVectorTy() &&
262 if (ValTy->isVectorTy() &&
274 if (ST->hasNEON() && ValTy->isVectorTy() && ISD == ISD::SELECT) {
305 if (Ty->isVectorTy() && IsComplex)
463 if (Src->isVectorTy() && Alignment != 16 &&
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 202 } else if (Tp->isVectorTy()) {
233 if (V->getType()->isVectorTy())
319 if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
375 if (Ty->isVectorTy()) {
492 if (VTy->isVectorTy()) {
581 if (Val0->getType()->isVectorTy() && (Ran->Rand() % 1)) {
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 317 if (MaskTy->isVectorTy() && MaskTy->getVectorElementType()->isIntegerTy(8)) {
393 assert(MaskTy->isVectorTy() && "Expected a vector constant mask!");
556 if (MaskTy->isVectorTy()) {
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 471 bool isVector = aType->isVectorTy();
711 bool isVector = aType->isVectorTy();
853 if (type->isVectorTy()) {
894 if (type->isVectorTy()) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 82 if (S->getType()->isVectorTy()) return false;
123 if (!Condition->getType()->isVectorTy()) {
ScalarReplAggregates.cpp     [all...]
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 218 if (OpC->getType()->isVectorTy())
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 365 if (TY->isVectorTy()) { \
393 if (Ty->isVectorTy())
469 if (TY->isVectorTy()) { \
536 if(Ty->isVectorTy()) {
567 if(Ty->isVectorTy()) {
598 if(Ty->isVectorTy()) {
689 if (Ty->isVectorTy()) {
793 if(Ty->isVectorTy()) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 280 if (opc == Instruction::SExt && isa<CmpInst>(V) && Ty->isVectorTy())
502 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &&
    [all...]
InstCombineVectorOps.cpp 254 if (Cond->getType()->isVectorTy()) {
369 assert(V->getType()->isVectorTy() && "Invalid shuffle!");
700 assert(V->getType()->isVectorTy() && "can't reorder non-vector elements");
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]

Completed in 3196 milliseconds

1 2 3 4