remove memory from sod but keep layout
This commit is contained in:
parent
87143091ca
commit
a2bfaf1b2c
@ -18,6 +18,13 @@ require "virtual/passes/get_implementation"
|
|||||||
require "virtual/passes/enter_implementation"
|
require "virtual/passes/enter_implementation"
|
||||||
require "virtual/passes/frame_implementation"
|
require "virtual/passes/frame_implementation"
|
||||||
|
|
||||||
|
Sof::Volotile.add(Parfait::Object , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Method , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Class , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Layout , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Space , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Frame , [:memory])
|
||||||
|
Sof::Volotile.add(Parfait::Message , [:memory])
|
||||||
Sof::Volotile.add(Parfait::BinaryCode , [:memory])
|
Sof::Volotile.add(Parfait::BinaryCode , [:memory])
|
||||||
Sof::Volotile.add(Virtual::Block , [:method])
|
Sof::Volotile.add(Virtual::Block , [:method])
|
||||||
Sof::Volotile.add(Virtual::CompiledMethodInfo , [:current])
|
Sof::Volotile.add(Virtual::CompiledMethodInfo , [:current])
|
||||||
|
@ -109,6 +109,10 @@ module Parfait
|
|||||||
def internal_object_set(index , value)
|
def internal_object_set(index , value)
|
||||||
raise "failed init for #{self.class}" unless @memory
|
raise "failed init for #{self.class}" unless @memory
|
||||||
@memory[index] = value
|
@memory[index] = value
|
||||||
|
#shaddowing layout so we can ignore memory in Sof
|
||||||
|
if(index == LAYOUT_INDEX)
|
||||||
|
@layout = value
|
||||||
|
end
|
||||||
end
|
end
|
||||||
def internal_object_grow(length)
|
def internal_object_grow(length)
|
||||||
old_length = internal_object_length()
|
old_length = internal_object_length()
|
||||||
|
Loading…
Reference in New Issue
Block a user