blob: c1977d5f3e5075a4c935b5ee494cb7b4eae329ca [file] [log] [blame]
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +00001/*
Anthony Barbier5f707732018-07-03 16:22:02 +01002 * Copyright (c) 2017 ARM Limited.
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +00003 *
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)
Anthony Barbier5f707732018-07-03 16:22:02 +010028#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
Anthony Barbier5f707732018-07-03 16:22:02 +010033inline int iceildiv(const int a, const int b) {
34 return (a + b - 1) / b;
Pablo Telloeb82fd22018-02-23 13:43:50 +000035}
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000036
Pablo Telloeb82fd22018-02-23 13:43:50 +000037template <typename T>
Anthony Barbier5f707732018-07-03 16:22:02 +010038inline T roundup(const T a, const T b) {
39 T rem = a % b;
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000040
Anthony Barbier5f707732018-07-03 16:22:02 +010041 if (rem) {
42 return a + b - rem;
43 } else {
44 return a;
45 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000046}