Switched to pointer receivers for values

This commit is contained in:
2025-03-01 18:38:00 +01:00
parent 8ff6faa310
commit 4428b09de2
17 changed files with 62 additions and 62 deletions

View File

@ -8,10 +8,10 @@ type Label struct {
Label string
}
func (v Label) String() string {
func (v *Label) String() string {
return "Label"
}
func (v Label) Type() types.Type {
func (v *Label) Type() types.Type {
return v.Typ
}

View File

@ -11,10 +11,10 @@ type Memory struct {
Memory asm.Memory
}
func (v Memory) String() string {
func (v *Memory) String() string {
return "Memory"
}
func (v Memory) Type() types.Type {
func (v *Memory) Type() types.Type {
return v.Typ
}

View File

@ -8,10 +8,10 @@ type Number struct {
Number int
}
func (v Number) String() string {
func (v *Number) String() string {
return "Number"
}
func (v Number) Type() types.Type {
func (v *Number) Type() types.Type {
return v.Typ
}

View File

@ -12,10 +12,24 @@ type Register struct {
Register cpu.Register
}
func (v Register) String() string {
func (v *Register) String() string {
return "Register"
}
func (v Register) Type() types.Type {
func (v *Register) Type() types.Type {
return v.Typ
}
// IsAlive returns true if the register value is still alive.
func (v *Register) IsAlive() bool {
return v.Alive > 0
}
// Use reduces the lifetime counter by one.
func (v *Register) Use() {
if v.Alive == 0 {
panic("incorrect number of value use calls")
}
v.Alive--
}

View File

@ -9,17 +9,3 @@ type Value interface {
String() string
Type() types.Type
}
// IsAlive returns true if the register value is still alive.
func (v *Register) IsAlive() bool {
return v.Alive > 0
}
// Use reduces the lifetime counter by one.
func (v *Register) Use() {
if v.Alive == 0 {
panic("incorrect number of value use calls")
}
v.Alive--
}