Split out the loader from the VM

This commit is contained in:
Ian Gulliver
2021-11-18 19:56:58 -10:00
parent 941939da83
commit 4332632c77
4 changed files with 66 additions and 52 deletions

View File

@@ -1,10 +1,5 @@
package vm
import "bytes"
import "github.com/lunixbochs/struc"
import "github.com/pkg/errors"
type Instruction struct {
OpCode OpCodeType
Reserved [4]byte
@@ -13,33 +8,3 @@ type Instruction struct {
opHandler opHandler `struc:"skip"`
}
const instructionBytes = 32
func NewInstructionFromByteCode(byteCode []byte) (*Instruction, error) {
instr := &Instruction{}
reader := bytes.NewReader(byteCode)
err := struc.Unpack(reader, instr)
if err != nil {
return nil, errors.Wrap(err, "Error decoding instruction")
}
return instr, nil
}
func NewInstructionsFromByteCode(byteCode []byte) ([]*Instruction, error) {
instrs := []*Instruction{}
for start := 0; start < len(byteCode); start += instructionBytes {
chunk := byteCode[start : start+instructionBytes]
instr, err := NewInstructionFromByteCode(chunk)
if err != nil {
return nil, errors.Wrapf(err, "At byte offset %d", start)
}
instrs = append(instrs, instr)
}
return instrs, nil
}