word32ror.js 955 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

var stdlib = {};
var foreign = {};
var heap = new ArrayBuffer(64 * 1024);

var rol = (function Module(stdlib, foreign, heap) {
  "use asm";
  function rol(x, y) {
    x = x | 0;
    y = y | 0;
14
    return (x << y) | (x >>> (32 - y)) | 0;
15 16 17 18 19 20 21 22
  }
  return { rol: rol };
})(stdlib, foreign, heap).rol;

assertEquals(10, rol(10, 0));
assertEquals(2, rol(1, 1));
assertEquals(0x40000000, rol(1, 30));
assertEquals(-0x80000000, rol(1, 31));
23 24 25 26 27 28

var ror = (function Module(stdlib, foreign, heap) {
  "use asm";
  function ror(x, y) {
    x = x | 0;
    y = y | 0;
29
    return (x << (32 - y)) | (x >>> y) | 0;
30 31 32 33 34 35 36 37
  }
  return { ror: ror };
})(stdlib, foreign, heap).ror;

assertEquals(10, ror(10, 0));
assertEquals(-0x80000000, ror(1, 1));
assertEquals(0x40000000, ror(1, 2));
assertEquals(2, ror(1, 31));