Searched refs:HasVector (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | SystemZ.h | 30 bool HasVector; variable 36 HasTransactionalExecution(false), HasVector(false), SoftFloat(false) { in SystemZTargetInfo() 164 HasVector = false; in handleTargetFeatures() 170 HasVector = true; in handleTargetFeatures() 174 HasVector &= !SoftFloat; in handleTargetFeatures() 181 if (HasVector && !getTriple().isOSzOS()) in handleTargetFeatures() 203 if (HasVector) in getABI()
|
| H A D | SystemZ.cpp | 137 .Case("vx", HasVector) in hasFeature() 157 if (HasVector) in getTargetDefines()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SystemZ.cpp | 24 bool HasVector; member in __anona6f57c3c0111::SystemZABIInfo 29 : ABIInfo(CGT), HasVector(HV), IsSoftFloatABI(SF) {} in SystemZABIInfo() 60 SystemZTargetCodeGenInfo(CodeGenTypes &CGT, bool HasVector, bool SoftFloatABI) in SystemZTargetCodeGenInfo() argument 62 std::make_unique<SystemZABIInfo>(CGT, HasVector, SoftFloatABI)), in SystemZTargetCodeGenInfo() 177 return (HasVector && in isVectorArgumentType() 534 CodeGen::createSystemZTargetCodeGenInfo(CodeGenModule &CGM, bool HasVector, in createSystemZTargetCodeGenInfo() argument 536 return std::make_unique<SystemZTargetCodeGenInfo>(CGM.getTypes(), HasVector, in createSystemZTargetCodeGenInfo()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSubtarget.cpp | 42 HasVector = false; in initializeSubtargetDependencies() 45 if (!HasVector) { in initializeSubtargetDependencies()
|
| H A D | SystemZISelLowering.cpp | 976 static AddressingMode getLoadStoreAddrMode(bool HasVector, in getLoadStoreAddrMode() argument 981 if (HasVector) in getLoadStoreAddrMode() 992 supportedAddressingMode(Instruction *I, bool HasVector) { in supportedAddressingMode() argument 1014 return getLoadStoreAddrMode(HasVector, I->getType()); in supportedAddressingMode() 1020 return getLoadStoreAddrMode(HasVector, LoadI->getType()); in supportedAddressingMode() 1023 if (HasVector && (isa<LoadInst>(I) || isa<StoreInst>(I))) { in supportedAddressingMode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | RISCVISAInfo.cpp | 951 bool HasVector = Exts.count("zve32x") != 0; in checkDependency() local 959 if (HasZvl && !HasVector) in checkDependency() 964 if (Exts.count("zvbb") && !HasVector) in checkDependency() 976 !HasVector) in checkDependency()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | TargetInfo.h | 515 createSystemZTargetCodeGenInfo(CodeGenModule &CGM, bool HasVector,
|
| H A D | CodeGenModule.cpp | 239 bool HasVector = !SoftFloat && Target.getABI() == "vector"; in createTargetCodeGenInfo() local 240 return createSystemZTargetCodeGenInfo(CGM, HasVector, SoftFloat); in createTargetCodeGenInfo()
|