forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswift-remoteast-test.cpp
227 lines (194 loc) · 7.15 KB
/
swift-remoteast-test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
//===--- swift-remoteast-test.cpp - RemoteAST testing application ---------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
// This file supports performing target-specific remote reflection tests
// on live swift executables.
//===----------------------------------------------------------------------===//
#include "swift/RemoteAST/RemoteAST.h"
#include "swift/Remote/InProcessMemoryReader.h"
#include "swift/Remote/MetadataReader.h"
#include "swift/Runtime/Metadata.h"
#include "swift/Frontend/Frontend.h"
#include "swift/FrontendTool/FrontendTool.h"
#include "swift/Basic/LLVM.h"
#include "swift/Basic/LLVMInitialize.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#if defined(__ELF__)
#define SWIFT_REMOTEAST_TEST_ABI __attribute__((__visibility__("default")))
#elif defined(__MACH__)
#define SWIFT_REMOTEAST_TEST_ABI __attribute__((__visibility__("default")))
#else
#define SWIFT_REMOTEAST_TEST_ABI __declspec(dllexport)
#endif
using namespace swift;
using namespace swift::remote;
using namespace swift::remoteAST;
#if defined(__APPLE__) && defined(__MACH__)
#include <dlfcn.h>
static unsigned long long computeClassIsSwiftMask(void) {
uintptr_t *objc_debug_swift_stable_abi_bit_ptr =
(uintptr_t *)dlsym(RTLD_DEFAULT, "objc_debug_swift_stable_abi_bit");
return objc_debug_swift_stable_abi_bit_ptr ?
*objc_debug_swift_stable_abi_bit_ptr : 1;
}
#else
static unsigned long long computeClassIsSwiftMask(void) {
return 1;
}
#endif
extern "C" unsigned long long _swift_classIsSwiftMask =
computeClassIsSwiftMask();
/// The context for the code we're running. Set by the observer.
static ASTContext *context = nullptr;
/// The RemoteAST for the code we're running.
std::unique_ptr<RemoteASTContext> remoteContext;
static RemoteASTContext &getRemoteASTContext() {
if (remoteContext)
return *remoteContext;
std::shared_ptr<MemoryReader> reader(new InProcessMemoryReader());
remoteContext.reset(new RemoteASTContext(*context, std::move(reader)));
return *remoteContext;
}
// FIXME: swiftcall
/// func printType(forMetadata: Any.Type)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
printMetadataType(const Metadata *typeMetadata) {
auto &remoteAST = getRemoteASTContext();
auto &out = llvm::outs();
auto result =
remoteAST.getTypeForRemoteTypeMetadata(RemoteAddress(typeMetadata));
if (result) {
out << "found type: ";
result.getValue().print(out);
out << '\n';
} else {
out << result.getFailure().render() << '\n';
}
}
// FIXME: swiftcall
/// func printDynamicType(_: AnyObject)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
printHeapMetadataType(void *object) {
auto &remoteAST = getRemoteASTContext();
auto &out = llvm::outs();
auto metadataResult =
remoteAST.getHeapMetadataForObject(RemoteAddress(object));
if (!metadataResult) {
out << metadataResult.getFailure().render() << '\n';
return;
}
auto metadata = metadataResult.getValue();
auto result =
remoteAST.getTypeForRemoteTypeMetadata(metadata, /*skipArtificial*/ true);
if (result) {
out << "found type: ";
result.getValue().print(out);
out << '\n';
} else {
out << result.getFailure().render() << '\n';
}
}
static void printMemberOffset(const Metadata *typeMetadata,
StringRef memberName, bool passMetadata) {
auto &remoteAST = getRemoteASTContext();
auto &out = llvm::outs();
// The first thing we have to do is get the type.
auto typeResult =
remoteAST.getTypeForRemoteTypeMetadata(RemoteAddress(typeMetadata));
if (!typeResult) {
out << "failed to find type: " << typeResult.getFailure().render() << '\n';
return;
}
Type type = typeResult.getValue();
RemoteAddress address =
(passMetadata ? RemoteAddress(typeMetadata) : RemoteAddress(nullptr));
auto offsetResult =
remoteAST.getOffsetOfMember(type, address, memberName);
if (!offsetResult) {
out << "failed to find offset: "
<< offsetResult.getFailure().render() << '\n';
return;
}
out << "found offset: " << offsetResult.getValue() << '\n';
}
// FIXME: swiftcall
/// func printTypeMemberOffset(forType: Any.Type, memberName: StaticString)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
printTypeMemberOffset(const Metadata *typeMetadata,
const char *memberName) {
printMemberOffset(typeMetadata, memberName, /*pass metadata*/ false);
}
// FIXME: swiftcall
/// func printTypeMetadataMemberOffset(forType: Any.Type,
/// memberName: StaticString)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
printTypeMetadataMemberOffset(const Metadata *typeMetadata,
const char *memberName) {
printMemberOffset(typeMetadata, memberName, /*pass metadata*/ true);
}
// FIXME: swiftcall
/// func printDynamicTypeAndAddressForExistential<T>(_: T)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
printDynamicTypeAndAddressForExistential(void *object,
const Metadata *typeMetadata) {
auto &remoteAST = getRemoteASTContext();
auto &out = llvm::outs();
// First, retrieve the static type of the existential, so we can understand
// which kind of existential this is.
auto staticTypeResult =
remoteAST.getTypeForRemoteTypeMetadata(RemoteAddress(typeMetadata));
if (!staticTypeResult) {
out << "failed to resolve static type: "
<< staticTypeResult.getFailure().render() << '\n';
return;
}
// OK, we can reconstruct the dynamic type and the address now.
auto result = remoteAST.getDynamicTypeAndAddressForExistential(
RemoteAddress(object), staticTypeResult.getValue());
if (result) {
out << "found type: ";
result.getValue().InstanceType.print(out);
out << "\n";
} else {
out << result.getFailure().render() << '\n';
}
}
// FIXME: swiftcall
/// func stopRemoteAST(_: AnyObject)
LLVM_ATTRIBUTE_USED extern "C" void SWIFT_REMOTEAST_TEST_ABI
stopRemoteAST() {
if (remoteContext)
remoteContext.reset();
}
namespace {
struct Observer : public FrontendObserver {
void configuredCompiler(CompilerInstance &instance) override {
context = &instance.getASTContext();
}
};
} // end anonymous namespace
int main(int argc, const char *argv[]) {
PROGRAM_START(argc, argv);
unsigned numForwardedArgs = argc
- 1 // we drop argv[0]
+ 1; // -interpret
SmallVector<const char *, 8> forwardedArgs;
forwardedArgs.reserve(numForwardedArgs);
forwardedArgs.append(&argv[1], &argv[argc]);
forwardedArgs.push_back("-interpret");
assert(forwardedArgs.size() == numForwardedArgs);
Observer observer;
return performFrontend(forwardedArgs, argv[0], (void*) &printMetadataType,
&observer);
}