fix word implementation and tests
much better, though wasteful implementation breaks a few tests, but ploughing on first
This commit is contained in:
@ -21,40 +21,41 @@ module FakeMem
|
||||
end
|
||||
end
|
||||
|
||||
class Parfait::Object
|
||||
include FakeMem
|
||||
def self.new_object *args
|
||||
#puts "I am #{self}"
|
||||
object = self.new(*args)
|
||||
object
|
||||
module Parfait
|
||||
class Object
|
||||
include FakeMem
|
||||
def self.new_object *args
|
||||
#puts "I am #{self}"
|
||||
object = self.new(*args)
|
||||
object
|
||||
end
|
||||
def internal_object_length
|
||||
@memory.length
|
||||
end
|
||||
def internal_object_get(index)
|
||||
@memory[index]
|
||||
end
|
||||
def internal_object_set(index , value)
|
||||
@memory[index] = value
|
||||
end
|
||||
def internal_object_grow(index)
|
||||
@memory[index] = nil
|
||||
end
|
||||
end
|
||||
def internal_object_length
|
||||
@memory.length
|
||||
class Parfait::Class
|
||||
end
|
||||
def internal_object_get(index)
|
||||
@memory[index]
|
||||
class Parfait::List
|
||||
def length
|
||||
internal_object_length
|
||||
end
|
||||
end
|
||||
def internal_object_set(index , value)
|
||||
@memory[index] = value
|
||||
end
|
||||
def internal_object_grow(index)
|
||||
@memory[index] = nil
|
||||
end
|
||||
end
|
||||
class Parfait::Class
|
||||
end
|
||||
class Parfait::List
|
||||
def length
|
||||
internal_object_length
|
||||
end
|
||||
end
|
||||
|
||||
# Functions to generate parfait objects
|
||||
String.class_eval do
|
||||
def to_word
|
||||
word = Parfait::Word.new( self.length )
|
||||
codepoints.each_with_index do |code , index |
|
||||
word.set_char(index , char)
|
||||
# Functions to generate parfait objects
|
||||
def self.new_word( string )
|
||||
string = string.to_s if string.is_a? Symbol
|
||||
word = Parfait::Word.new( string.length )
|
||||
string.codepoints.each_with_index do |code , index |
|
||||
word.set_char(index , code)
|
||||
end
|
||||
word
|
||||
end
|
||||
|
@ -7,20 +7,32 @@ module Parfait
|
||||
#
|
||||
# Words are constant, maybe like js strings, ruby symbols
|
||||
# Words are short, but may have spaces
|
||||
|
||||
# big TODO , this has NO encoding, a char takes a machine word. Go fix.
|
||||
class Word < Object
|
||||
# initialize with length. For now we try to keep all non-parfait (including String) out
|
||||
# Virtual provides methods to create Parfait objects from ruby
|
||||
def initialize length
|
||||
super
|
||||
set_length( length , 32 )
|
||||
def initialize len
|
||||
super()
|
||||
raise "Must init with int, not #{len.class}" unless len.kind_of? Fixnum
|
||||
raise "Must init with positive, not #{len}" if len < 0
|
||||
set_length( len - 1, 32 ) unless len == 0
|
||||
end
|
||||
|
||||
def length()
|
||||
obj_len = internal_object_length
|
||||
return obj_len
|
||||
end
|
||||
|
||||
def empty?
|
||||
return self.length == 0
|
||||
end
|
||||
|
||||
def set_length(len , fill_char)
|
||||
return if len < 0
|
||||
counter = self.length()
|
||||
return if len >= counter
|
||||
internal_object_grow( ( len + 1 ) / 2)
|
||||
return if counter >= len
|
||||
internal_object_grow( len )
|
||||
while( counter < len)
|
||||
set_char( counter , fill_char)
|
||||
counter = counter + 1
|
||||
@ -28,36 +40,25 @@ module Parfait
|
||||
end
|
||||
|
||||
def set_char at , char
|
||||
raise "char out of range #{char}" if (char < 0) or (char > 65000)
|
||||
raise "char not fixnum #{char}" unless char.kind_of? Fixnum
|
||||
index = range_correct_index(at)
|
||||
was = internal_object_get(index / 2 )
|
||||
if index % 2
|
||||
char = (char << 16) + (was & 0xFFFF)
|
||||
else
|
||||
char = char + (was & 0xFFFF0000)
|
||||
end
|
||||
internal_object_set( index / 2 , char )
|
||||
internal_object_set( index , char )
|
||||
end
|
||||
|
||||
def get_char at
|
||||
index = range_correct_index(at)
|
||||
whole = internal_object_get(index / 2 )
|
||||
if index % 2
|
||||
char = whole >> 16
|
||||
else
|
||||
char = whole & 0xFFFF
|
||||
end
|
||||
return char
|
||||
return internal_object_get(index)
|
||||
end
|
||||
|
||||
def range_correct_index at
|
||||
index = at
|
||||
index = self.length + at if at < 0
|
||||
raise "index out of range #{at}" if index < 0
|
||||
raise "index out of bounds #{at} > #{self.length}" if (index < 0) or (index > self.length)
|
||||
return index
|
||||
end
|
||||
|
||||
def == other
|
||||
return false if other.class != self.class
|
||||
return false if other.length != self.length
|
||||
len = self.length
|
||||
while len
|
||||
@ -66,7 +67,7 @@ module Parfait
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
|
||||
def result= value
|
||||
raise "called"
|
||||
class_for(MoveInstruction).new(value , self , :opcode => :mov)
|
||||
|
@ -71,7 +71,7 @@ module Virtual
|
||||
|
||||
# attr_reader :string
|
||||
def self.compile_string expression , method
|
||||
value = Parfait::Word.new(expression.string)
|
||||
value = Parfait.new_word(expression.string)
|
||||
to = Return.new(Reference , value)
|
||||
Machine.instance.space.add_object value
|
||||
method.add_code Set.new( to , value )
|
||||
|
@ -8,7 +8,7 @@ module Virtual
|
||||
me = Compiler.compile( expession.receiver , method )
|
||||
method.add_code NewMessage.new
|
||||
method.add_code Set.new(NewSelf.new(me.type), me)
|
||||
method.add_code Set.new(NewName.new(), Parfait::Word.new(expession.name))
|
||||
method.add_code Set.new(NewName.new(), Parfait.new_word(expession.name))
|
||||
compiled_args = []
|
||||
expession.args.each_with_index do |arg , i|
|
||||
#compile in the running method, ie before passing control
|
||||
|
@ -26,7 +26,7 @@ module Virtual
|
||||
# compile the false block
|
||||
method.current false_block
|
||||
expression.if_false.each do |part|
|
||||
puts "compiling in if false #{part}"
|
||||
#puts "compiling in if false #{part}"
|
||||
last = Compiler.compile(part,method )
|
||||
raise part.inspect if last.nil?
|
||||
end
|
||||
|
Reference in New Issue
Block a user