HAL
v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
defines.h
Go to the documentation of this file.
1
// MIT License
2
//
3
// Copyright (c) 2019 Ruhr University Bochum, Chair for Embedded Security. All Rights reserved.
4
// Copyright (c) 2019 Marc Fyrbiak, Sebastian Wallat, Max Hoffmann ("ORIGINAL AUTHORS"). All rights reserved.
5
// Copyright (c) 2021 Max Planck Institute for Security and Privacy. All Rights reserved.
6
// Copyright (c) 2021 Jörn Langheinrich, Julian Speith, Nils Albartus, René Walendy, Simon Klix ("ORIGINAL AUTHORS"). All Rights reserved.
7
//
8
// Permission is hereby granted, free of charge, to any person obtaining a copy
9
// of this software and associated documentation files (the "Software"), to deal
10
// in the Software without restriction, including without limitation the rights
11
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
// copies of the Software, and to permit persons to whom the Software is
13
// furnished to do so, subject to the following conditions:
14
//
15
// The above copyright notice and this permission notice shall be included in all
16
// copies or substantial portions of the Software.
17
//
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
// SOFTWARE.
25
26
#pragma once
27
28
#include <filesystem>
29
30
#include <inttypes.h>
31
#include <stdexcept>
32
#include <stdlib.h>
33
34
using
i8
= int8_t;
35
using
i16
= int16_t;
36
using
i32
= int32_t;
37
using
i64
= int64_t;
38
39
using
u8
= uint8_t;
40
using
u16
= uint16_t;
41
using
u32
= uint32_t;
42
using
u64
= uint64_t;
43
44
namespace
hal
45
{
46
typedef
std::error_code
error_code
;
47
}
// namespace hal
48
49
#define UNUSED(expr) (void)expr
50
51
#ifdef _WIN32
52
#include "
hal_core/arch/arch_win.h
"
53
#elif __APPLE__ && __MACH__
54
#include "
hal_core/arch/arch_mac.h
"
55
56
#elif __linux__
57
#include "
hal_core/arch/arch_linux.h
"
58
#endif
59
60
#if defined(_MSC_VER)
61
/* Microsoft */
62
#define EXPORT __declspec(dllexport)
63
#define IMPORT __declspec(dllimport)
64
#else
65
/* other */
66
#define EXPORTED __attribute__((visibility("default"
)))
67
#define NOT_EXPORTED __attribute__((visibility("hidden"
)))
68
#define PROTECTED __attribute__((visibility("protected"
)))
69
#define INTERNAL __attribute__((visibility("internal"
)))
70
#endif
71
72
#if defined(__clang__)
73
#define COMPILER_CLANG
74
#elif defined(__GNUC__) || defined(__GNUG__)
75
#define COMPILER_GCC
76
#else
77
#define COMPILER_OTHER
78
#endif
arch_linux.h
arch_mac.h
arch_win.h
i8
int8_t i8
Definition:
defines.h:34
u64
uint64_t u64
Definition:
defines.h:42
u16
uint16_t u16
Definition:
defines.h:40
u32
uint32_t u32
Definition:
defines.h:41
i64
int64_t i64
Definition:
defines.h:37
i16
int16_t i16
Definition:
defines.h:35
u8
uint8_t u8
Definition:
defines.h:39
i32
int32_t i32
Definition:
defines.h:36
hal
Definition:
defines.h:45
hal::error_code
std::error_code error_code
Definition:
defines.h:46
include
hal_core
defines.h
Generated by
1.9.1