@@ -288,36 +288,23 @@ multiclass FRU6_LRU6_cp<bits<6> opc, string OpcStr> {
288
288
}
289
289
290
290
// 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)]>;
300
296
}
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)]>;
310
303
}
311
304
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"), []>;
321
308
}
322
309
323
310
// U10
@@ -628,60 +615,46 @@ defm BRBF: FRU6_LRU6_backwards_branch<0b011111, "bf">;
628
615
// U6
629
616
let Defs = [SP], Uses = [SP] in {
630
617
let neverHasSideEffects = 1 in
631
- defm EXTSP : FU6_LU6_np<"extsp">;
618
+ defm EXTSP : FU6_LU6_np<0b0111011110, "extsp">;
632
619
let mayStore = 1 in
633
- defm ENTSP : FU6_LU6_np<"entsp">;
620
+ defm ENTSP : FU6_LU6_np<0b0111011101, "entsp">;
634
621
635
622
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>;
637
624
}
638
625
}
639
626
640
627
// TODO extdp, kentsp, krestsp, blat
641
628
// getsr, kalli
642
629
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", []>;
648
631
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", []>;
654
633
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", []>;
660
635
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", []>;
666
637
}
667
638
668
639
//let Uses = [CP] in ...
669
640
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
+ []>;
671
643
672
644
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]",
674
646
[(set R11, ADDRcpii:$a)]>;
675
647
676
- defm SETSR : FU6_LU6_int<"setsr", int_xcore_setsr>;
648
+ defm SETSR : FU6_LU6_int<0b0111101101, "setsr", int_xcore_setsr>;
677
649
678
- defm CLRSR : FU6_LU6_int<"clrsr", int_xcore_clrsr>;
650
+ defm CLRSR : FU6_LU6_int<0b0111101100, "clrsr", int_xcore_clrsr>;
679
651
680
652
// setsr may cause a branch if it is used to enable events. clrsr may
681
653
// 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">;
685
658
}
686
659
687
660
// U10
0 commit comments