ack/mach/vc4/as/mach5.c
David Given 26877d3c4f Add a whole bunch of VC4 opcodes.
--HG--
branch : dtrg-videocore
2013-05-17 23:30:49 +01:00

212 lines
4.7 KiB
C

/*
* VideoCore IV assembler for the ACK
* © 2013 David Given
* This file is redistributable under the terms of the 3-clause BSD license.
* See the file 'Copying' in the root of the distribution for the full text.
*/
/* Assemble an ALU instruction where rb is a register. */
void alu_instr_reg(unsigned op, unsigned cc,
unsigned rd, unsigned ra, unsigned rb)
{
/* Can we use short form? */
if ((cc == ALWAYS) && (ra == rd))
{
emit2(B16(01000000,00000000) | (op<<8) | (rb<<4) | (rd<<0));
return;
}
/* Long form, then. */
emit2(B16(11000000,00000000) | (op<<5) | (rd<<0));
emit2(B16(00000000,00000000) | (ra<<11) | (cc<<7) | (rb<<0));
}
/* Assemble an ALU instruction where rb is a literal. */
void alu_instr_lit(unsigned op, unsigned cc,
unsigned rd, unsigned ra, unsigned value)
{
/* 16 bit short form? */
if ((cc == ALWAYS) && !(op & 1) && (value <= 0x1f) && (ra == rd) &&
!(ra & 0x10))
{
emit2(B16(01100000,00000000) | (op<<8) | (value<<4) | (rd<<0));
return;
}
/* 32 bit medium form? */
if (value >= 0x1f)
{
emit2(B16(11000000,00000000) | (op<<5) | (rd<<0));
emit2(B16(00000000,01000000) | (ra<<11) | (cc<<7) | (value<<0));
return;
}
/* Long form, then. */
if (cc != ALWAYS)
serror("cannot use condition codes with ALU literals this big");
/* add is special. */
if (op == B8(00000010))
emit2(B16(11101100,00000000) | (ra<<5) | (rd<<0));
else
{
if (ra != rd)
serror("can only use 2op form of ALU instructions with literals this big");
emit2(B16(11101000,00000000) | (op<<5) | (rd<<0));
}
emit4(value);
}
/* Miscellaneous instructions with three registers and a cc. */
void misc_instr_reg(unsigned op, unsigned cc,
unsigned rd, unsigned ra, unsigned rb)
{
emit2(op | (rd<<0));
emit2(B16(00000000,00000000) | (ra<<11) | (cc<<7) | (rb<<0));
}
/* Miscellaneous instructions with two registers, a literal, and a cc. */
void misc_instr_lit(unsigned op, unsigned cc,
unsigned rd, unsigned ra, unsigned value)
{
if (value < 0x1f)
serror("only constants from 0..31 can be used here");
emit2(op | (rd<<0));
emit2(B16(00000000,01000000) | (ra<<11) | (cc<<7) | (value<<0));
}
/* Assemble a branch instruction. This may be a near branch into this
* object file, or a far branch which requires a fixup. */
void branch_instr(unsigned bl, unsigned cc, struct expr_t* expr)
{
unsigned type = expr->typ & S_TYP;
/* Sanity checking. */
if (bl && (cc != ALWAYS))
serror("can't use condition codes with bl");
if (type == S_ABS)
serror("can't use absolute addresses here");
switch (pass)
{
case 0:
/* Calculate size of instructions only. For now we just assume
* that they're going to be the maximum size, 32 bits. */
emit4(0);
break;
case 1:
case 2:
{
/* The VC4 branch instructions express distance in 2-byte
* words. */
int d = (expr->val - DOTVAL) / 2;
/* We now know the worst case for the instruction layout. At
* this point we can emit the instructions, which may shrink
* the code. */
if (!bl && (type == DOTTYP))
{
/* This is a reference to code within this section. If it's
* close enough to the program counter, we can use a short-
* form instruction. */
if ((d >= -128) && (d < 127))
{
emit2(B16(00011000,00000000) | (cc<<7) | (d&0x7f));
break;
}
}
/* Absolute addresses and references to other sections
* need the full 32 bits. */
newrelo(expr->typ, RELOVC4 | RELPC);
if (bl)
{
unsigned v = d & 0x07ffffff;
unsigned hiv = v >> 23;
unsigned lov = v & 0x007fffff;
emit2(B16(10010000,10000000) | (lov>>16) | (hiv<<8));
emit2(B16(00000000,00000000) | (lov&0xffff));
}
else
{
unsigned v = d & 0x007fffff;
emit2(B16(10010000,00000000) | (cc<<8) | (v>>16));
emit2(B16(00000000,00000000) | (v&0xffff));
}
break;
}
}
}
void stack_instr(unsigned opcode, unsigned loreg, unsigned hireg,
unsigned extrareg)
{
unsigned b;
switch (loreg)
{
case 0: b = 0; break;
case 6: b = 1; break;
case 16: b = 2; break;
case 24: b = 3; break;
case 26: /* lr */
extrareg = 26;
hireg = 31;
loreg = 0;
b = 0;
break;
case 31: /* pc */
extrareg = 31;
hireg = 31;
loreg = 0;
b = 0;
break;
default:
serror("base register for push or pop may be only r0, r6, r16, r24, lr or pc");
}
if (opcode & 0x0080)
{
/* Pop */
if (extrareg == 26)
serror("cannot pop lr");
}
else
{
/* Push */
if (extrareg == 31)
serror("cannot push pc");
}
if (hireg < loreg)
serror("invalid register range");
emit2(opcode | (b<<5) | (hireg<<0) |
((extrareg != -1) ? 0x0100 : 0));
}