| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | LowLevelType.h | 66 return LLT{ScalarTy.isPointer(), in vector() 71 ScalarTy.isPointer() ? ScalarTy.getAddressSpace() : 0}; in vector() 126 explicit constexpr LLT(bool isPointer, bool isVector, bool isScalar, in LLT() argument 130 init(isPointer, isVector, isScalar, EC, SizeInBits, AddressSpace); in LLT() 141 constexpr bool isPointer() const { in isPointer() function 184 if (isPointer() || isScalar()) in getSizeInBits() 212 assert(!getScalarType().isPointer() && in changeElementSize()
|
| H A D | TargetCallingConv.h | 141 bool isPointer() const { return IsPointer; } in isPointer() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalityPredicates.cpp | 79 LegalityPredicate LegalityPredicates::isPointer(unsigned TypeIdx) { in isPointer() function in LegalityPredicates 81 return Query.Types[TypeIdx].isPointer(); in isPointer() 85 LegalityPredicate LegalityPredicates::isPointer(unsigned TypeIdx, in isPointer() function in LegalityPredicates 89 return Ty.isPointer() && Ty.getAddressSpace() == AddrSpace; in isPointer()
|
| H A D | MachineIRBuilder.cpp | 297 assert(getMRI()->getType(TablePtr).isPointer() && in buildBrJT() 351 assert(!Ty.isPointer() && "invalid operand type"); in buildFConstant() 582 if (SrcTy.isPointer() && DstTy.isScalar()) in buildCast() 584 else if (DstTy.isPointer() && SrcTy.isScalar()) in buildCast() 587 assert(!SrcTy.isPointer() && !DstTy.isPointer() && "n G_ADDRCAST yet"); in buildCast() 891 assert(AddrTy.isPointer() && "invalid operand type"); in buildAtomicCmpXchgWithSuccess() 917 assert(AddrTy.isPointer() && "invalid operand type"); in buildAtomicCmpXchg() 942 assert(AddrTy.isPointer() && "invalid operand type"); in buildAtomicRMW() 1106 if (ResTy.isScalar() || ResTy.isPointer()) in validateSelectOp() 1223 if (Op0Ty.isScalar() || Op0Ty.isPointer()) in buildInstr() [all …]
|
| H A D | LegacyLegalizerInfo.cpp | 125 if (Type.isPointer()) in computeTables() 204 if (Aspect.Type.isScalar() || Aspect.Type.isPointer()) in getAspectAction() 304 assert(Aspect.Type.isScalar() || Aspect.Type.isPointer()); in findScalarLegalAction() 308 if (Aspect.Type.isPointer() && in findScalarLegalAction() 314 Aspect.Type.isPointer() in findScalarLegalAction()
|
| H A D | CallLowering.cpp | 382 if (OrigTy.isPointer()) { in buildCopyFromRegs() 454 if (RealDstEltTy.isPointer()) { in buildCopyFromRegs() 1139 if (Flags.isPointer()) { in getStackValueStoreType() 1193 if (ValRegTy.isPointer()) { in extendRegister() 1264 return (SrcTy.isPointer() && DstTy.isScalar()) || in isCopyCompatibleType() 1265 (DstTy.isPointer() && SrcTy.isScalar()); in isCopyCompatibleType()
|
| H A D | LegalizerHelper.cpp | 633 if (OpLLT.isPointer()) in createMemLibcall() 1703 if (Ty.isPointer()) { in coerceToScalar() 1713 if (EltTy.isPointer()) in coerceToScalar() 1919 if (SrcTy.isPointer()) { in widenScalarUnmergeValues() 1960 if (SrcTy.isPointer()) { in widenScalarUnmergeValues() 2041 if (SrcTy.isPointer()) { in widenScalarExtract() 2053 if (DstTy.isPointer()) in widenScalarExtract() 3505 if (SrcTy.isPointer()) { in lowerStore() 7074 if (DstTy.isPointer()) { in lowerMergeValues() 7094 if (DstTy.isPointer()) in lowerUnmergeValues() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsRegisterBankInfo.cpp | 181 assert(!MRI.getType(Reg).isPointer() && in addDefUses() 196 assert(!MRI.getType(Reg).isPointer() && in addUseDef() 505 if (!Op0Ty.isPointer()) in getInstrMapping() 525 if (!Op0Ty.isPointer()) in getInstrMapping() 545 if (!Op0Ty.isPointer()) in getInstrMapping() 566 if (!Op0Ty.isPointer()) in getInstrMapping() 712 assert(MRI.getType(Dest).isPointer() && "Unexpected operand type."); in setRegBank()
|
| H A D | MipsInstructionSelector.cpp | 126 assert((Ty.isScalar() || Ty.isPointer()) && TySize == 32 && in getRegClassForTypeOnBank() 193 (Ty.isPointer() && TySize == 32 && MemSizeInBytes == 4)) && in selectLoadStoreOpCode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 1180 if (!PtrTy.isPointer()) in verifyPreISelGenericInstruction() 1239 if (SrcTy.isPointer() != DstTy.isPointer()) in verifyPreISelGenericInstruction() 1264 if (!DstTy.isPointer()) in verifyPreISelGenericInstruction() 1266 if (SrcTy.isPointer()) in verifyPreISelGenericInstruction() 1269 if (!SrcTy.isPointer()) in verifyPreISelGenericInstruction() 1271 if (DstTy.isPointer()) in verifyPreISelGenericInstruction() 1275 if (!SrcTy.isPointer() || !DstTy.isPointer()) in verifyPreISelGenericInstruction() 1336 if (DstElTy.isPointer() || SrcElTy.isPointer()) in verifyPreISelGenericInstruction() 1546 if (!DstTy.isPointer()) in verifyPreISelGenericInstruction() 1680 if (!DstPtrTy.isPointer() || !SrcPtrTy.isPointer()) { in verifyPreISelGenericInstruction() [all …]
|
| H A D | LowLevelType.cpp | 41 } else if (isPointer()) in print()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVLegalizerInfo.cpp | 308 MRI.getType(Reg0).isPointer() && MRI.getType(Reg1).isPointer()) { in legalizeCustom()
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | GlobalISelMatchTable.cpp | 361 if (Ty.isPointer()) { in emitCxxEnumValue() 383 if (Ty.isPointer() && Ty.getSizeInBits() > 0) { in emitCxxConstructorCall() 404 if (Ty.isPointer() != Other.Ty.isPointer()) in operator <() 405 return Ty.isPointer() < Other.Ty.isPointer(); in operator <() 407 if (Ty.isPointer() && Ty.getAddressSpace() != Other.Ty.getAddressSpace()) in operator <() 1376 else if (VTy.isPointer()) in addTypeCheckPredicate()
|
| H A D | InfoByHwMode.h | 176 bool isPointer() const { in isPointer() function
|
| H A D | CodeGenDAGPatterns.h | 228 bool isPointer() const { in isPointer() function 229 return getValueTypeByHwMode().isPointer(); in isPointer() 233 assert(isPointer()); in getPtrAddrSpace()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 185 bool isPointer() const { return Pointer; } in isPointer() function in __anon6f3616850111::Type 186 bool isValue() const { return !isVoid() && !isPointer(); } in isValue() 402 if (Type.isImmediate() || Type.isPointer() || in Intrinsic() 648 if (isPointer()) { in builtin_str() 676 if (isChar() && !isPointer() && isSigned()) in builtin_str() 1275 if (getParamType(I).isPointer()) in emitShadowedArgs() 2105 if (Type.isPointer()) { in genOverloadTypeCheckCode()
|
| H A D | SveEmitter.cpp | 93 bool isPointer() const { return Pointer; } in isPointer() function in __anonc999c1430111::SVEType 453 if ((isChar() || isPointer()) && !isVoidPointer()) { in builtin_str()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetCallingConv.td | 103 : CCIf<"(ArgFlags.isPointer() && ArgFlags.getPointerAddrSpace() == " # AS # ")", A> {} 107 class CCIfPtr<CCAction A> : CCIf<"ArgFlags.isPointer()", A> {}
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 286 LegalityPredicate isPointer(unsigned TypeIdx); 289 LegalityPredicate isPointer(unsigned TypeIdx, unsigned AddrSpace); 1087 if (T.isVector() && T.getElementType().isPointer()) in minScalarEltSameAsIf()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/GISel/ |
| H A D | X86RegisterBankInfo.cpp | 67 if ((Ty.isScalar() && !isFP) || Ty.isPointer()) { in getPartialMappingIdx()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 317 bool isPointer() const { return IsPointer; } in isPointer() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64LegalizerInfo.cpp | 345 return EltTy.isPointer() && EltTy.getAddressSpace() == 0; in AArch64LegalizerInfo() 520 return Ty.isVector() && !SrcTy.getElementType().isPointer() && in AArch64LegalizerInfo() 567 return Ty.isVector() && !SrcTy.getElementType().isPointer() && in AArch64LegalizerInfo() 1655 if (!ValTy.isVector() || !ValTy.getElementType().isPointer() || in legalizeLoadStore()
|
| H A D | AArch64CallLowering.cpp | 155 if (Flags.isPointer()) in getStackValueStoreType() 281 if (Flags.isPointer()) in getStackValueStoreType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaRISCVVectorLookup.cpp | 147 if (Type->isPointer()) in RVVType2Qual()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.cpp | 393 if (Ty.isPointer() && Ty.getAddressSpace() == AMDGPUAS::BUFFER_RESOURCE) in hasBufferRsrcWorkaround() 420 if (EltTy.isPointer()) in loadStoreBitcastWorkaround() 677 .legalIf(isPointer(0)) in AMDGPULegalizerInfo() 847 .legalIf(isPointer(0)) in AMDGPULegalizerInfo() 1129 .legalIf(all(isPointer(0), sameSize(0, 1))) in AMDGPULegalizerInfo() 1162 .legalIf(all(typeInSet(0, {S1, S32}), isPointer(1))); in AMDGPULegalizerInfo() 1642 .legalIf(all(isPointer(0), typeInSet(1, {S1, S32}))); in AMDGPULegalizerInfo() 1708 if (EltTy.isPointer() && EltSize > 64) in AMDGPULegalizerInfo() 2624 if (EltTy.isPointer() && EltTy.getSizeInBits() > 64) { in legalizeExtractVectorElt() 2677 if (EltTy.isPointer() && EltTy.getSizeInBits() > 64) { in legalizeInsertVectorElt() [all …]
|