[PATCH] D137902: [M68k][MC] Make immediate operands relocatable

Min-Yih Hsu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 24 22:03:17 PST 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb3de31642037: [M68k][MC] Make immediate operands relocatable (authored by myhsu).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137902/new/

https://reviews.llvm.org/D137902

Files:
  llvm/lib/Target/M68k/M68kInstrFormats.td
  llvm/test/MC/M68k/Relocations/data-abs.s


Index: llvm/test/MC/M68k/Relocations/data-abs.s
===================================================================
--- llvm/test/MC/M68k/Relocations/data-abs.s
+++ llvm/test/MC/M68k/Relocations/data-abs.s
@@ -7,3 +7,20 @@
 ; INSTR: move.l dst, %d0
 ; FIXUP: fixup A - offset: 2, value: dst, kind: FK_Data_4
 move.l	dst, %d0
+
+; Relocating immediate values
+
+; RELOC: R_68K_8 str8 0x0
+; INSTR: move.b  #str8,  (4,%sp)
+; FIXUP: fixup A - offset: 3, value: str8, kind: FK_Data_1
+move.b  #str8,  (4,%sp)
+
+; RELOC: R_68K_16 str16 0x0
+; INSTR: move.w  #str16,  (4,%sp)
+; FIXUP: fixup A - offset: 2, value: str16, kind: FK_Data_2
+move.w  #str16, (4,%sp)
+
+; RELOC: R_68K_32 str32 0x0
+; INSTR: move.l  #str32,  (4,%sp)
+; FIXUP: fixup A - offset: 2, value: str32, kind: FK_Data_4
+move.l  #str32, (4,%sp)
Index: llvm/lib/Target/M68k/M68kInstrFormats.td
===================================================================
--- llvm/lib/Target/M68k/M68kInstrFormats.td
+++ llvm/lib/Target/M68k/M68kInstrFormats.td
@@ -326,10 +326,13 @@
   // Immediate
   let Supplement =
     !cond(
-      !eq(size, 8)  : (descend 0b00000000, (operand "$"#opnd_name, 8)),
-      !eq(size, 16) : (operand "$"#opnd_name, 16),
-      !eq(size, 32) : (ascend (slice "$"#opnd_name, 31, 16),
-                              (slice "$"#opnd_name, 15, 0))
+      !eq(size, 8)  : (descend 0b00000000, (operand "$"#opnd_name, 8,
+	                   (encoder "encodeRelocImm<8>"))),
+      !eq(size, 16) : (operand "$"#opnd_name, 16,
+                           (encoder "encodeRelocImm<16>")),
+      !eq(size, 32) : (operand "$"#opnd_name, 32,
+                           (encoder "encodeRelocImm<32>"),
+                           (decoder "DecodeImm32"))
     );
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137902.491996.patch
Type: text/x-patch
Size: 1748 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230125/0d754092/attachment.bin>


More information about the llvm-commits mailing list