xgo/internal/internal.go

58 lines
1.3 KiB
Go
Raw Normal View History

2019-12-20 22:40:38 +03:00
package internal
2019-01-09 10:17:42 +03:00
2019-12-20 22:40:38 +03:00
import "fmt"
2019-01-09 10:17:42 +03:00
// MakeInstruction returns a bytecode for an opcode and the operands.
2019-01-09 10:17:42 +03:00
func MakeInstruction(opcode Opcode, operands ...int) []byte {
numOperands := OpcodeOperands[opcode]
2019-01-09 10:17:42 +03:00
totalLen := 1
for _, w := range numOperands {
2019-01-09 10:17:42 +03:00
totalLen += w
}
2019-04-11 07:39:19 +03:00
instruction := make([]byte, totalLen)
2019-12-20 22:40:38 +03:00
instruction[0] = opcode
2019-01-09 10:17:42 +03:00
offset := 1
for i, o := range operands {
width := numOperands[i]
2019-01-09 10:17:42 +03:00
switch width {
case 1:
instruction[offset] = byte(o)
case 2:
n := uint16(o)
instruction[offset] = byte(n >> 8)
instruction[offset+1] = byte(n)
}
offset += width
}
return instruction
}
2019-12-20 22:40:38 +03:00
// FormatInstructions returns string representation of bytecode instructions.
2019-01-09 10:17:42 +03:00
func FormatInstructions(b []byte, posOffset int) []string {
var out []string
i := 0
for i < len(b) {
2019-12-20 22:40:38 +03:00
numOperands := OpcodeOperands[b[i]]
operands, read := ReadOperands(numOperands, b[i+1:])
2019-01-09 10:17:42 +03:00
switch len(numOperands) {
2019-01-09 10:17:42 +03:00
case 0:
2019-12-20 22:40:38 +03:00
out = append(out, fmt.Sprintf("%04d %-7s",
posOffset+i, OpcodeNames[b[i]]))
2019-01-09 10:17:42 +03:00
case 1:
2019-12-20 22:40:38 +03:00
out = append(out, fmt.Sprintf("%04d %-7s %-5d",
posOffset+i, OpcodeNames[b[i]], operands[0]))
2019-01-09 10:17:42 +03:00
case 2:
2019-12-20 22:40:38 +03:00
out = append(out, fmt.Sprintf("%04d %-7s %-5d %-5d",
posOffset+i, OpcodeNames[b[i]],
operands[0], operands[1]))
2019-01-09 10:17:42 +03:00
}
i += 1 + read
}
return out
}