|
1 | 1 | use crate::back::write::{
|
2 | 2 | self, save_temp_bitcode, to_llvm_opt_settings, with_llvm_pmb, DiagnosticHandlers,
|
3 | 3 | };
|
4 |
| -use crate::llvm::archive_ro::ArchiveRO; |
5 | 4 | use crate::llvm::{self, build_string, False, True};
|
6 | 5 | use crate::{llvm_util, LlvmCodegenBackend, ModuleLlvm};
|
| 6 | +use object::read::archive::ArchiveFile; |
7 | 7 | use rustc_codegen_ssa::back::lto::{LtoModuleCodegen, SerializedModule, ThinModule, ThinShared};
|
8 | 8 | use rustc_codegen_ssa::back::symbol_export;
|
9 | 9 | use rustc_codegen_ssa::back::write::{CodegenContext, FatLTOInput, TargetMachineFactoryConfig};
|
10 | 10 | use rustc_codegen_ssa::traits::*;
|
11 | 11 | use rustc_codegen_ssa::{looks_like_rust_object_file, ModuleCodegen, ModuleKind};
|
12 | 12 | use rustc_data_structures::fx::FxHashMap;
|
| 13 | +use rustc_data_structures::memmap::Mmap; |
13 | 14 | use rustc_errors::{FatalError, Handler};
|
14 | 15 | use rustc_hir::def_id::LOCAL_CRATE;
|
15 | 16 | use rustc_middle::bug;
|
@@ -107,14 +108,24 @@ fn prepare_lto(
|
107 | 108 | .extend(exported_symbols[&cnum].iter().filter_map(symbol_filter));
|
108 | 109 | }
|
109 | 110 |
|
110 |
| - let archive = ArchiveRO::open(path).expect("wanted an rlib"); |
| 111 | + let archive_data = unsafe { |
| 112 | + Mmap::map(std::fs::File::open(&path).expect("couldn't open rlib")) |
| 113 | + .expect("couldn't map rlib") |
| 114 | + }; |
| 115 | + let archive = ArchiveFile::parse(&*archive_data).expect("wanted an rlib"); |
111 | 116 | let obj_files = archive
|
112 |
| - .iter() |
113 |
| - .filter_map(|child| child.ok().and_then(|c| c.name().map(|name| (name, c)))) |
| 117 | + .members() |
| 118 | + .filter_map(|child| { |
| 119 | + child.ok().and_then(|c| { |
| 120 | + std::str::from_utf8(c.name()).ok().map(|name| (name.trim(), c)) |
| 121 | + }) |
| 122 | + }) |
114 | 123 | .filter(|&(name, _)| looks_like_rust_object_file(name));
|
115 | 124 | for (name, child) in obj_files {
|
116 | 125 | info!("adding bitcode from {}", name);
|
117 |
| - match get_bitcode_slice_from_object_data(child.data()) { |
| 126 | + match get_bitcode_slice_from_object_data( |
| 127 | + child.data(&*archive_data).expect("corrupt rlib"), |
| 128 | + ) { |
118 | 129 | Ok(data) => {
|
119 | 130 | let module = SerializedModule::FromRlib(data.to_vec());
|
120 | 131 | upstream_modules.push((module, CString::new(name).unwrap()));
|
|
0 commit comments