(low, high, bits)
| 397735 | return (high >>> (bits - 32))|0; |
| 397736 | } |
| 397737 | function _bitshift64Shl(low, high, bits) { |
| 397738 | low = low|0; high = high|0; bits = bits|0; |
| 397739 | var ander = 0; |
| 397740 | if ((bits|0) < 32) { |
| 397741 | ander = ((1 << bits) - 1)|0; |
| 397742 | tempRet0 = (high << bits) | ((low&(ander << (32 - bits))) >>> (32 - bits)); |
| 397743 | return low << bits; |
| 397744 | } |
| 397745 | tempRet0 = low << (bits - 32); |
| 397746 | return 0; |
| 397747 | } |
| 397748 | function _llvm_bswap_i32(x) { |
| 397749 | x = x|0; |
| 397750 | return (((x&0xff)<<24) | (((x>>8)&0xff)<<16) | (((x>>16)&0xff)<<8) | (x>>>24))|0; |
no outgoing calls
no test coverage detected
searching dependent graphs…