1 //===- ObjCRuntime.cpp - Objective-C Runtime Handling ---------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the ObjCRuntime class, which represents the
10 // target Objective-C runtime.
12 //===----------------------------------------------------------------------===//
14 #include "clang/Basic/ObjCRuntime.h"
15 #include "llvm/ADT/StringRef.h"
16 #include "llvm/Support/VersionTuple.h"
17 #include "llvm/Support/raw_ostream.h"
21 using namespace clang
;
23 std::string
ObjCRuntime::getAsString() const {
26 llvm::raw_string_ostream
Out(Result
);
32 raw_ostream
&clang::operator<<(raw_ostream
&out
, const ObjCRuntime
&value
) {
33 switch (value
.getKind()) {
34 case ObjCRuntime::MacOSX
: out
<< "macosx"; break;
35 case ObjCRuntime::FragileMacOSX
: out
<< "macosx-fragile"; break;
36 case ObjCRuntime::iOS
: out
<< "ios"; break;
37 case ObjCRuntime::WatchOS
: out
<< "watchos"; break;
38 case ObjCRuntime::GNUstep
: out
<< "gnustep"; break;
39 case ObjCRuntime::GCC
: out
<< "gcc"; break;
40 case ObjCRuntime::ObjFW
: out
<< "objfw"; break;
42 if (value
.getVersion() > VersionTuple(0)) {
43 out
<< '-' << value
.getVersion();
48 bool ObjCRuntime::tryParse(StringRef input
) {
49 // Look for the last dash.
50 std::size_t dash
= input
.rfind('-');
52 // We permit dashes in the runtime name, and we also permit the
53 // version to be omitted, so if we see a dash not followed by a
54 // digit then we need to ignore it.
55 if (dash
!= StringRef::npos
&& dash
+ 1 != input
.size() &&
56 (input
[dash
+1] < '0' || input
[dash
+1] > '9')) {
57 dash
= StringRef::npos
;
60 // Everything prior to that must be a valid string name.
62 StringRef runtimeName
= input
.substr(0, dash
);
63 Version
= VersionTuple(0);
64 if (runtimeName
== "macosx") {
65 kind
= ObjCRuntime::MacOSX
;
66 } else if (runtimeName
== "macosx-fragile") {
67 kind
= ObjCRuntime::FragileMacOSX
;
68 } else if (runtimeName
== "ios") {
69 kind
= ObjCRuntime::iOS
;
70 } else if (runtimeName
== "watchos") {
71 kind
= ObjCRuntime::WatchOS
;
72 } else if (runtimeName
== "gnustep") {
73 // If no version is specified then default to the most recent one that we
75 Version
= VersionTuple(1, 6);
76 kind
= ObjCRuntime::GNUstep
;
77 } else if (runtimeName
== "gcc") {
78 kind
= ObjCRuntime::GCC
;
79 } else if (runtimeName
== "objfw") {
80 kind
= ObjCRuntime::ObjFW
;
81 Version
= VersionTuple(0, 8);
87 if (dash
!= StringRef::npos
) {
88 StringRef verString
= input
.substr(dash
+ 1);
89 if (Version
.tryParse(verString
))
93 if (kind
== ObjCRuntime::ObjFW
&& Version
> VersionTuple(0, 8))
94 Version
= VersionTuple(0, 8);