/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64StackOffset.h | 49 assert(MVT(T).isByteSized() && "Offset type is not a multiple of bytes"); in StackOffset()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ValueTypes.h | 212 bool isByteSized() const { in isByteSized() function 213 return getSizeInBits().isByteSized(); in isByteSized()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | TypeSize.h | 142 bool isByteSized() const { in isByteSized() function
|
D | LowLevelTypeImpl.h | 140 bool isByteSized() const { return (getSizeInBits() & 7) == 0; } in isByteSized() function
|
D | MachineValueType.h | 858 bool isByteSized() const { in isByteSized() function 859 return getSizeInBits().isByteSized(); in isByteSized()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 153 assert(NOutVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_BITCAST() 257 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_NormalLoad() 468 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandOp_NormalStore()
|
D | LegalizeFloatTypes.cpp | 1536 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatRes_LOAD() 1869 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatOp_STORE()
|
D | LegalizeVectorOps.cpp | 714 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { in ExpandLoad()
|
D | LegalizeIntegerTypes.cpp | 439 unsigned Opc = VT.isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in PromoteIntRes_Constant() 2814 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntRes_LOAD() 4086 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntOp_STORE()
|
D | LegalizeVectorTypes.cpp | 2450 if (!LoMemVT.isByteSized() || !HiMemVT.isByteSized()) in SplitVecOp_STORE() 4498 if (!ST->getMemoryVT().getScalarType().isByteSized()) in WidenVecOp_STORE()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 161 assert(NOutVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_BITCAST() 271 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_NormalLoad() 485 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandOp_NormalStore()
|
D | LegalizeVectorOps.cpp | 504 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) { in ExpandLoad()
|
D | LegalizeFloatTypes.cpp | 1386 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatRes_LOAD() 1707 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatOp_STORE()
|
D | LegalizeIntegerTypes.cpp | 353 unsigned Opc = VT.isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in PromoteIntRes_Constant() 2061 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntRes_LOAD() 3053 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntOp_STORE()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 155 assert(NOutVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_BITCAST() 262 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandRes_NormalLoad() 472 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandOp_NormalStore()
|
D | LegalizeVectorTypes.cpp | 1624 if (!LoMemVT.isByteSized() || !HiMemVT.isByteSized()) { in SplitVecRes_LOAD() 2609 if (!LoMemVT.isByteSized() || !HiMemVT.isByteSized()) in SplitVecOp_STORE() 3851 if (!LD->getMemoryVT().isByteSized()) { in WidenVecRes_LOAD() 4659 if (!ST->getMemoryVT().getScalarType().isByteSized()) in WidenVecOp_STORE()
|
D | LegalizeFloatTypes.cpp | 1600 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatRes_LOAD() 1975 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandFloatOp_STORE()
|
D | LegalizeIntegerTypes.cpp | 488 unsigned Opc = VT.isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in PromoteIntRes_Constant() 3140 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntRes_LOAD() 4466 assert(NVT.isByteSized() && "Expanded type not byte sized!"); in ExpandIntOp_STORE()
|
D | TargetLowering.cpp | 6898 if (!SrcEltVT.isByteSized()) { in scalarizeVectorLoad() 6941 assert(SrcEltVT.isByteSized()); in scalarizeVectorLoad() 6992 if (!MemSclVT.isByteSized()) { in scalarizeVectorStore()
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | LowLevelTypeImpl.h | 161 bool isByteSized() const { return (getSizeInBits() & 7) == 0; } in isByteSized() function
|
D | MachineValueType.h | 1017 bool isByteSized() const { return getSizeInBits().isKnownMultipleOf(8); } in isByteSized() function
|
/external/llvm/include/llvm/CodeGen/ |
D | ValueTypes.h | 183 bool isByteSized() const { in isByteSized() function
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | ValueTypes.h | 207 bool isByteSized() const { return getSizeInBits().isKnownMultipleOf(8); } in isByteSized() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerInfo.cpp | 691 return SmallTy.isByteSized() ? TargetOpcode::G_SEXT : TargetOpcode::G_ZEXT; in getExtOpcodeForWideningConstant()
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerInfo.cpp | 687 return SmallTy.isByteSized() ? TargetOpcode::G_SEXT : TargetOpcode::G_ZEXT; in getExtOpcodeForWideningConstant()
|