HomeSort by: relevance | last modified time | path
    Searched defs:VT1 (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURewriteOutArguments.cpp 193 auto *VT1 = dyn_cast<FixedVectorType>(Ty1);
194 if (!VT0 || !VT1)
198 VT1->getNumElements() != 4)
202 DL->getTypeSizeInBits(VT1->getElementType());
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h 1454 EVT VT1;
1457 (void)getVectorTypeBreakdown(Context, VT, VT1,
1482 EVT VT1;
1485 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
2728 /// Return true if it's profitable to narrow operations of type VT1 to
2731 virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 4307 EVT VT1 = getSetCCResultType(getSETCCOperandType(SETCC1));
4309 unsigned ScalarBits1 = VT1.getScalarSizeInBits();
4316 EVT NarrowVT = ((ScalarBits0 < ScalarBits1) ? VT0 : VT1);
4317 EVT WideVT = ((NarrowVT == VT0) ? VT1 : VT0);
4330 SETCC1 = convertMask(SETCC1, VT1, MaskVT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 10980 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
10981 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
10983 uint64_t NumBits1 = VT1.getFixedSizeInBits();
11025 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
11026 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
11028 unsigned NumBits1 = VT1.getSizeInBits();
11034 EVT VT1 = Val.getValueType();
11035 if (isZExtFree(VT1, VT2))
    [all...]

Completed in 62 milliseconds