Searched refs:SIMDLevel (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
H A D | WebAssembly.cpp | 58 .Case("relaxed-simd", SIMDLevel >= RelaxedSIMD) in hasFeature() 60 .Case("simd128", SIMDLevel >= SIMD128) in hasFeature() 97 if (SIMDLevel >= RelaxedSIMD) in getTargetDefines() 101 if (SIMDLevel >= SIMD128) in getTargetDefines() 216 SIMDLevel = std::max(SIMDLevel, SIMD128); in handleTargetFeatures() 265 SIMDLevel = std::max(SIMDLevel, RelaxedSIMD); in handleTargetFeatures() 269 SIMDLevel = std::min(SIMDLevel, SIMDEnum(RelaxedSIMD - 1)); in handleTargetFeatures() 281 SIMDLevel = std::max(SIMDLevel, SIMD128); in handleTargetFeatures() 285 SIMDLevel = std::min(SIMDLevel, SIMDEnum(SIMD128 - 1)); in handleTargetFeatures()
|
H A D | WebAssembly.h | 54 } SIMDLevel = NoSIMD; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblySubtarget.h | 40 } SIMDLevel = NoSIMD; variable 105 bool hasRelaxedSIMD() const { return SIMDLevel >= RelaxedSIMD; } in hasRelaxedSIMD() 107 bool hasSIMD128() const { return SIMDLevel >= SIMD128; } in hasSIMD128()
|
H A D | WebAssembly.td | 67 SubtargetFeature<"relaxed-simd", "SIMDLevel", "RelaxedSIMD", 74 def FeatureSIMD128 : SubtargetFeature<"simd128", "SIMDLevel", "SIMD128",
|