mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-08 04:51:23 +00:00
9b03633265
instructions of format 3.12 and 3.13 cannot inherit from F3rdrs1, because that implies that the two registers are the first two parameters to the instruction. Thus I made the instructions inherit from F3rd again, and manually added an rs1 field AFTER the shcnt field in the instruction, which maps to the appropriate place in the instruction. The other changes are just elimination of unnecessary spaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6437 91177308-0d34-0410-b5e6-96231b3b80d8
180 lines
4.0 KiB
C++
180 lines
4.0 KiB
C++
//===- Sparc.td - Target Description for Sparc V9 Target --------*- C++ -*-===//
|
|
// vim:ft=cpp
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Format #3 classes
|
|
//
|
|
|
|
// F3 - Common superclass of all F3 instructions. All instructions have an op3
|
|
// field.
|
|
class F3 : InstV9 {
|
|
bits<6> op3;
|
|
set op{1} = 1; // Op = 2 or 3
|
|
set Inst{24-19} = op3;
|
|
}
|
|
|
|
class F3_rd : F3 {
|
|
bits<5> rd;
|
|
set Inst{29-25} = rd;
|
|
}
|
|
|
|
class F3_rdsimm13 : F3_rd {
|
|
bits<13> simm13;
|
|
set Inst{12-0} = simm13;
|
|
}
|
|
|
|
class F3_rdsimm13rs1 : F3_rdsimm13 {
|
|
bits<5> rs1;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F3_rdrs1 - Common superclass of instructions that use rd & rs1
|
|
class F3_rdrs1 : F3_rd {
|
|
bits<5> rs1;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F3_rs1rdrs2 - Common superclass of instructions with rd, rs1, & rs2 fields
|
|
class F3_rdrs1rs2 : F3_rdrs1 {
|
|
bits<5> rs2;
|
|
set Inst{4-0} = rs2;
|
|
}
|
|
|
|
// F3_rs1 - Common class of instructions that do not have an rd field,
|
|
// but start at rs1
|
|
class F3_rs1 : F3 {
|
|
bits<5> rs1;
|
|
//set Inst{29-25} = dontcare;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F3_rs1rs2 - Common class of instructions that only have rs1 and rs2 fields
|
|
class F3_rs1rs2 : F3_rs1 {
|
|
bits<5> rs2;
|
|
//set Inst{12-5} = dontcare;
|
|
set Inst{4-0} = rs2;
|
|
}
|
|
|
|
// F3_rs1simm13 - Common class of instructions that only have rs1 and simm13
|
|
class F3_rs1simm13 : F3_rs1 {
|
|
bits<13> simm13;
|
|
set Inst{12-0} = simm13;
|
|
}
|
|
|
|
|
|
// Specific F3 classes...
|
|
//
|
|
|
|
class F3_1<bits<2> opVal, bits<6> op3val, string name> : F3_rdrs1rs2 {
|
|
set op = opVal;
|
|
set op3 = op3val;
|
|
set Name = name;
|
|
set Inst{13} = 0; // i field = 0
|
|
//set Inst{12-5} = dontcare;
|
|
}
|
|
|
|
class F3_2<bits<2> opVal, bits<6> op3val, string name> : F3_rdsimm13rs1 {
|
|
set op = opVal;
|
|
set op3 = op3val;
|
|
set Name = name;
|
|
set Inst{13} = 1; // i field = 1
|
|
}
|
|
|
|
class F3_3<bits<2> opVal, bits<6> op3val, string name> : F3_rs1rs2 {
|
|
set op = opVal;
|
|
set op3 = op3val;
|
|
set Name = name;
|
|
set Inst{13} = 0;
|
|
}
|
|
|
|
class F3_4<bits<2> opVal, bits<6> op3Val, string name> : F3_rs1simm13 {
|
|
bits<13> simm;
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
//set Inst{29-25} = dontcare;
|
|
set Inst{13} = 1;
|
|
set Inst{12-0} = simm;
|
|
}
|
|
|
|
class F3_11<bits<2> opVal, bits<6> op3Val, string name> : F3_rdrs1rs2 {
|
|
bit x;
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{13} = 0; // i field = 0
|
|
set Inst{12} = x;
|
|
//set Inst{11-5} = dontcare;
|
|
}
|
|
|
|
class F3_12<bits<2> opVal, bits<6> op3Val, string name> : F3_rd {
|
|
bits<5> shcnt;
|
|
bits<5> rs1;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{18-14} = rs1;
|
|
set Inst{13} = 1; // i field = 1
|
|
set Inst{12} = 0; // x field = 0
|
|
//set Inst{11-5} = dontcare;
|
|
set Inst{4-0} = shcnt;
|
|
}
|
|
|
|
class F3_13<bits<2> opVal, bits<6> op3Val, string name> : F3_rd {
|
|
bits<6> shcnt;
|
|
bits<5> rs1;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{18-14} = rs1;
|
|
set Inst{13} = 1; // i field = 1
|
|
set Inst{12} = 1; // x field = 1
|
|
//set Inst{11-6} = dontcare;
|
|
set Inst{5-0} = shcnt;
|
|
}
|
|
|
|
class F3_14<bits<2> opVal, bits<6> op3Val,
|
|
bits<9> opfval, string name> : F3_rdrs1rs2 {
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
//set Inst{18-14} = dontcare;
|
|
set Inst{13-5} = opfval;
|
|
}
|
|
|
|
class F3_16<bits<2> opVal, bits<6> op3Val,
|
|
bits<9> opfval, string name> : F3_rdrs1rs2 {
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{13-5} = opfval;
|
|
}
|
|
|
|
class F3_17<bits<2> opVal, bits<6> op3Val, string name> : F3_rdrs1 {
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
//Inst{13-0} = dontcare;
|
|
}
|
|
|
|
class F3_18<bits<5> fcn, string name> : F3 {
|
|
set op = 2;
|
|
set op3 = 0b111110;
|
|
set Name = name;
|
|
set Inst{29-25} = fcn;
|
|
//set Inst{18-0 } = dontcare;
|
|
}
|
|
|
|
class F3_19<bits<2> opVal, bits<6> op3Val, string name> : F3_rd {
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
//Inst{18-0} = dontcare;
|
|
}
|
|
|
|
// FIXME: class F3_20
|
|
// FIXME: class F3_21
|