Searched refs:HasVector (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | SystemZ.h | 57 bool HasVector; variable 65 HasTransactionalExecution(false), HasVector(false), SoftFloat(false), in SystemZTargetInfo() 216 HasVector = false; in handleTargetFeatures() 223 HasVector = true; in handleTargetFeatures() 229 HasVector &= !SoftFloat; in handleTargetFeatures() 236 if (HasVector && !getTriple().isOSzOS()) in handleTargetFeatures() 258 if (HasVector) in getABI()
|
| H A D | SystemZ.cpp | 148 .Case("vx", HasVector) in hasFeature() 178 if (HasVector) in getTargetDefines()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SystemZ.cpp | 24 bool HasVector; member in __anona9fb9b860111::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() 178 return (HasVector && in isVectorArgumentType() 552 CodeGen::createSystemZTargetCodeGenInfo(CodeGenModule &CGM, bool HasVector, in createSystemZTargetCodeGenInfo() argument 554 return std::make_unique<SystemZTargetCodeGenInfo>(CGM.getTypes(), HasVector, in createSystemZTargetCodeGenInfo()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSubtarget.cpp | 41 HasVector = false; in initializeSubtargetDependencies() 44 if (!HasVector) { in initializeSubtargetDependencies()
|
| H A D | SystemZISelLowering.cpp | 1314 static AddressingMode getLoadStoreAddrMode(bool HasVector, in getLoadStoreAddrMode() argument 1319 if (HasVector) in getLoadStoreAddrMode() 1330 supportedAddressingMode(Instruction *I, bool HasVector) { in supportedAddressingMode() argument 1352 return getLoadStoreAddrMode(HasVector, I->getType()); in supportedAddressingMode() 1358 return getLoadStoreAddrMode(HasVector, LoadI->getType()); in supportedAddressingMode() 1361 if (HasVector && (isa<LoadInst>(I) || isa<StoreInst>(I))) { in supportedAddressingMode()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | RISCVISAInfo.cpp | 751 bool HasVector = Exts.count("zve32x") != 0; in checkDependency() local 770 if (HasZvl && !HasVector) in checkDependency()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | TargetInfo.h | 586 createSystemZTargetCodeGenInfo(CodeGenModule &CGM, bool HasVector,
|
| H A D | CodeGenModule.cpp | 241 bool HasVector = !SoftFloat && Target.getABI() == "vector"; in createTargetCodeGenInfo() local 242 return createSystemZTargetCodeGenInfo(CGM, HasVector, SoftFloat); in createTargetCodeGenInfo()
|