mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-22 10:33:23 +00:00
eecdb661ec
SparcInstrSelection.cpp: * Fixed opcodes to return correct 'i' version since the two functions are each only used in one place. * Changed name of function to have an 'i' in the name to signify that they each return an immediate form of the opcode. * Added a warning if either of the functions is ever used in a context which requires a register-version opcode. SparcV9_F4.td: fixed class F4_3, added F4_4 and notes that F4_{1,2} need fixing SparcV9.td: added the MOV(F)cc instructions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6548 91177308-0d34-0410-b5e6-96231b3b80d8
123 lines
2.7 KiB
C++
123 lines
2.7 KiB
C++
//===- Sparc.td - Target Description for Sparc V9 Target --------*- C++ -*-===//
|
|
// vim:ft=cpp
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//----------------------- F4 classes -----------------------------------------
|
|
|
|
// F4 - Common superclass of all F4 instructions. All instructions have an op3
|
|
// field.
|
|
class F4 : InstV9 {
|
|
bits<6> op3;
|
|
set Inst{24-19} = op3;
|
|
}
|
|
|
|
class F4_rd : F4 {
|
|
bits<5> rd;
|
|
set Inst{29-25} = rd;
|
|
}
|
|
|
|
class F4_rdsimm11 : F4_rd {
|
|
bits<11> simm11;
|
|
set Inst{10-0} = simm11;
|
|
}
|
|
|
|
class F4_rdsimm11rs1 : F4_rdsimm11 {
|
|
bits<5> rs1;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F4_rdrs1 - Common superclass of instructions that use rd & rs1
|
|
class F4_rdrs1 : F4_rd {
|
|
bits<5> rs1;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F4_rs1rdrs2 - Common superclass of instructions with rd, rs1, & rs2 fields
|
|
class F4_rdrs1rs2 : F4_rdrs1 {
|
|
bits<5> rs2;
|
|
set Inst{4-0} = rs2;
|
|
}
|
|
|
|
// F4_rs1 - Common class of instructions that do not have an rd field,
|
|
// but start at rs1
|
|
class F4_rs1 : F4 {
|
|
bits<5> rs1;
|
|
//set Inst{29-25} = dontcare;
|
|
set Inst{18-14} = rs1;
|
|
}
|
|
|
|
// F4_rs1rs2 - Common class of instructions that only have rs1 and rs2 fields
|
|
class F4_rs1rs2 : F4_rs1 {
|
|
bits<5> rs2;
|
|
//set Inst{12-5} = dontcare;
|
|
set Inst{4-0} = rs2;
|
|
}
|
|
|
|
// F4_cc - Common class of instructions that have a cond field
|
|
class F4_cond : F4 {
|
|
bits<4> cond;
|
|
set Inst{17-14} = cond;
|
|
}
|
|
|
|
// F4_cc - Common class of instructions that have cc register as first operand
|
|
class F4_condcc : F4_cond {
|
|
bits<3> cc;
|
|
set Inst{18} = cc{2};
|
|
set Inst{12} = cc{1};
|
|
set Inst{11} = cc{0};
|
|
}
|
|
|
|
// Actual F4 instruction classes
|
|
|
|
// FIXME: order of operands is incorrect!!
|
|
class F4_1<bits<2> opVal, bits<6> op3Val, string name> : F4_rdrs1rs2 {
|
|
bits<2> cc;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{13} = 0; // i bit
|
|
set Inst{12-11} = cc;
|
|
//set Inst{10-5} = dontcare;
|
|
}
|
|
|
|
// FIXME: order of operands is incorrect!!
|
|
class F4_2<bits<2> opVal, bits<6> op3Val, string name> : F4_rdsimm11rs1 {
|
|
bits<2> cc;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set Name = name;
|
|
set Inst{13} = 1; // i bit
|
|
set Inst{12-11} = cc;
|
|
}
|
|
|
|
class F4_3<bits<2> opVal, bits<6> op3Val, bits<4> condVal,
|
|
string name> : F4_condcc {
|
|
bits<5> rs2;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set cond = condVal;
|
|
set Name = name;
|
|
set Inst{13} = 0; // i bit
|
|
//set Inst{10-5} = dontcare;
|
|
set Inst{4-0} = rs2;
|
|
}
|
|
|
|
class F4_4<bits<2> opVal, bits<6> op3Val, bits<4> condVal,
|
|
string name> : F4_condcc {
|
|
bits<11> sim11;
|
|
bits<5> rd;
|
|
|
|
set op = opVal;
|
|
set op3 = op3Val;
|
|
set cond = condVal;
|
|
set Name = name;
|
|
set Inst{13} = 1; // i bit
|
|
set Inst{10-0} = sim11;
|
|
}
|
|
|
|
|
|
// FIXME: F4 classes 4
|