Skip to content

Commit c7bf20d

Browse files
khei4oli-obk
andcommitted
use slice memcpy rather than strcpy and write it on stdout use println on failure Co-authored-by: Oli Scherer <github35764891676564198441@oli-obk.de>
1 parent 4d307c4 commit c7bf20d

File tree

3 files changed

+25
-24
lines changed

3 files changed

+25
-24
lines changed

compiler/rustc_codegen_llvm/src/lib.rs

+15-16
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ use rustc_span::symbol::Symbol;
4646

4747
use std::any::Any;
4848
use std::ffi::CStr;
49+
use std::io::Write;
4950

5051
mod back {
5152
pub mod archive;
@@ -177,32 +178,30 @@ impl WriteBackendMethods for LlvmCodegenBackend {
177178
type ThinData = back::lto::ThinData;
178179
type ThinBuffer = back::lto::ThinBuffer;
179180
fn print_pass_timings(&self) {
180-
let msg = unsafe {
181-
let cstr = llvm::LLVMRustPrintPassTimings();
181+
unsafe {
182+
let mut size = 0;
183+
let cstr = llvm::LLVMRustPrintPassTimings(&mut size as *mut usize);
182184
if cstr.is_null() {
183-
"failed to get pass timings".into()
185+
println!("failed to get pass timings");
184186
} else {
185-
let timings = CStr::from_ptr(cstr).to_bytes();
186-
let timings = String::from_utf8_lossy(timings).to_string();
187+
let timings = std::slice::from_raw_parts(cstr as *const u8, size);
188+
std::io::stdout().write_all(timings).unwrap();
187189
libc::free(cstr as *mut _);
188-
timings
189190
}
190-
};
191-
println!("{}", msg);
191+
}
192192
}
193193
fn print_statistics(&self) {
194-
let msg = unsafe {
195-
let cstr = llvm::LLVMRustPrintStatistics();
194+
unsafe {
195+
let mut size = 0;
196+
let cstr = llvm::LLVMRustPrintStatistics(&mut size as *mut usize);
196197
if cstr.is_null() {
197-
"failed to get stats".into()
198+
println!("failed to get pass stats");
198199
} else {
199-
let stats = CStr::from_ptr(cstr).to_bytes();
200-
let stats = String::from_utf8_lossy(stats).to_string();
200+
let stats = std::slice::from_raw_parts(cstr as *const u8, size);
201+
std::io::stdout().write_all(stats).unwrap();
201202
libc::free(cstr as *mut _);
202-
stats
203203
}
204-
};
205-
println!("{}", msg);
204+
}
206205
}
207206
fn run_link(
208207
cgcx: &CodegenContext<Self>,

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1868,10 +1868,10 @@ extern "C" {
18681868
pub fn LLVMRustGetLastError() -> *const c_char;
18691869

18701870
/// Print the pass timings since static dtors aren't picking them up.
1871-
pub fn LLVMRustPrintPassTimings() -> *const c_char;
1871+
pub fn LLVMRustPrintPassTimings(size: *const size_t) -> *const c_char;
18721872

18731873
/// Print the statistics since static dtors aren't picking them up.
1874-
pub fn LLVMRustPrintStatistics() -> *const c_char;
1874+
pub fn LLVMRustPrintStatistics(size: *const size_t) -> *const c_char;
18751875

18761876
pub fn LLVMStructCreateNamed(C: &Context, Name: *const c_char) -> &Type;
18771877

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -112,23 +112,25 @@ extern "C" void LLVMRustSetNormalizedTarget(LLVMModuleRef M,
112112
unwrap(M)->setTargetTriple(Triple::normalize(Triple));
113113
}
114114

115-
extern "C" const char *LLVMRustPrintPassTimings(void) {
115+
extern "C" const char *LLVMRustPrintPassTimings(size_t *Len) {
116116
std::string buf;
117117
raw_string_ostream SS(buf);
118118
TimerGroup::printAll(SS);
119119
SS.flush();
120-
char* CStr = (char*) malloc((buf.length() + 1) * sizeof(char));
121-
strcpy(CStr, buf.c_str());
120+
*Len = buf.length();
121+
char *CStr = (char *)malloc(*Len);
122+
memcpy(CStr, buf.c_str(), *Len);
122123
return CStr;
123124
}
124125

125-
extern "C" const char *LLVMRustPrintStatistics(void) {
126+
extern "C" const char *LLVMRustPrintStatistics(size_t *Len) {
126127
std::string buf;
127128
raw_string_ostream SS(buf);
128129
llvm::PrintStatistics(SS);
129130
SS.flush();
130-
char* CStr = (char*) malloc((buf.length() + 1) * sizeof(char));
131-
strcpy(CStr, buf.c_str());
131+
*Len = buf.length();
132+
char *CStr = (char *)malloc(*Len);
133+
memcpy(CStr, buf.c_str(), *Len);
132134
return CStr;
133135
}
134136

0 commit comments

Comments
 (0)