Searched defs:inv_u_field (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp922 static int inv_u_field(int x, int hi_bit, int lo_bit) { function in class:Assembler
933 return inv_u_field( ((x << sign_shift) >> sign_shift), hi_bit, lo_bit);
945 assert( inv_u_field(r, hi_bit, lo_bit) == x, "just checking");
953 static int inv_op( int x ) { return inv_u_field(x, 31, 30); }
954 static int inv_op2( int x ) { return inv_u_field(x, 24, 22); }
955 static int inv_op3( int x ) { return inv_u_field(x, 24, 19); }
956 static int inv_cond( int x ){ return inv_u_field(x, 28, 25); }
960 static Register inv_rd( int x ) { return as_Register(inv_u_field(x, 29, 25)); }
961 static Register inv_rs1( int x ) { return as_Register(inv_u_field(x, 18, 14)); }
962 static Register inv_rs2( int x ) { return as_Register(inv_u_field(
[all...]

Completed in 35 milliseconds