Sha256: 21d15284db34e1ea5932e2132c74f355613c77945efeb82a0f71c4607addd75f

Contents?: true

Size: 1.74 KB

Versions: 43

Compression:

Stored size: 1.74 KB

Contents

#!/usr/bin/env ruby

module Rex
module Arch

#
# Everything here is mostly stolen from vlad's perl sparc stuff
#
module Sparc

	#
	# Register number constants
	#
	RegisterNumber =
		{
			'g0' =>  0, 'g1' =>  1, 'g2' =>  2, 'g3' =>  3,
			'g4' =>  4, 'g5' =>  5, 'g6' =>  6, 'g7' =>  7,
			'o0' =>  8, 'o1' =>  9, 'o2' => 10, 'o3' => 11,
			'o4' => 12, 'o5' => 13, 'o6' => 14, 'o7' => 15,
			'l0' => 16, 'l1' => 17, 'l2' => 18, 'l3' => 19,
			'l4' => 20, 'l5' => 21, 'l6' => 22, 'l7' => 23,
			'i0' => 24, 'i1' => 25, 'i2' => 26, 'i3' => 27,
			'i4' => 28, 'i5' => 29, 'i6' => 30, 'i7' => 31,
			'sp' => 14, 'fp' => 30, 
		} # :nodoc:

	#
	# Encodes a SETHI instruction with the value 'constant' being put into 'dst' register
	#
	def self.sethi(constant, dst) 
		[ 
		  (RegisterNumber[dst] << 25) | 
		  (4 << 22) | 
		  (constant >> 10)
		].pack('N')
	end

	#
	# Encodes an OR instruction with the value 'constant' being OR'ed with the 'src' register into the 'dst' register
	#
	def self.ori(src, constant, dst)
		[ 
		  (2 << 30) | 
		  (RegisterNumber[dst] << 25) | 
		  (2 << 19) | 
		  (RegisterNumber[src] << 14) | 
		  (1 << 13) | 
		  (constant & 0x1fff)
		].pack('N')
	end

	#
	# Puts 'constant' into the 'dst' register using as few instructions as possible by checking the size of the value. 
	# XXX: signedness support
	#
	def self.set(constant, dst)
		if (constant <= 4095 and constant >= 0)
			ori('g0', constant, dst)
		elsif (constant & 0x3ff != 0)
			set_dword(constant, dst)
		else
			sethi(constant, dst)
		end
	end

	#
	# Puts 'constant' into the 'dst' register using both sethi and ori (necessary to use both uncessarily in some cases with encoders)
	#
	def self.set_dword(constant, dst)
		sethi(constant, dst) + ori(dst, constant & 0x3ff, dst)
	end

end

end end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
librex-0.0.65 lib/rex/arch/sparc.rb
librex-0.0.63 lib/rex/arch/sparc.rb
librex-0.0.54 lib/rex/arch/sparc.rb
librex-0.0.53 lib/rex/arch/sparc.rb
librex-0.0.52 lib/rex/arch/sparc.rb
librex-0.0.51 lib/rex/arch/sparc.rb
librex-0.0.50 lib/rex/arch/sparc.rb
librex-0.0.49 lib/rex/arch/sparc.rb
librex-0.0.48 lib/rex/arch/sparc.rb
librex-0.0.47 lib/rex/arch/sparc.rb
librex-0.0.46 lib/rex/arch/sparc.rb
librex-0.0.44 lib/rex/arch/sparc.rb
librex-0.0.43 lib/rex/arch/sparc.rb
librex-0.0.42 lib/rex/arch/sparc.rb
librex-0.0.41 lib/rex/arch/sparc.rb
librex-0.0.40 lib/rex/arch/sparc.rb
librex-0.0.39 lib/rex/arch/sparc.rb
librex-0.0.38 lib/rex/arch/sparc.rb
librex-0.0.37 lib/rex/arch/sparc.rb
librex-0.0.36 lib/rex/arch/sparc.rb