@@ -117,6 +117,7 @@ fn run_in_thread_with_globals<F: FnOnce(CurrentGcx) -> R + Send, R: Send>(
117
117
thread_stack_size : usize ,
118
118
edition : Edition ,
119
119
sm_inputs : SourceMapInputs ,
120
+ extra_symbols : & [ & ' static str ] ,
120
121
f : F ,
121
122
) -> R {
122
123
// The "thread pool" is a single spawned thread in the non-parallel
@@ -134,9 +135,12 @@ fn run_in_thread_with_globals<F: FnOnce(CurrentGcx) -> R + Send, R: Send>(
134
135
// name contains null bytes.
135
136
let r = builder
136
137
. spawn_scoped ( s, move || {
137
- rustc_span:: create_session_globals_then ( edition, Some ( sm_inputs) , || {
138
- f ( CurrentGcx :: new ( ) )
139
- } )
138
+ rustc_span:: create_session_globals_then (
139
+ edition,
140
+ extra_symbols,
141
+ Some ( sm_inputs) ,
142
+ || f ( CurrentGcx :: new ( ) ) ,
143
+ )
140
144
} )
141
145
. unwrap ( )
142
146
. join ( ) ;
@@ -152,6 +156,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
152
156
thread_builder_diag : & EarlyDiagCtxt ,
153
157
edition : Edition ,
154
158
threads : usize ,
159
+ extra_symbols : & [ & ' static str ] ,
155
160
sm_inputs : SourceMapInputs ,
156
161
f : F ,
157
162
) -> R {
@@ -168,12 +173,18 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
168
173
let registry = sync:: Registry :: new ( std:: num:: NonZero :: new ( threads) . unwrap ( ) ) ;
169
174
170
175
if !sync:: is_dyn_thread_safe ( ) {
171
- return run_in_thread_with_globals ( thread_stack_size, edition, sm_inputs, |current_gcx| {
172
- // Register the thread for use with the `WorkerLocal` type.
173
- registry. register ( ) ;
174
-
175
- f ( current_gcx)
176
- } ) ;
176
+ return run_in_thread_with_globals (
177
+ thread_stack_size,
178
+ edition,
179
+ sm_inputs,
180
+ extra_symbols,
181
+ |current_gcx| {
182
+ // Register the thread for use with the `WorkerLocal` type.
183
+ registry. register ( ) ;
184
+
185
+ f ( current_gcx)
186
+ } ,
187
+ ) ;
177
188
}
178
189
179
190
let current_gcx = FromDyn :: from ( CurrentGcx :: new ( ) ) ;
@@ -217,7 +228,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
217
228
// pool. Upon creation, each worker thread created gets a copy of the
218
229
// session globals in TLS. This is possible because `SessionGlobals` impls
219
230
// `Send` in the parallel compiler.
220
- rustc_span:: create_session_globals_then ( edition, Some ( sm_inputs) , || {
231
+ rustc_span:: create_session_globals_then ( edition, extra_symbols , Some ( sm_inputs) , || {
221
232
rustc_span:: with_session_globals ( |session_globals| {
222
233
let session_globals = FromDyn :: from ( session_globals) ;
223
234
builder
0 commit comments