rubyx/lib/register/padding.rb
Torsten Ruger c87682b77f fix padding
used to be that type and layout were hidden
now type is gone and layout is an explicit instance, so 0 overhead
2015-11-04 10:34:03 +02:00

20 lines
365 B
Ruby

module Padding
# objects only come in lengths of multiple of 8 words
def padded len
a = 32 * (1 + (len - 1)/32 )
#puts "#{a} for #{len}"
a
end
def padded_words words
padded(words*4) # 4 == word length, a constant waiting for a home
end
def padding_for length
pad = padded(length) - length # for header, layout
pad
end
end