@@ -24,10 +24,16 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
24
24
) -> & ' hir hir:: InlineAsm < ' hir > {
25
25
// Rustdoc needs to support asm! from foreign architectures: don't try
26
26
// lowering the register constraints in this case.
27
- let asm_arch = if self . sess . opts . actually_rustdoc { None } else { self . sess . asm_arch } ;
28
- if asm_arch. is_none ( ) && !self . sess . opts . actually_rustdoc {
29
- struct_span_err ! ( self . sess, sp, E0472 , "inline assembly is unsupported on this target" )
30
- . emit ( ) ;
27
+ let asm_arch =
28
+ if self . tcx . sess . opts . actually_rustdoc { None } else { self . tcx . sess . asm_arch } ;
29
+ if asm_arch. is_none ( ) && !self . tcx . sess . opts . actually_rustdoc {
30
+ struct_span_err ! (
31
+ self . tcx. sess,
32
+ sp,
33
+ E0472 ,
34
+ "inline assembly is unsupported on this target"
35
+ )
36
+ . emit ( ) ;
31
37
}
32
38
if let Some ( asm_arch) = asm_arch {
33
39
// Inline assembly is currently only stable for these architectures.
@@ -40,9 +46,9 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
40
46
| asm:: InlineAsmArch :: RiscV32
41
47
| asm:: InlineAsmArch :: RiscV64
42
48
) ;
43
- if !is_stable && !self . sess . features_untracked ( ) . asm_experimental_arch {
49
+ if !is_stable && !self . tcx . features ( ) . asm_experimental_arch {
44
50
feature_err (
45
- & self . sess . parse_sess ,
51
+ & self . tcx . sess . parse_sess ,
46
52
sym:: asm_experimental_arch,
47
53
sp,
48
54
"inline assembly is not stable yet on this architecture" ,
@@ -52,17 +58,16 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
52
58
}
53
59
if asm. options . contains ( InlineAsmOptions :: ATT_SYNTAX )
54
60
&& !matches ! ( asm_arch, Some ( asm:: InlineAsmArch :: X86 | asm:: InlineAsmArch :: X86_64 ) )
55
- && !self . sess . opts . actually_rustdoc
61
+ && !self . tcx . sess . opts . actually_rustdoc
56
62
{
57
- self . sess
63
+ self . tcx
64
+ . sess
58
65
. struct_span_err ( sp, "the `att_syntax` option is only supported on x86" )
59
66
. emit ( ) ;
60
67
}
61
- if asm. options . contains ( InlineAsmOptions :: MAY_UNWIND )
62
- && !self . sess . features_untracked ( ) . asm_unwind
63
- {
68
+ if asm. options . contains ( InlineAsmOptions :: MAY_UNWIND ) && !self . tcx . features ( ) . asm_unwind {
64
69
feature_err (
65
- & self . sess . parse_sess ,
70
+ & self . tcx . sess . parse_sess ,
66
71
sym:: asm_unwind,
67
72
sp,
68
73
"the `may_unwind` option is unstable" ,
@@ -73,20 +78,20 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
73
78
let mut clobber_abis = FxHashMap :: default ( ) ;
74
79
if let Some ( asm_arch) = asm_arch {
75
80
for ( abi_name, abi_span) in & asm. clobber_abis {
76
- match asm:: InlineAsmClobberAbi :: parse ( asm_arch, & self . sess . target , * abi_name) {
81
+ match asm:: InlineAsmClobberAbi :: parse ( asm_arch, & self . tcx . sess . target , * abi_name) {
77
82
Ok ( abi) => {
78
83
// If the abi was already in the list, emit an error
79
84
match clobber_abis. get ( & abi) {
80
85
Some ( ( prev_name, prev_sp) ) => {
81
- let mut err = self . sess . struct_span_err (
86
+ let mut err = self . tcx . sess . struct_span_err (
82
87
* abi_span,
83
88
& format ! ( "`{}` ABI specified multiple times" , prev_name) ,
84
89
) ;
85
90
err. span_label ( * prev_sp, "previously specified here" ) ;
86
91
87
92
// Multiple different abi names may actually be the same ABI
88
93
// If the specified ABIs are not the same name, alert the user that they resolve to the same ABI
89
- let source_map = self . sess . source_map ( ) ;
94
+ let source_map = self . tcx . sess . source_map ( ) ;
90
95
if source_map. span_to_snippet ( * prev_sp)
91
96
!= source_map. span_to_snippet ( * abi_span)
92
97
{
@@ -101,16 +106,19 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
101
106
}
102
107
}
103
108
Err ( & [ ] ) => {
104
- self . sess
109
+ self . tcx
110
+ . sess
105
111
. struct_span_err (
106
112
* abi_span,
107
113
"`clobber_abi` is not supported on this target" ,
108
114
)
109
115
. emit ( ) ;
110
116
}
111
117
Err ( supported_abis) => {
112
- let mut err =
113
- self . sess . struct_span_err ( * abi_span, "invalid ABI for `clobber_abi`" ) ;
118
+ let mut err = self
119
+ . tcx
120
+ . sess
121
+ . struct_span_err ( * abi_span, "invalid ABI for `clobber_abi`" ) ;
114
122
let mut abis = format ! ( "`{}`" , supported_abis[ 0 ] ) ;
115
123
for m in & supported_abis[ 1 ..] {
116
124
let _ = write ! ( abis, ", `{}`" , m) ;
@@ -128,7 +136,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
128
136
// Lower operands to HIR. We use dummy register classes if an error
129
137
// occurs during lowering because we still need to be able to produce a
130
138
// valid HIR.
131
- let sess = self . sess ;
139
+ let sess = self . tcx . sess ;
132
140
let mut operands: Vec < _ > = asm
133
141
. operands
134
142
. iter ( )
@@ -184,9 +192,9 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
184
192
}
185
193
}
186
194
InlineAsmOperand :: Const { ref anon_const } => {
187
- if !self . sess . features_untracked ( ) . asm_const {
195
+ if !self . tcx . features ( ) . asm_const {
188
196
feature_err (
189
- & self . sess . parse_sess ,
197
+ & sess. parse_sess ,
190
198
sym:: asm_const,
191
199
* op_sp,
192
200
"const operands for inline assembly are unstable" ,
@@ -198,9 +206,9 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
198
206
}
199
207
}
200
208
InlineAsmOperand :: Sym { ref sym } => {
201
- if !self . sess . features_untracked ( ) . asm_sym {
209
+ if !self . tcx . features ( ) . asm_sym {
202
210
feature_err (
203
- & self . sess . parse_sess ,
211
+ & sess. parse_sess ,
204
212
sym:: asm_sym,
205
213
* op_sp,
206
214
"sym operands for inline assembly are unstable" ,
0 commit comments