Home
last modified time | relevance | path

Searched refs:HasVector (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DSystemZ.h31 bool HasVector; variable
37 HasTransactionalExecution(false), HasVector(false), SoftFloat(false) { in SystemZTargetInfo()
161 HasVector = false; in handleTargetFeatures()
167 HasVector = true; in handleTargetFeatures()
171 HasVector &= !SoftFloat; in handleTargetFeatures()
174 if (HasVector && !getTriple().isOSzOS()) { in handleTargetFeatures()
198 if (HasVector) in getABI()
H A DSystemZ.cpp137 .Case("vx", HasVector) in hasFeature()
157 if (HasVector) in getTargetDefines()
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp41 HasVector = false; in initializeSubtargetDependencies()
44 if (!HasVector) { in initializeSubtargetDependencies()
79 HasDFPZonedConversion(false), HasEnhancedDAT2(false), HasVector(false), in SystemZSubtarget()
H A DSystemZSubtarget.h53 bool HasVector; variable
214 bool hasVector() const { return HasVector; } in hasVector()
H A DSystemZISelLowering.cpp887 static AddressingMode getLoadStoreAddrMode(bool HasVector, in getLoadStoreAddrMode() argument
892 if (HasVector) in getLoadStoreAddrMode()
903 supportedAddressingMode(Instruction *I, bool HasVector) { in supportedAddressingMode() argument
925 return getLoadStoreAddrMode(HasVector, I->getType()); in supportedAddressingMode()
931 return getLoadStoreAddrMode(HasVector, LoadI->getType()); in supportedAddressingMode()
934 if (HasVector && (isa<LoadInst>(I) || isa<StoreInst>(I))) { in supportedAddressingMode()
/llvm-project-15.0.7/llvm/lib/Support/
H A DRISCVISAInfo.cpp705 bool HasVector = Exts.count("zve32x") != 0; in checkDependency() local
740 if (HasZvl && !HasVector) in checkDependency()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp7385 bool HasVector; member in __anon8ad051810c11::SystemZABIInfo
7390 : SwiftABIInfo(CGT), HasVector(HV), IsSoftFloatABI(SF) {} in SystemZABIInfo()
7422 SystemZTargetCodeGenInfo(CodeGenTypes &CGT, bool HasVector, bool SoftFloatABI) in SystemZTargetCodeGenInfo() argument
7424 std::make_unique<SystemZABIInfo>(CGT, HasVector, SoftFloatABI)) {} in SystemZTargetCodeGenInfo()
7502 return (HasVector && in isVectorArgumentType()
11694 bool HasVector = !SoftFloat && getTarget().getABI() == "vector"; in getTargetCodeGenInfo() local
11695 return SetCGInfo(new SystemZTargetCodeGenInfo(Types, HasVector, SoftFloat)); in getTargetCodeGenInfo()