| /openbsd-src/gnu/llvm/clang/lib/Basic/Targets/ |
| H A D | OSTargets.cpp | 75 Str[2] = '0' + std::min(OsVersion.getMinor().value_or(0), 9U); in getDarwinDefines() 80 Str[1] = '0' + (OsVersion.getMinor().value_or(0) / 10); in getDarwinDefines() 81 Str[2] = '0' + (OsVersion.getMinor().value_or(0) % 10); in getDarwinDefines() 89 Str[2] = '0' + (OsVersion.getMinor().value_or(0) / 10); in getDarwinDefines() 90 Str[3] = '0' + (OsVersion.getMinor().value_or(0) % 10); in getDarwinDefines() 104 assert(OsVersion.getMinor().value_or(0) < 100 && in getDarwinDefines()
|
| H A D | AArch64.cpp | 63 if (ArchInfo->Version.getMinor() >= 7u) { in setArchFeatures() 66 if (ArchInfo->Version.getMinor() >= 6u) { in setArchFeatures() 70 if (ArchInfo->Version.getMinor() >= 5u) { in setArchFeatures() 78 if (ArchInfo->Version.getMinor() >= 4u) { in setArchFeatures() 83 if (ArchInfo->Version.getMinor() >= 3u) { in setArchFeatures() 87 if (ArchInfo->Version.getMinor() >= 2u) { in setArchFeatures() 90 if (ArchInfo->Version.getMinor() >= 1u) { in setArchFeatures() 96 if (ArchInfo->Version.getMinor() >= 2u) { in setArchFeatures() 99 if (ArchInfo->Version.getMinor() >= 1u) { in setArchFeatures()
|
| /openbsd-src/gnu/llvm/llvm/lib/TextAPI/ |
| H A D | PackedVersion.cpp | 105 if (getMinor() || getSubminor()) in print() 106 OS << format(".%d", getMinor()); in print()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCDXContainerWriter.cpp | 121 if (Version.getMinor()) in writeObject() 122 Header.MinorVersion = static_cast<uint8_t>(*Version.getMinor()); in writeObject()
|
| H A D | MCStreamer.cpp | 1383 LinkedTargetVersion.getMinor().value_or(0), in emitVersionForTarget() 1389 LinkedTargetVersion.getMinor().value_or(0), in emitVersionForTarget() 1401 TVLinkedTargetVersion.getMinor().value_or(0), in emitVersionForTarget() 1412 LinkedTargetVersion.getMinor().value_or(0), in emitVersionForTarget()
|
| H A D | MachObjectWriter.cpp | 915 unsigned Minor = V.getMinor().value_or(0); in writeObject()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | VersionTuple.h | 76 std::optional<unsigned> getMinor() const { in getMinor() function 203 if (auto Minor = Value.getMinor())
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TextAPI/ |
| H A D | PackedVersion.h | 40 unsigned getMinor() const { return (Version >> 8) & 0xff; } in getMinor() function
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/ |
| H A D | HLSL.cpp | 114 Version.getSubminor() || !Version.getMinor()) { in isLegalValidatorVersion() 121 uint64_t Minor = *Version.getMinor(); in isLegalValidatorVersion()
|
| H A D | Darwin.cpp | 735 (Version.getMajor() == 605 && Version.getMinor().value_or(0) < 1); in ConstructJob() 1962 << OsVersion.getMajor() << '.' << OsVersion.getMinor().value_or(0) << '.' in getOSVersion() 3099 if (!SDKVersion.getMinor()) in addPlatformVersionArgs()
|
| H A D | MSVC.cpp | 774 MSVT = VersionTuple(MSVT.getMajor(), MSVT.getMinor().value_or(0), in ComputeEffectiveClangTriple()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | VersionTuple.cpp | 32 if (std::optional<unsigned> Minor = V.getMinor()) in operator <<()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/ |
| H A D | DXILMetadata.cpp | 33 ConstantAsMetadata::get(B.getInt32(ValidatorVer.getMinor().value_or(0))); in update() 80 Vals[2] = ConstantAsMetadata::get(B.getInt32(Ver.getMinor().value_or(0))); in createShaderModelMD()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwinDevice.cpp | 188 m_sdk_directory_infos[i].version.getMinor() == in GetSDKDirectoryForCurrentOSVersion() 189 version.getMinor()) { in GetSDKDirectoryForCurrentOSVersion()
|
| H A D | PlatformMacOSX.cpp | 121 *version.getMinor()); in GetSDKDirectory()
|
| H A D | PlatformDarwin.cpp | 828 version.getMinor().value_or(0)); in GetSDKDirectoryForModules()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | DarwinSDKInfo.cpp | 31 if (Key.getMinor()) in map()
|
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | Config.h | 47 (version.getMinor().value_or(0) << 010) | in encodeVersion()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGHLSLRuntime.cpp | 37 Version.getSubminor() || !Version.getMinor()) { in addDxilValVersion() 42 uint64_t Minor = *Version.getMinor(); in addDxilValVersion()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBModule.cpp | 611 if (version.getMinor()) in GetVersion() 622 versions[1] = version.getMinor().value_or(UINT32_MAX); in GetVersion()
|
| H A D | SBPlatform.cpp | 476 return version.getMinor().value_or(UINT32_MAX); in GetOSMinorVersion()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TargetParser/ |
| H A D | AArch64TargetParser.h | 293 return this->Version.getMinor().value() + 5 >= in implies() 294 Other.Version.getMinor().value(); in implies()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 414 unsigned Minor = Version.getMinor().value_or(0); in InitializeStandardPredefinedMacros() 839 "1" + Twine(std::min(8U, version.getMinor().value_or(0)))); in InitializePredefinedMacros() 844 unsigned minor = tuple.getMinor().value_or(0); in InitializePredefinedMacros()
|
| /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 75 Version["minor"] = V.getMinor().value_or(0); in serializeSemanticVersion()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Module.cpp | 756 if (auto Minor = V.getMinor()) { in addSDKVersionMD()
|