/* * Copyright (c) 2016 The University of Virginia * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer; * redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution; * neither the name of the copyright holders nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * Authors: Alec Roelke */ #include #include #include "insttest.h" #include "rv64m.h" int main() { using namespace std; using namespace insttest; // MUL expect(39285, []{return M::mul(873, 45);}, "mul"); expect(0, []{return M::mul(0x4000000000000000LL, 4);}, "mul, overflow"); // MULH expect(1, []{return M::mulh(0x4000000000000000LL, 4);}, "mulh"); expect(-1, []{return M::mulh(numeric_limits::min(), 2);}, "mulh, negative"); expect(0, []{return M::mulh(-1, -1);}, "mulh, all bits set"); // MULHSU expect(-1, []{return M::mulhsu(-1, -1);}, "mulhsu, all bits set"); expect(-1, []{return M::mulhsu(numeric_limits::min(), 2);},\ "mulhsu"); // MULHU expect(1, []{return M::mulhu(0x8000000000000000ULL, 2);}, "mulhu"); expect(0xFFFFFFFFFFFFFFFEULL, []{return M::mulhu(-1, -1);}, "mulhu, all bits set"); // DIV expect(-7, []{return M::div(-59, 8);}, "div"); expect(-1, []{return M::div(255, 0);}, "div/0"); expect(numeric_limits::min(), []{return M::div(numeric_limits::min(), -1);}, "div, overflow"); // DIVU expect(2305843009213693944LL, []{return M::divu(-59, 8);}, "divu"); expect(numeric_limits::max(), []{return M::divu(255, 0);}, "divu/0"); expect(0, []{return M::divu(numeric_limits::min(), -1);}, "divu, \"overflow\""); // REM expect(-3, []{return M::rem(-59, 8);}, "rem"); expect(255, []{return M::rem(255, 0);}, "rem/0"); expect(0, []{return M::rem(numeric_limits::min(), -1);}, "rem, overflow"); // REMU expect(5, []{return M::remu(-59, 8);}, "remu"); expect(255, []{return M::remu(255, 0);}, "remu/0"); expect(0x8000000000000000ULL, []{return M::remu(0x8000000000000000ULL, -1);}, "remu, \"overflow\""); // MULW expect(-100, []{return M::mulw(0x7FFFFFFF00000005LL, 0x80000000FFFFFFECLL);}, "mulw, truncate"); expect(0, []{return M::mulw(0x40000000, 4);}, "mulw, overflow"); // DIVW expect(-7, []{return M::divw(0x7FFFFFFFFFFFFFC5LL, 0xFFFFFFFF00000008LL);}, "divw, truncate"); expect(-1, []{return M::divw(65535, 0);}, "divw/0"); expect(numeric_limits::min(), []{return M::divw(numeric_limits::min(), -1);}, "divw, overflow"); // DIVUW expect(536870904, []{return M::divuw(0x7FFFFFFFFFFFFFC5LL, 0xFFFFFFFF00000008LL);}, "divuw, truncate"); expect(numeric_limits::max(), []{return M::divuw(65535, 0);}, "divuw/0"); expect(0, []{return M::divuw(numeric_limits::min(), -1);}, "divuw, \"overflow\""); expect(-1, []{return M::divuw(numeric_limits::max(), 1);}, "divuw, sign extend"); // REMW expect(-3, []{return M::remw(0x7FFFFFFFFFFFFFC5LL, 0xFFFFFFFF00000008LL);}, "remw, truncate"); expect(65535, []{return M::remw(65535, 0);}, "remw/0"); expect(0, []{return M::remw(numeric_limits::min(), -1);}, "remw, overflow"); // REMUW expect(5, []{return M::remuw(0x7FFFFFFFFFFFFFC5LL, 0xFFFFFFFF00000008LL);}, "remuw, truncate"); expect(65535, []{return M::remuw(65535, 0);}, "remuw/0"); expect(numeric_limits::min(), []{return M::remuw(numeric_limits::min(), -1);}, "remuw, \"overflow\""); expect(0xFFFFFFFF80000000, []{return M::remuw(0x80000000, 0xFFFFFFFF);}, "remuw, sign extend"); return 0; }