summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* [xcc, sim] replaced ble/bleu with bge/bgeuGravatar Andrew Waterman2010-09-13
| | | | This will simplify control logic (since every branch has a logical inverse)
* [opcodes] fixed tex table for ish,ishw typesGravatar Yunsup Lee2010-09-12
|
* [opcodes] change rsh to ish typesGravatar Yunsup Lee2010-09-12
|
* [opcodes] fixed verilog generation for ish,ishw typesGravatar Yunsup Lee2010-09-12
|
* [sim] renamed sllv to sll (same for other shifts)Gravatar Andrew Waterman2010-09-12
|
* [xcc, sim] moved shamt field and renamed shiftsGravatar Andrew Waterman2010-09-12
|
* [xcc, sim] branches now are next-PC-based, not PC-basedGravatar Andrew Waterman2010-09-12
|
* add -verilog optionGravatar Yunsup Lee2010-09-12
|
* [sim, xcc] Added mffh.d/mtflh.d; fixed FP ABI for 32-bitGravatar Andrew Waterman2010-09-10
|
* [opcodes,xcc,sim] mffh.d,mtfh.d added (broken commit)Gravatar Yunsup Lee2010-09-10
|
* [opcodes] latex table generation added, new opcode mappingGravatar Yunsup Lee2010-09-10
|
* [opcodes,sim,xcc] move opcodes for 3 source instructionsGravatar Yunsup Lee2010-09-09
|
* Revert "[xcc, sim] added slei/sleui in lieu of slti/sltiu"Gravatar Andrew Waterman2010-09-09
| | | | | | | | | | | This reverts commit bf5406d4df625678bc6ec20ce1d48541541dba54. We found a clever way to efficiently implement slti/sltiu despite the reversed operands. The trick is because of the following fact: (a < b) === !(b <= a) === !(b-1 < a) So just turn off the carry-in when doing the subtraction for the comparison.
* [xcc, sim] added slei/sleui in lieu of slti/sltiuGravatar Andrew Waterman2010-09-07
| | | | | Rationale was that since we have the datapath for rc = (ra < rb), it's straightforward to also add rc = !(imm < rb) = (rb <= imm).
* [sim, xcc] bthread threading model exposed; insn encoding cleaned upGravatar Andrew Waterman2010-09-06
|
* [sim] added atomic memory operationsGravatar Andrew Waterman2010-09-06
|
* [xcc,sim] added fused multiply-add and its cousinsGravatar Andrew Waterman2010-08-22
|
* [xcc,sim] Eliminated slori instructionGravatar Andrew Waterman2010-08-22
| | | | | | the "li" macro in RISC-V assembly isn't as efficient anymore for 64b constants, and "la" doesn't work for 64b addresses with ".set noat". But it's worth it to remove an ugly instruction.
* [xcc,sim] implement FP using softfloatGravatar Andrew Waterman2010-08-09
| | | | The intersection of the Hauser FP and MIPS FP is implemented.
* [sim,xcc] Added first few Hauser FP insns (sign-injection)Gravatar Andrew Waterman2010-08-05
| | | | Also updated FPmove test case to test negation and moving between FP regs
* [xcc] Removed ctc1, cfc1 instructions; added fp move test caseGravatar Andrew Waterman2010-08-04
|
* [xcc,pk,sim] Added first part of FP supportGravatar Andrew Waterman2010-08-04
| | | | In particular, FP loads, stores, and moves now work.
* [sim,xcc] removed sll32/srl32/sra32 opcodesGravatar Andrew Waterman2010-08-03
| | | | | These instructions handled static shift amounts >= 32. Since we have a 6-bit shift amount field, these opcodes are no longer necessary.
* [pk,sim,xcc] Renamed instructions to RISC-V specGravatar Andrew Waterman2010-08-03
| | | | | | | All word-sized arithmetic operations are now postfixed with 'w', and all double-word-sized arithmetic operations are no longer prefixed with 'd'. mtc0/mfc0 are removed and replaced with mfpcr/mtpcr/mwfpcr/mwtpcr.
* [sim,xcc] Changed instruction format to RISC-VGravatar Andrew Waterman2010-07-28
| | | | | Massive changes to gcc, binutils to support new instruction encoding. Simulator reflects these changes.
* Reorganized directory structureGravatar Andrew Waterman2010-07-18
Moved cross-compiler to /xcc/ rather than / Added ISA sim in /sim/ Added Proxy Kernel in /pk/ (to be cleaned up) Added opcode map to /opcodes/ (ditto) Added documentation to /doc/