|
33 | 33 | #include "llvm/Transforms/Instrumentation/AddressSanitizer.h"
|
34 | 34 | #include "llvm/Support/TimeProfiler.h"
|
35 | 35 | #endif
|
36 |
| -#if LLVM_VERSION_GE(8, 0) |
37 | 36 | #include "llvm/Transforms/Instrumentation/ThreadSanitizer.h"
|
38 | 37 | #include "llvm/Transforms/Instrumentation/MemorySanitizer.h"
|
39 |
| -#endif |
40 | 38 | #if LLVM_VERSION_GE(9, 0)
|
41 | 39 | #include "llvm/Transforms/Utils/CanonicalizeAliases.h"
|
42 | 40 | #endif
|
@@ -138,19 +136,13 @@ extern "C" LLVMPassRef LLVMRustCreateMemorySanitizerPass(int TrackOrigins, bool
|
138 | 136 |
|
139 | 137 | return wrap(createMemorySanitizerLegacyPassPass(
|
140 | 138 | MemorySanitizerOptions{TrackOrigins, Recover, CompileKernel}));
|
141 |
| -#elif LLVM_VERSION_GE(8, 0) |
142 |
| - return wrap(createMemorySanitizerLegacyPassPass(TrackOrigins, Recover)); |
143 | 139 | #else
|
144 |
| - return wrap(createMemorySanitizerPass(TrackOrigins, Recover)); |
| 140 | + return wrap(createMemorySanitizerLegacyPassPass(TrackOrigins, Recover)); |
145 | 141 | #endif
|
146 | 142 | }
|
147 | 143 |
|
148 | 144 | extern "C" LLVMPassRef LLVMRustCreateThreadSanitizerPass() {
|
149 |
| -#if LLVM_VERSION_GE(8, 0) |
150 | 145 | return wrap(createThreadSanitizerLegacyPassPass());
|
151 |
| -#else |
152 |
| - return wrap(createThreadSanitizerPass()); |
153 |
| -#endif |
154 | 146 | }
|
155 | 147 |
|
156 | 148 | extern "C" LLVMRustPassKind LLVMRustPassKind(LLVMPassRef RustPass) {
|
@@ -1236,15 +1228,11 @@ LLVMRustCreateThinLTOData(LLVMRustThinLTOModule *modules,
|
1236 | 1228 | auto deadIsPrevailing = [&](GlobalValue::GUID G) {
|
1237 | 1229 | return PrevailingType::Unknown;
|
1238 | 1230 | };
|
1239 |
| -#if LLVM_VERSION_GE(8, 0) |
1240 | 1231 | // We don't have a complete picture in our use of ThinLTO, just our immediate
|
1241 | 1232 | // crate, so we need `ImportEnabled = false` to limit internalization.
|
1242 | 1233 | // Otherwise, we sometimes lose `static` values -- see #60184.
|
1243 | 1234 | computeDeadSymbolsWithConstProp(Ret->Index, Ret->GUIDPreservedSymbols,
|
1244 | 1235 | deadIsPrevailing, /* ImportEnabled = */ false);
|
1245 |
| -#else |
1246 |
| - computeDeadSymbols(Ret->Index, Ret->GUIDPreservedSymbols, deadIsPrevailing); |
1247 |
| -#endif |
1248 | 1236 | ComputeCrossModuleImport(
|
1249 | 1237 | Ret->Index,
|
1250 | 1238 | Ret->ModuleToDefinedGVSummaries,
|
@@ -1277,10 +1265,8 @@ LLVMRustCreateThinLTOData(LLVMRustThinLTOModule *modules,
|
1277 | 1265 | #if LLVM_VERSION_GE(9, 0)
|
1278 | 1266 | thinLTOResolvePrevailingInIndex(Ret->Index, isPrevailing, recordNewLinkage,
|
1279 | 1267 | Ret->GUIDPreservedSymbols);
|
1280 |
| -#elif LLVM_VERSION_GE(8, 0) |
1281 |
| - thinLTOResolvePrevailingInIndex(Ret->Index, isPrevailing, recordNewLinkage); |
1282 | 1268 | #else
|
1283 |
| - thinLTOResolveWeakForLinkerInIndex(Ret->Index, isPrevailing, recordNewLinkage); |
| 1269 | + thinLTOResolvePrevailingInIndex(Ret->Index, isPrevailing, recordNewLinkage); |
1284 | 1270 | #endif
|
1285 | 1271 |
|
1286 | 1272 | // Here we calculate an `ExportedGUIDs` set for use in the `isExported`
|
@@ -1346,11 +1332,7 @@ extern "C" bool
|
1346 | 1332 | LLVMRustPrepareThinLTOResolveWeak(const LLVMRustThinLTOData *Data, LLVMModuleRef M) {
|
1347 | 1333 | Module &Mod = *unwrap(M);
|
1348 | 1334 | const auto &DefinedGlobals = Data->ModuleToDefinedGVSummaries.lookup(Mod.getModuleIdentifier());
|
1349 |
| -#if LLVM_VERSION_GE(8, 0) |
1350 | 1335 | thinLTOResolvePrevailingInModule(Mod, DefinedGlobals);
|
1351 |
| -#else |
1352 |
| - thinLTOResolveWeakForLinkerModule(Mod, DefinedGlobals); |
1353 |
| -#endif |
1354 | 1336 | return true;
|
1355 | 1337 | }
|
1356 | 1338 |
|
|
0 commit comments