Skip to content

Commit 06d1afe

Browse files
committed
Auto merge of rust-lang#118178 - compiler-errors:rollup-0i11w85, r=compiler-errors
Rollup of 6 pull requests Successful merges: - rust-lang#118012 (Add support for global allocation in smir) - rust-lang#118013 (Enable Rust to use the EHCont security feature of Windows) - rust-lang#118100 (Enable profiler in dist-powerpc64-linux) - rust-lang#118142 (Tighten up link attributes for llvm-wrapper bindings) - rust-lang#118147 (Fix some unnecessary casts) - rust-lang#118161 (Allow defining opaques in `check_coroutine_obligations`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 6d2b84b + 4ec548a commit 06d1afe

File tree

37 files changed

+666
-243
lines changed

37 files changed

+666
-243
lines changed

compiler/rustc_codegen_llvm/src/context.rs

+10
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,16 @@ pub unsafe fn create_module<'ll>(
351351
);
352352
}
353353

354+
// Set module flag to enable Windows EHCont Guard (/guard:ehcont).
355+
if sess.opts.unstable_opts.ehcont_guard {
356+
llvm::LLVMRustAddModuleFlag(
357+
llmod,
358+
llvm::LLVMModFlagBehavior::Warning,
359+
"ehcontguard\0".as_ptr() as *const _,
360+
1,
361+
)
362+
}
363+
354364
// Insert `llvm.ident` metadata.
355365
//
356366
// On the wasm targets it will get hooked up to the "producer" sections

compiler/rustc_codegen_llvm/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ struct TimeTraceProfiler {
104104
impl TimeTraceProfiler {
105105
fn new(enabled: bool) -> Self {
106106
if enabled {
107-
unsafe { llvm::LLVMTimeTraceProfilerInitialize() }
107+
unsafe { llvm::LLVMRustTimeTraceProfilerInitialize() }
108108
}
109109
TimeTraceProfiler { enabled }
110110
}
@@ -113,7 +113,7 @@ impl TimeTraceProfiler {
113113
impl Drop for TimeTraceProfiler {
114114
fn drop(&mut self) {
115115
if self.enabled {
116-
unsafe { llvm::LLVMTimeTraceProfilerFinishThread() }
116+
unsafe { llvm::LLVMRustTimeTraceProfilerFinishThread() }
117117
}
118118
}
119119
}

0 commit comments

Comments
 (0)