Skip to content

Commit 016967e

Browse files
author
Richard Osborne
committed
Add instruction encodings / disassembly support for 0r instructions.
llvm-svn: 170322
1 parent 1cc2b68 commit 016967e

File tree

3 files changed

+32
-9
lines changed

3 files changed

+32
-9
lines changed

llvm/lib/Target/XCore/XCoreInstrFormats.td

+4-1
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,11 @@ class _F1R<bits<6> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
9595
let Inst{3-0} = a;
9696
}
9797

98-
class _F0R<dag outs, dag ins, string asmstr, list<dag> pattern>
98+
class _F0R<bits<10> opc, dag outs, dag ins, string asmstr, list<dag> pattern>
9999
: InstXCore<2, outs, ins, asmstr, pattern> {
100+
let Inst{15-11} = opc{9-5};
101+
let Inst{10-5} = 0b111111;
102+
let Inst{4-0} = opc{4-0};
100103
}
101104

102105
class _L4R<dag outs, dag ins, string asmstr, list<dag> pattern>

llvm/lib/Target/XCore/XCoreInstrInfo.td

+8-8
Original file line numberDiff line numberDiff line change
@@ -1018,31 +1018,31 @@ def EEU_1r : _F1R<0b000001, (outs), (ins GRRegs:$a),
10181018
// stet, getkep, getksp, setkep, getid, kret, dcall, dret,
10191019
// dentsp, drestsp
10201020

1021-
def CLRE_0R : _F0R<(outs), (ins), "clre", [(int_xcore_clre)]>;
1021+
def CLRE_0R : _F0R<0b0000001101, (outs), (ins), "clre", [(int_xcore_clre)]>;
10221022

10231023
let Defs = [R11] in {
1024-
def GETID_0R : _F0R<(outs), (ins),
1024+
def GETID_0R : _F0R<0b0001001110, (outs), (ins),
10251025
"get r11, id",
10261026
[(set R11, (int_xcore_getid))]>;
10271027

1028-
def GETED_0R : _F0R<(outs), (ins),
1028+
def GETED_0R : _F0R<0b0000111110, (outs), (ins),
10291029
"get r11, ed",
10301030
[(set R11, (int_xcore_geted))]>;
10311031

1032-
def GETET_0R : _F0R<(outs), (ins),
1032+
def GETET_0R : _F0R<0b0000111111, (outs), (ins),
10331033
"get r11, et",
10341034
[(set R11, (int_xcore_getet))]>;
10351035
}
10361036

1037-
def SSYNC_0r : _F0R<(outs), (ins),
1037+
def SSYNC_0r : _F0R<0b0000001110, (outs), (ins),
10381038
"ssync",
10391039
[(int_xcore_ssync)]>;
10401040

10411041
let isBranch=1, isIndirectBranch=1, isTerminator=1, isBarrier = 1,
10421042
hasSideEffects = 1 in
1043-
def WAITEU_0R : _F0R<(outs), (ins),
1044-
"waiteu",
1045-
[(brind (int_xcore_waitevent))]>;
1043+
def WAITEU_0R : _F0R<0b0000001100, (outs), (ins),
1044+
"waiteu",
1045+
[(brind (int_xcore_waitevent))]>;
10461046

10471047
//===----------------------------------------------------------------------===//
10481048
// Non-Instruction Patterns

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

+20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# RUN: llvm-mc --disassemble %s -triple=xcore-xmos-elf | FileCheck %s
22
# CHECK: .section __TEXT,__text,regular,pure_instructions
33

4+
# 0r instructions
5+
6+
# CHECK: clre
7+
0xed 0x07
8+
9+
# CHECK: get r11, id
10+
0xee 0x17
11+
12+
# CHECK: get r11, ed
13+
0xfe 0x0f
14+
15+
# CHECK: get r11, et
16+
0xff 0x0f
17+
18+
# CHECK: ssync
19+
0xee 0x07
20+
21+
# CHECK: waiteu
22+
0xec 0x07
23+
424
# 1r instructions
525

626
# CHECK: msync res[r0]

0 commit comments

Comments
 (0)