forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities_posix.cpp
51 lines (46 loc) · 1.49 KB
/
utilities_posix.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//===-- utilities_posix.cpp -------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include <alloca.h>
#include <features.h> // IWYU pragma: keep (for __BIONIC__ macro)
#include <inttypes.h>
#include <stdint.h>
#include <string.h>
#ifdef __BIONIC__
#include "gwp_asan/definitions.h"
#include <stdlib.h>
extern "C" GWP_ASAN_WEAK void android_set_abort_message(const char *);
#else // __BIONIC__
#include <stdio.h>
#endif
namespace gwp_asan {
void die(const char *Message) {
#ifdef __BIONIC__
if (&android_set_abort_message != nullptr)
android_set_abort_message(Message);
abort();
#else // __BIONIC__
fprintf(stderr, "%s", Message);
__builtin_trap();
#endif // __BIONIC__
}
void dieWithErrorCode(const char *Message, int64_t ErrorCode) {
#ifdef __BIONIC__
if (&android_set_abort_message == nullptr)
abort();
size_t buffer_size = strlen(Message) + 48;
char *buffer = static_cast<char *>(alloca(buffer_size));
snprintf(buffer, buffer_size, "%s (Error Code: %" PRId64 ")", Message,
ErrorCode);
android_set_abort_message(buffer);
abort();
#else // __BIONIC__
fprintf(stderr, "%s (Error Code: %" PRId64 ")", Message, ErrorCode);
__builtin_trap();
#endif // __BIONIC__
}
} // namespace gwp_asan