blob: 6c5b92ae8fc4f42636e71d516b916293804c3195 [file] [log] [blame]
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +00001/*
2 * Copyright (c) 2017-2018 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Pablo Telloeb82fd22018-02-23 13:43:50 +000024
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000025#pragma once
26
Pablo Telloeb82fd22018-02-23 13:43:50 +000027// Macro for unreachable code (e.g. impossible default cases on switch)
28#define UNREACHABLE(why) __builtin_unreachable()
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000029
Pablo Telloeb82fd22018-02-23 13:43:50 +000030// Paranoid option for the above with assert
31// #define UNREACHABLE(why) assert(0 && why)
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000032
Pablo Telloeb82fd22018-02-23 13:43:50 +000033inline int iceildiv(const int a, const int b)
34{
35 return (a + b - 1) / b;
36}
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000037
Pablo Telloeb82fd22018-02-23 13:43:50 +000038template <typename T>
39inline T roundup(const T a, const T b)
40{
41 T rem = a % b;
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000042
Pablo Telloeb82fd22018-02-23 13:43:50 +000043 if(rem)
44 {
45 return a + b - rem;
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000046 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000047 else
48 {
49 return a;
50 }
51}