Skip to content

Commit 9d3ec06

Browse files
author
Richard Osborne
committed
Add instruction encodings / disassembly support for u6 / lu6 instructions.
llvm-svn: 173086
1 parent 6e58c6d commit 9d3ec06

File tree

3 files changed

+92
-59
lines changed

3 files changed

+92
-59
lines changed

llvm/lib/Target/XCore/XCoreInstrFormats.td

+12-2
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,22 @@ class _FLRU6<bits<6> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
107107
let Inst{9-0} = b{15-6};
108108
}
109109

110-
class _FU6<dag outs, dag ins, string asmstr, list<dag> pattern>
110+
class _FU6<bits<10> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
111111
: InstXCore<2, outs, ins, asmstr, pattern> {
112+
bits<6> a;
113+
114+
let Inst{15-6} = opc;
115+
let Inst{5-0} = a;
112116
}
113117

114-
class _FLU6<dag outs, dag ins, string asmstr, list<dag> pattern>
118+
class _FLU6<bits<10> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
115119
: InstXCore<4, outs, ins, asmstr, pattern> {
120+
bits<16> a;
121+
122+
let Inst{31-22} = opc;
123+
let Inst{21-16} = a{5-0};
124+
let Inst{15-10} = 0b111100;
125+
let Inst{9-0} = a{15-6};
116126
}
117127

118128
class _FU10<dag outs, dag ins, string asmstr, list<dag> pattern>

llvm/lib/Target/XCore/XCoreInstrInfo.td

+30-57
Original file line numberDiff line numberDiff line change
@@ -288,36 +288,23 @@ multiclass FRU6_LRU6_cp<bits<6> opc, string OpcStr> {
288288
}
289289

290290
// U6
291-
multiclass FU6_LU6<string OpcStr, SDNode OpNode> {
292-
def _u6: _FU6<
293-
(outs), (ins i32imm:$b),
294-
!strconcat(OpcStr, " $b"),
295-
[(OpNode immU6:$b)]>;
296-
def _lu6: _FLU6<
297-
(outs), (ins i32imm:$b),
298-
!strconcat(OpcStr, " $b"),
299-
[(OpNode immU16:$b)]>;
291+
multiclass FU6_LU6<bits<10> opc, string OpcStr, SDNode OpNode> {
292+
def _u6: _FU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"),
293+
[(OpNode immU6:$a)]>;
294+
def _lu6: _FLU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"),
295+
[(OpNode immU16:$a)]>;
300296
}
301-
multiclass FU6_LU6_int<string OpcStr, Intrinsic Int> {
302-
def _u6: _FU6<
303-
(outs), (ins i32imm:$b),
304-
!strconcat(OpcStr, " $b"),
305-
[(Int immU6:$b)]>;
306-
def _lu6: _FLU6<
307-
(outs), (ins i32imm:$b),
308-
!strconcat(OpcStr, " $b"),
309-
[(Int immU16:$b)]>;
297+
298+
multiclass FU6_LU6_int<bits<10> opc, string OpcStr, Intrinsic Int> {
299+
def _u6: _FU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"),
300+
[(Int immU6:$a)]>;
301+
def _lu6: _FLU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"),
302+
[(Int immU16:$a)]>;
310303
}
311304

312-
multiclass FU6_LU6_np<string OpcStr> {
313-
def _u6: _FU6<
314-
(outs), (ins i32imm:$b),
315-
!strconcat(OpcStr, " $b"),
316-
[]>;
317-
def _lu6: _FLU6<
318-
(outs), (ins i32imm:$b),
319-
!strconcat(OpcStr, " $b"),
320-
[]>;
305+
multiclass FU6_LU6_np<bits<10> opc, string OpcStr> {
306+
def _u6: _FU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"), []>;
307+
def _lu6: _FLU6<opc, (outs), (ins i32imm:$a), !strconcat(OpcStr, " $a"), []>;
321308
}
322309

323310
// U10
@@ -628,60 +615,46 @@ defm BRBF: FRU6_LRU6_backwards_branch<0b011111, "bf">;
628615
// U6
629616
let Defs = [SP], Uses = [SP] in {
630617
let neverHasSideEffects = 1 in
631-
defm EXTSP : FU6_LU6_np<"extsp">;
618+
defm EXTSP : FU6_LU6_np<0b0111011110, "extsp">;
632619
let mayStore = 1 in
633-
defm ENTSP : FU6_LU6_np<"entsp">;
620+
defm ENTSP : FU6_LU6_np<0b0111011101, "entsp">;
634621

635622
let isReturn = 1, isTerminator = 1, mayLoad = 1, isBarrier = 1 in {
636-
defm RETSP : FU6_LU6<"retsp", XCoreRetsp>;
623+
defm RETSP : FU6_LU6<0b0111011111, "retsp", XCoreRetsp>;
637624
}
638625
}
639626

640627
// TODO extdp, kentsp, krestsp, blat
641628
// getsr, kalli
642629
let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
643-
def BRBU_u6 : _FU6<
644-
(outs),
645-
(ins brtarget:$target),
646-
"bu $target",
647-
[]>;
630+
def BRBU_u6 : _FU6<0b0111011100, (outs), (ins brtarget:$a), "bu -$a", []>;
648631

649-
def BRBU_lu6 : _FLU6<
650-
(outs),
651-
(ins brtarget:$target),
652-
"bu $target",
653-
[]>;
632+
def BRBU_lu6 : _FLU6<0b0111011100, (outs), (ins brtarget:$a), "bu -$a", []>;
654633

655-
def BRFU_u6 : _FU6<
656-
(outs),
657-
(ins brtarget:$target),
658-
"bu $target",
659-
[]>;
634+
def BRFU_u6 : _FU6<0b0111001100, (outs), (ins brtarget:$a), "bu $a", []>;
660635

661-
def BRFU_lu6 : _FLU6<
662-
(outs),
663-
(ins brtarget:$target),
664-
"bu $target",
665-
[]>;
636+
def BRFU_lu6 : _FLU6<0b0111001100, (outs), (ins brtarget:$a), "bu $a", []>;
666637
}
667638

668639
//let Uses = [CP] in ...
669640
let Defs = [R11], neverHasSideEffects = 1, isReMaterializable = 1 in
670-
def LDAWCP_u6: _FU6<(outs), (ins MEMii:$a), "ldaw r11, cp[$a]", []>;
641+
def LDAWCP_u6: _FU6<0b0111111101, (outs), (ins MEMii:$a), "ldaw r11, cp[$a]",
642+
[]>;
671643

672644
let Defs = [R11], isReMaterializable = 1 in
673-
def LDAWCP_lu6: _FLU6<(outs), (ins MEMii:$a), "ldaw r11, cp[$a]",
645+
def LDAWCP_lu6: _FLU6<0b0111111101, (outs), (ins MEMii:$a), "ldaw r11, cp[$a]",
674646
[(set R11, ADDRcpii:$a)]>;
675647

676-
defm SETSR : FU6_LU6_int<"setsr", int_xcore_setsr>;
648+
defm SETSR : FU6_LU6_int<0b0111101101, "setsr", int_xcore_setsr>;
677649

678-
defm CLRSR : FU6_LU6_int<"clrsr", int_xcore_clrsr>;
650+
defm CLRSR : FU6_LU6_int<0b0111101100, "clrsr", int_xcore_clrsr>;
679651

680652
// setsr may cause a branch if it is used to enable events. clrsr may
681653
// branch if it is executed while events are enabled.
682-
let isBranch=1, isIndirectBranch=1, isTerminator=1, isBarrier = 1 in {
683-
defm SETSR_branch : FU6_LU6_np<"setsr">;
684-
defm CLRSR_branch : FU6_LU6_np<"clrsr">;
654+
let isBranch=1, isIndirectBranch=1, isTerminator=1, isBarrier = 1,
655+
isCodeGenOnly = 1 in {
656+
defm SETSR_branch : FU6_LU6_np<0b0111101101, "setsr">;
657+
defm CLRSR_branch : FU6_LU6_np<0b0111101100, "clrsr">;
685658
}
686659

687660
// U10

llvm/test/MC/Disassembler/XCore/xcore.txt

+50
Original file line numberDiff line numberDiff line change
@@ -392,3 +392,53 @@
392392

393393
# CHECK: stw r0, sp[8761]
394394
0x88 0xf0 0x39 0x54
395+
396+
# u6 / lu6 instructions
397+
398+
# CHECK: bu -20
399+
0x14 0x77
400+
401+
# CHECK: bu -1000
402+
0x0f 0xf0 0x28 0x77
403+
404+
# CHECK: bu 24
405+
0x18 0x73
406+
407+
# CHECK: bu 2231
408+
0x22 0xf0 0x37 0x73
409+
410+
# CHECK: extsp 9
411+
0x89 0x77
412+
413+
# CHECK: extsp 5721
414+
0x59 0xf0 0x99 0x77
415+
416+
# CHECK: clrsr 60
417+
0x3c 0x7b
418+
419+
# CHECK: clrsr 64391
420+
0xee 0xf3 0x07 0x7b
421+
422+
# CHECK: entsp 1
423+
0x41 0x77
424+
425+
# CHECK: entsp 70
426+
0x01 0xf0 0x46 0x77
427+
428+
# CHECK: ldaw r11, cp[5]
429+
0x45 0x7f
430+
431+
# CHECK: ldaw r11, cp[33000]
432+
0x03 0xf2 0x68 0x7f
433+
434+
# CHECK: retsp 40
435+
0xe8 0x77
436+
437+
# CHECK: retsp 52010
438+
0x2c 0xf3 0xea 0x77
439+
440+
# CHECK: setsr 42
441+
0x6a 0x7b
442+
443+
# CHECK: setsr 21863
444+
0x55 0xf1 0x67 0x7b

0 commit comments

Comments
 (0)