Skip to content

Commit 909513e

Browse files
committed
Use Value instead of CValue in CInlineAsmOperand
1 parent ef37036 commit 909513e

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/inline_asm.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use crate::prelude::*;
1313
enum CInlineAsmOperand<'tcx> {
1414
In {
1515
reg: InlineAsmRegOrRegClass,
16-
value: CValue<'tcx>,
16+
value: Value,
1717
},
1818
Out {
1919
reg: InlineAsmRegOrRegClass,
@@ -23,7 +23,7 @@ enum CInlineAsmOperand<'tcx> {
2323
InOut {
2424
reg: InlineAsmRegOrRegClass,
2525
_late: bool,
26-
in_value: CValue<'tcx>,
26+
in_value: Value,
2727
out_place: Option<CPlace<'tcx>>,
2828
},
2929
Const {
@@ -57,9 +57,10 @@ pub(crate) fn codegen_inline_asm<'tcx>(
5757
let operands = operands
5858
.into_iter()
5959
.map(|operand| match *operand {
60-
InlineAsmOperand::In { reg, ref value } => {
61-
CInlineAsmOperand::In { reg, value: crate::base::codegen_operand(fx, value) }
62-
}
60+
InlineAsmOperand::In { reg, ref value } => CInlineAsmOperand::In {
61+
reg,
62+
value: crate::base::codegen_operand(fx, value).load_scalar(fx),
63+
},
6364
InlineAsmOperand::Out { reg, late, ref place } => CInlineAsmOperand::Out {
6465
reg,
6566
late,
@@ -69,7 +70,7 @@ pub(crate) fn codegen_inline_asm<'tcx>(
6970
CInlineAsmOperand::InOut {
7071
reg,
7172
_late: late,
72-
in_value: crate::base::codegen_operand(fx, in_value),
73+
in_value: crate::base::codegen_operand(fx, in_value).load_scalar(fx),
7374
out_place: out_place.map(|place| crate::base::codegen_place(fx, place)),
7475
}
7576
}
@@ -167,15 +168,15 @@ pub(crate) fn codegen_inline_asm<'tcx>(
167168
for (i, operand) in operands.iter().enumerate() {
168169
match operand {
169170
CInlineAsmOperand::In { reg: _, value } => {
170-
inputs.push((asm_gen.stack_slots_input[i].unwrap(), value.load_scalar(fx)));
171+
inputs.push((asm_gen.stack_slots_input[i].unwrap(), *value));
171172
}
172173
CInlineAsmOperand::Out { reg: _, late: _, place } => {
173174
if let Some(place) = place {
174175
outputs.push((asm_gen.stack_slots_output[i].unwrap(), *place));
175176
}
176177
}
177178
CInlineAsmOperand::InOut { reg: _, _late: _, in_value, out_place } => {
178-
inputs.push((asm_gen.stack_slots_input[i].unwrap(), in_value.load_scalar(fx)));
179+
inputs.push((asm_gen.stack_slots_input[i].unwrap(), *in_value));
179180
if let Some(out_place) = out_place {
180181
outputs.push((asm_gen.stack_slots_output[i].unwrap(), *out_place));
181182
}

0 commit comments

Comments
 (0)