blob: 8fa0afbe03f2f8e52e0b35f601596cd666b26834 [file] [log] [blame]
Eugene Zelenko5a520112018-03-28 22:09:09 +00001//===- ObjCRuntime.cpp - Objective-C Runtime Handling ---------------------===//
John McCall5fb5df92012-06-20 06:18:46 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ObjCRuntime class, which represents the
11// target Objective-C runtime.
12//
13//===----------------------------------------------------------------------===//
Eugene Zelenko5a520112018-03-28 22:09:09 +000014
John McCall5fb5df92012-06-20 06:18:46 +000015#include "clang/Basic/ObjCRuntime.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000016#include "llvm/ADT/StringRef.h"
Pavel Labathd8c62902018-06-11 10:28:04 +000017#include "llvm/Support/VersionTuple.h"
John McCall5fb5df92012-06-20 06:18:46 +000018#include "llvm/Support/raw_ostream.h"
Eugene Zelenko5a520112018-03-28 22:09:09 +000019#include <cstddef>
20#include <string>
John McCall5fb5df92012-06-20 06:18:46 +000021
22using namespace clang;
23
24std::string ObjCRuntime::getAsString() const {
25 std::string Result;
26 {
27 llvm::raw_string_ostream Out(Result);
28 Out << *this;
29 }
30 return Result;
31}
32
33raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) {
34 switch (value.getKind()) {
35 case ObjCRuntime::MacOSX: out << "macosx"; break;
36 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break;
37 case ObjCRuntime::iOS: out << "ios"; break;
Tim Northover756447a2015-10-30 16:30:36 +000038 case ObjCRuntime::WatchOS: out << "watchos"; break;
David Chisnallb601c962012-07-03 20:49:52 +000039 case ObjCRuntime::GNUstep: out << "gnustep"; break;
40 case ObjCRuntime::GCC: out << "gcc"; break;
John McCall775086e2012-07-12 02:07:58 +000041 case ObjCRuntime::ObjFW: out << "objfw"; break;
John McCall5fb5df92012-06-20 06:18:46 +000042 }
43 if (value.getVersion() > VersionTuple(0)) {
44 out << '-' << value.getVersion();
45 }
46 return out;
47}
48
49bool ObjCRuntime::tryParse(StringRef input) {
50 // Look for the last dash.
51 std::size_t dash = input.rfind('-');
52
John McCall18ac1632012-06-20 21:58:02 +000053 // We permit dashes in the runtime name, and we also permit the
54 // version to be omitted, so if we see a dash not followed by a
55 // digit then we need to ignore it.
John McCall5fb5df92012-06-20 06:18:46 +000056 if (dash != StringRef::npos && dash + 1 != input.size() &&
57 (input[dash+1] < '0' || input[dash+1] > '9')) {
58 dash = StringRef::npos;
59 }
60
61 // Everything prior to that must be a valid string name.
62 Kind kind;
63 StringRef runtimeName = input.substr(0, dash);
David Chisnall314896c2012-07-04 10:37:03 +000064 Version = VersionTuple(0);
John McCall5fb5df92012-06-20 06:18:46 +000065 if (runtimeName == "macosx") {
66 kind = ObjCRuntime::MacOSX;
67 } else if (runtimeName == "macosx-fragile") {
68 kind = ObjCRuntime::FragileMacOSX;
69 } else if (runtimeName == "ios") {
70 kind = ObjCRuntime::iOS;
Tim Northover756447a2015-10-30 16:30:36 +000071 } else if (runtimeName == "watchos") {
72 kind = ObjCRuntime::WatchOS;
David Chisnallb601c962012-07-03 20:49:52 +000073 } else if (runtimeName == "gnustep") {
David Chisnall314896c2012-07-04 10:37:03 +000074 // If no version is specified then default to the most recent one that we
75 // know about.
76 Version = VersionTuple(1, 6);
David Chisnallb601c962012-07-03 20:49:52 +000077 kind = ObjCRuntime::GNUstep;
78 } else if (runtimeName == "gcc") {
79 kind = ObjCRuntime::GCC;
John McCall775086e2012-07-12 02:07:58 +000080 } else if (runtimeName == "objfw") {
81 kind = ObjCRuntime::ObjFW;
Benjamin Kramer4d6efbb2013-09-16 16:31:49 +000082 Version = VersionTuple(0, 8);
John McCall5fb5df92012-06-20 06:18:46 +000083 } else {
84 return true;
85 }
86 TheKind = kind;
Benjamin Kramer4d6efbb2013-09-16 16:31:49 +000087
John McCall5fb5df92012-06-20 06:18:46 +000088 if (dash != StringRef::npos) {
89 StringRef verString = input.substr(dash + 1);
Benjamin Kramer4d6efbb2013-09-16 16:31:49 +000090 if (Version.tryParse(verString))
John McCall5fb5df92012-06-20 06:18:46 +000091 return true;
92 }
93
Benjamin Kramer4d6efbb2013-09-16 16:31:49 +000094 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8))
95 Version = VersionTuple(0, 8);
96
John McCall5fb5df92012-06-20 06:18:46 +000097 return false;
98}