Documentation
¶
Overview ¶
machine description of iris1
move related operations
Index ¶
- Constants
- func InvalidRegister(value string) error
- func NewError(code, value uint) error
- func RegistrationName() string
- type ArithmeticOp
- type Core
- func (this *Core) AdvanceProgramCounter() error
- func (this *Core) Call(addr Word) error
- func (this *Core) CallMemory(address Word) Word
- func (this *Core) CodeMemory(address Word) Instruction
- func (this *Core) CurrentInstruction() Instruction
- func (this *Core) DataMemory(address Word) Word
- func (this *Core) Dispatch(inst Instruction) error
- func (this *Core) Dump(output chan<- byte) error
- func (this *Core) ExecuteCurrentInstruction() error
- func (this *Core) GetDebugStatus() bool
- func (this *Core) HaltExecution()
- func (this *Core) InstallExecutionUnit(group byte, fn ExecutionUnit) error
- func (this *Core) InstallProgram(input <-chan byte) error
- func (this *Core) InstallSystemCall(offset byte, fn SystemCall) error
- func (this *Core) InstructionAddress() Word
- func (this *Core) Invoke(inst *DecodedInstruction) error
- func (this *Core) IoMemory(address Word) (Word, error)
- func (this *Core) MicrocodeMemory(address Word) Word
- func (this *Core) NextInstructionAddress() Word
- func (this *Core) Peek() Word
- func (this *Core) Pop() Word
- func (this *Core) PredicateValue(index byte) bool
- func (this *Core) Push(value Word)
- func (this *Core) Register(index byte) Word
- func (this *Core) RegisterIoDevice(dev IoDevice) error
- func (this *Core) ResumeExecution()
- func (this *Core) Return() Word
- func (this *Core) Run() error
- func (this *Core) SetCallMemory(address, value Word) error
- func (this *Core) SetCodeMemory(address Word, value Instruction) error
- func (this *Core) SetDataMemory(address, value Word) error
- func (this *Core) SetDebug(_ bool)
- func (this *Core) SetIoMemory(address, value Word) error
- func (this *Core) SetMicrocodeMemory(address, value Word) error
- func (this *Core) SetRegister(index byte, value Word) error
- func (this *Core) SetStackMemory(address, value Word) error
- func (this *Core) ShouldExecute() bool
- func (this *Core) Shutdown() error
- func (this *Core) StackMemory(address Word) Word
- func (this *Core) Startup() error
- func (this *Core) SystemCall(inst *DecodedInstruction) error
- func (this *Core) TerminateExecution() bool
- type DecodedInstruction
- type Dword
- type ExecutionUnit
- type Instruction
- type IoDevice
- type IrisError
- type MoveOp
- type SystemCall
- type Word
Constants ¶
View Source
const ( // arithmetic operations ArithmeticOpAdd = iota ArithmeticOpSub ArithmeticOpMul ArithmeticOpDiv ArithmeticOpRem ArithmeticOpShiftLeft ArithmeticOpShiftRight ArithmeticOpBinaryAnd ArithmeticOpBinaryOr ArithmeticOpBinaryNot ArithmeticOpBinaryXor ArithmeticOpIncrement ArithmeticOpDecrement ArithmeticOpDouble ArithmeticOpHalve ArithmeticOpAddImmediate ArithmeticOpSubImmediate ArithmeticOpMulImmediate ArithmeticOpDivImmediate ArithmeticOpRemImmediate ArithmeticOpShiftLeftImmediate ArithmeticOpShiftRightImmediate // always last ArithmeticOpCount )
View Source
const ( // Compare operations CompareOpEq = iota CompareOpEqAnd CompareOpEqOr CompareOpEqXor CompareOpNeq CompareOpNeqAnd CompareOpNeqOr CompareOpNeqXor CompareOpLessThan CompareOpLessThanAnd CompareOpLessThanOr CompareOpLessThanXor CompareOpGreaterThan CompareOpGreaterThanAnd CompareOpGreaterThanOr CompareOpGreaterThanXor CompareOpLessThanOrEqualTo CompareOpLessThanOrEqualToAnd CompareOpLessThanOrEqualToOr CompareOpLessThanOrEqualToXor CompareOpGreaterThanOrEqualTo CompareOpGreaterThanOrEqualToAnd CompareOpGreaterThanOrEqualToOr CompareOpGreaterThanOrEqualToXor CompareOpCount )
View Source
const ( CombineNone = iota CombineAnd CombineOr CombineXor CombineError )
View Source
const ( CompareBodyEq = iota CompareBodyNeq CompareBodyLt CompareBodyGt CompareBodyLe CompareBodyGe CompareBodyError )
View Source
const ( RegisterCount = 256 MemorySize = 65536 MajorOperationGroupCount = 8 SystemCallCount = 256 )
View Source
const ( // reserved registers FalseRegister = iota TrueRegister InstructionPointer StackPointer PredicateRegister CallPointer UserRegisterBegin )
View Source
const ( // Error codes ErrorNone = iota ErrorPanic ErrorGetRegisterOutOfRange ErrorPutRegisterOutOfRange ErrorInvalidInstructionGroupProvided ErrorInvalidArithmeticOperation ErrorInvalidMoveOperation ErrorInvalidJumpOperation ErrorInvalidCompareOperation ErrorInvalidMiscOperation ErrorInvalidSystemCommand ErrorWriteToFalseRegister ErrorWriteToTrueRegister ErrorEncodeByteOutOfRange ErrorGroupValueOutOfRange ErrorOpValueOutOfRange )
View Source
const ( // Instruction groups InstructionGroupArithmetic = iota InstructionGroupMove InstructionGroupJump InstructionGroupCompare InstructionGroupMisc )
View Source
const ( // Misc operations MiscOpSystemCall = iota NumberOfMiscOperations )
View Source
const ( // Move Operations MoveOpMove = iota MoveOpSwap MoveOpSet MoveOpLoad MoveOpStore MoveOpPush MoveOpPop MoveOpPeek MoveOpLoadCode MoveOpStoreCode // always last MoveOpCount )
View Source
const ( // System commands SystemCallTerminate = iota SystemCallPanic SystemCallPutc NumberOfSystemCalls )
View Source
const (
DivideByZeroMessage = "Divide by zero error!"
)
Variables ¶
This section is empty.
Functions ¶
func InvalidRegister ¶
func RegistrationName ¶
func RegistrationName() string
Types ¶
type ArithmeticOp ¶
type Core ¶
type Core struct {
// contains filtered or unexported fields
}
func (*Core) AdvanceProgramCounter ¶
func (*Core) CallMemory ¶
func (*Core) CodeMemory ¶
func (this *Core) CodeMemory(address Word) Instruction
func (*Core) CurrentInstruction ¶
func (this *Core) CurrentInstruction() Instruction
func (*Core) DataMemory ¶
func (*Core) Dispatch ¶
func (this *Core) Dispatch(inst Instruction) error
func (*Core) ExecuteCurrentInstruction ¶
func (*Core) GetDebugStatus ¶
func (*Core) HaltExecution ¶
func (this *Core) HaltExecution()
func (*Core) InstallExecutionUnit ¶
func (this *Core) InstallExecutionUnit(group byte, fn ExecutionUnit) error
func (*Core) InstallProgram ¶
func (*Core) InstallSystemCall ¶
func (this *Core) InstallSystemCall(offset byte, fn SystemCall) error
func (*Core) InstructionAddress ¶
func (*Core) Invoke ¶
func (this *Core) Invoke(inst *DecodedInstruction) error
func (*Core) MicrocodeMemory ¶
func (*Core) NextInstructionAddress ¶
func (*Core) PredicateValue ¶
func (*Core) RegisterIoDevice ¶
func (*Core) ResumeExecution ¶
func (this *Core) ResumeExecution()
func (*Core) SetCallMemory ¶
func (*Core) SetCodeMemory ¶
func (this *Core) SetCodeMemory(address Word, value Instruction) error
func (*Core) SetDataMemory ¶
func (*Core) SetIoMemory ¶
func (*Core) SetMicrocodeMemory ¶
func (*Core) SetStackMemory ¶
func (*Core) ShouldExecute ¶
func (*Core) StackMemory ¶
func (*Core) SystemCall ¶
func (this *Core) SystemCall(inst *DecodedInstruction) error
func (*Core) TerminateExecution ¶
type DecodedInstruction ¶
func NewDecodedInstruction ¶
func NewDecodedInstruction(group, op, data0, data1, data2 byte) (*DecodedInstruction, error)
func NewDecodedInstructionImmediate ¶
func NewDecodedInstructionImmediate(group, op, data0 byte, imm Word) (*DecodedInstruction, error)
func (*DecodedInstruction) Encode ¶
func (this *DecodedInstruction) Encode() *Instruction
func (*DecodedInstruction) Immediate ¶
func (this *DecodedInstruction) Immediate() Word
func (*DecodedInstruction) SetImmediate ¶
func (this *DecodedInstruction) SetImmediate(value Word)
type ExecutionUnit ¶
type ExecutionUnit func(*Core, *DecodedInstruction) error
type Instruction ¶
type Instruction Dword
func (Instruction) Decode ¶
func (this Instruction) Decode() (*DecodedInstruction, error)
type MoveOp ¶
type MoveOp func(*Core, *DecodedInstruction) error
type SystemCall ¶
type SystemCall ExecutionUnit
Click to show internal directories.
Click to hide internal directories.