Searched refs:EltSizeInBits (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/llvm-ir/ |
D | extractelement.ll | 6 ; Base + Index * (EltSizeInBits / 8) 7 ; and EltSizeInBits was 1. This caused the index to be forgotten.
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
D | extractelement.ll | 6 ; Base + Index * (EltSizeInBits / 8) 7 ; and EltSizeInBits was 1. This caused the index to be forgotten.
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2188 Type *getMMXVectorTy(unsigned EltSizeInBits) { in getMMXVectorTy() 2190 return VectorType::get(IntegerType::get(*MS.C, EltSizeInBits), in getMMXVectorTy() 2191 X86_MMXSizeInBits / EltSizeInBits); in getMMXVectorTy() 2232 void handleVectorPackIntrinsic(IntrinsicInst &I, unsigned EltSizeInBits = 0) { in handleVectorPackIntrinsic() 2243 Type *T = isX86_MMX ? getMMXVectorTy(EltSizeInBits) : S1->getType(); in handleVectorPackIntrinsic() 2289 unsigned EltSizeInBits = 0) { in handleVectorPmaddIntrinsic() 2291 Type *ResTy = isX86_MMX ? getMMXVectorTy(EltSizeInBits * 2) : I.getType(); in handleVectorPmaddIntrinsic()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2384 Type *getMMXVectorTy(unsigned EltSizeInBits) { in getMMXVectorTy() 2386 return VectorType::get(IntegerType::get(*MS.C, EltSizeInBits), in getMMXVectorTy() 2387 X86_MMXSizeInBits / EltSizeInBits); in getMMXVectorTy() 2428 void handleVectorPackIntrinsic(IntrinsicInst &I, unsigned EltSizeInBits = 0) { in handleVectorPackIntrinsic() 2439 Type *T = isX86_MMX ? getMMXVectorTy(EltSizeInBits) : S1->getType(); in handleVectorPackIntrinsic() 2485 unsigned EltSizeInBits = 0) { in handleVectorPmaddIntrinsic() 2487 Type *ResTy = isX86_MMX ? getMMXVectorTy(EltSizeInBits * 2) : I.getType(); in handleVectorPmaddIntrinsic()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 5506 static bool getTargetConstantBitsFromNode(SDValue Op, unsigned EltSizeInBits, in getTargetConstantBitsFromNode() argument 5517 assert((SizeInBits % EltSizeInBits) == 0 && "Can't split constant!"); in getTargetConstantBitsFromNode() 5518 unsigned NumElts = SizeInBits / EltSizeInBits; in getTargetConstantBitsFromNode() 5552 EltBits.resize(NumElts, APInt(EltSizeInBits, 0)); in getTargetConstantBitsFromNode() 5555 unsigned BitOffset = i * EltSizeInBits; in getTargetConstantBitsFromNode() 5556 APInt UndefEltBits = UndefBits.extractBits(EltSizeInBits, BitOffset); in getTargetConstantBitsFromNode() 5571 APInt Bits = MaskBits.extractBits(EltSizeInBits, BitOffset); in getTargetConstantBitsFromNode() 5600 SmallVector<APInt, 64> SrcEltBits(NumElts, APInt(EltSizeInBits, 0)); in getTargetConstantBitsFromNode() 5657 EltSizeInBits <= VT.getScalarSizeInBits()) { in getTargetConstantBitsFromNode() 6092 unsigned EltSizeInBits = VT.getSizeInBits() / Mask.size(); in setTargetShuffleZeroElements() local [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1333 unsigned EltSizeInBits = VT.getScalarSizeInBits(); in SimplifyDemandedVectorElts() local 1435 } else if (EltSizeInBits == SrcOp.getScalarValueSizeInBits() && in SimplifyDemandedVectorElts()
|
D | DAGCombiner.cpp | 5512 unsigned EltSizeInBits = VT.getScalarSizeInBits(); in MatchRotate() local 5520 auto MatchRotateSum = [EltSizeInBits](ConstantSDNode *LHS, in MatchRotate() 5522 return (LHS->getAPIntValue() + RHS->getAPIntValue()) == EltSizeInBits; in MatchRotate() 16699 unsigned EltSizeInBits = VT.getScalarSizeInBits(); in combineShuffleToVectorExtend() local 16724 EVT OutSVT = EVT::getIntegerVT(*DAG.getContext(), EltSizeInBits * Scale); in combineShuffleToVectorExtend() 16761 unsigned EltSizeInBits = VT.getScalarSizeInBits(); in combineTruncationShuffle() local 16786 if (EltSizeInBits != ExtSrcSizeInBits) in combineTruncationShuffle()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 4053 unsigned EltSizeInBits = VT.getScalarSizeInBits(); in MatchRotate() local 4064 if ((LShVal + RShVal) != EltSizeInBits) in MatchRotate() 4072 APInt AllBits = APInt::getAllOnesValue(EltSizeInBits); in MatchRotate() 4076 APInt RHSBits = APInt::getLowBitsSet(EltSizeInBits, LShVal); in MatchRotate() 4082 APInt LHSBits = APInt::getHighBitsSet(EltSizeInBits, RShVal); in MatchRotate()
|