Lines Matching refs:high_bits
366 static void analyze_64bit_constant(u32 high_bits, u32 low_bits, in analyze_64bit_constant() argument
377 if ((highest_bit_set == -1) && ((high_bits >> (32 - i - 1)) & 1)) in analyze_64bit_constant()
384 if (lowest_bit_set == -1 && ((high_bits >> i) & 1)) in analyze_64bit_constant()
399 if ((high_bits & (1 << (i - 32))) != 0) in analyze_64bit_constant()
410 static unsigned long create_simple_focus_bits(unsigned long high_bits, in create_simple_focus_bits() argument
418 hi = ((high_bits << (32 - lowest_bit_set)) << shift); in create_simple_focus_bits()
421 hi = ((high_bits >> (lowest_bit_set - 32)) << shift); in create_simple_focus_bits()
426 static bool const64_is_2insns(unsigned long high_bits, in const64_is_2insns() argument
431 if (high_bits == 0 || high_bits == 0xffffffff) in const64_is_2insns()
434 analyze_64bit_constant(high_bits, low_bits, in const64_is_2insns()
448 static void sparc_emit_set_const64_quick2(unsigned long high_bits, in sparc_emit_set_const64_quick2() argument
453 emit_loadimm32(high_bits, dest, ctx); in sparc_emit_set_const64_quick2()
470 u32 high_bits = (K >> 32); in emit_loadimm64() local
475 if (high_bits == 0xffffffff && (low_bits & 0x80000000)) in emit_loadimm64()
477 if (high_bits == 0x00000000) in emit_loadimm64()
480 analyze_64bit_constant(high_bits, low_bits, &highest_bit_set, in emit_loadimm64()
499 create_simple_focus_bits(high_bits, low_bits, in emit_loadimm64()
521 create_simple_focus_bits(high_bits, low_bits, in emit_loadimm64()
538 emit_loadimm32(high_bits, dest, ctx); in emit_loadimm64()
546 if (const64_is_2insns((~high_bits) & 0xffffffff, in emit_loadimm64()
553 if ((((~high_bits) & 0xffffffff) == 0 && in emit_loadimm64()
555 (((~high_bits) & 0xffffffff) == 0xffffffff && in emit_loadimm64()
560 (~high_bits & 0xffffffff) == 0)) { in emit_loadimm64()
569 (((unsigned long)((~high_bits) & 0xffffffff))<<32); in emit_loadimm64()
585 create_simple_focus_bits(high_bits, low_bits, in emit_loadimm64()
602 sparc_emit_set_const64_quick2(high_bits, low_bits, in emit_loadimm64()
610 emit_loadimm32(high_bits, tmp, ctx); in emit_loadimm64()