Skip to content

Commit 7904482

Browse files
ZERICO2005mateoconlechuga
authored andcommitted
Added C++20 <source_location> and tests for std::swap
1 parent be39977 commit 7904482

File tree

4 files changed

+154
-5
lines changed

4 files changed

+154
-5
lines changed

src/libcxx/header_test.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
#include <memory>
3030
#include <new>
3131
#include <numbers>
32+
#if __cplusplus >= 201907L
33+
#include <source_location>
34+
#endif // __cplusplus >= 201907L
3235
#include <type_traits>
3336
#include <typeinfo>
3437
#include <utility>

src/libcxx/include/source_location

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
// -*- C++ -*-
2+
//===----------------------------------------------------------------------===//
3+
//
4+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5+
// See https://llvm.org/LICENSE.txt for license information.
6+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7+
//
8+
//===----------------------------------------------------------------------===//
9+
10+
#ifndef _EZCXX_SOURCE_LOCATION
11+
#define _EZCXX_SOURCE_LOCATION
12+
13+
#include <__config>
14+
#include <cstdint>
15+
16+
#pragma clang system_header
17+
18+
namespace std {
19+
20+
class source_location {
21+
// The names source_location::__impl, _M_file_name, _M_function_name, _M_line, and _M_column
22+
// are hard-coded in the compiler and must not be changed here.
23+
struct __impl {
24+
const char* _M_file_name;
25+
const char* _M_function_name;
26+
unsigned _M_line;
27+
unsigned _M_column;
28+
};
29+
const __impl* __ptr_ = nullptr;
30+
// GCC returns the type 'const void*' from the builtin, while clang returns
31+
// `const __impl*`. Per C++ [expr.const], casts from void* are not permitted
32+
// in constant evaluation, so we don't want to use `void*` as the argument
33+
// type unless the builtin returned that, anyhow, and the invalid cast is
34+
// unavoidable.
35+
using __bsl_ty _EZCXX_NODEBUG = decltype(__builtin_source_location());
36+
37+
public:
38+
// The defaulted __ptr argument is necessary so that the builtin is evaluated
39+
// in the context of the caller. An explicit value should never be provided.
40+
static consteval source_location current(__bsl_ty __ptr = __builtin_source_location()) noexcept {
41+
source_location __sl;
42+
__sl.__ptr_ = static_cast<const __impl*>(__ptr);
43+
return __sl;
44+
}
45+
_EZCXX_HIDE_FROM_ABI constexpr source_location() noexcept = default;
46+
47+
_EZCXX_HIDE_FROM_ABI constexpr uint_least32_t line() const noexcept {
48+
return __ptr_ != nullptr ? __ptr_->_M_line : 0;
49+
}
50+
_EZCXX_HIDE_FROM_ABI constexpr uint_least32_t column() const noexcept {
51+
return __ptr_ != nullptr ? __ptr_->_M_column : 0;
52+
}
53+
_EZCXX_HIDE_FROM_ABI constexpr const char* file_name() const noexcept {
54+
return __ptr_ != nullptr ? __ptr_->_M_file_name : "";
55+
}
56+
_EZCXX_HIDE_FROM_ABI constexpr const char* function_name() const noexcept {
57+
return __ptr_ != nullptr ? __ptr_->_M_function_name : "";
58+
}
59+
};
60+
61+
} // namespace std
62+
63+
#endif // _EZCXX_SOURCE_LOCATION

src/libcxx/include/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
// # define __cpp_lib_shared_ptr_arrays 201707L
150150
// # define __cpp_lib_shift 201806L
151151
// # define __cpp_lib_smart_ptr_for_overwrite 202002L
152-
// # define __cpp_lib_source_location 201907L
152+
# define __cpp_lib_source_location 201907L
153153
// # define __cpp_lib_span 202002L
154154
// # define __cpp_lib_ssize 201902L
155155
// # define __cpp_lib_starts_ends_with 201711L

test/standalone/concepts/src/main.cpp

+87-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
1+
#include <cstdio>
2+
#include <source_location>
3+
#include <cinttypes>
4+
5+
// Do not change the location of this function
6+
int source_location_test(char *buf) {
7+
const std::source_location location = std::source_location::current();
8+
char const * const file_name = location.file_name();
9+
uint_least32_t line = location.line();
10+
uint_least32_t column = location.column();
11+
char const * const function_name = location.function_name();
12+
int ret = std::sprintf(buf,
13+
"%s(%" PRIuLEAST32 ":%" PRIuLEAST32 ") `%s`\n",
14+
file_name, line, column, function_name
15+
);
16+
return ret;
17+
}
18+
119
#include <ti/screen.h>
220
#include <ti/getcsc.h>
321
#include <sys/util.h>
4-
#include <stdio.h>
5-
22+
#include <cstring>
23+
#include <type_traits>
624
#include <concepts>
725

826
// test derived_from
@@ -47,17 +65,82 @@ namespace test_floating_point {
4765
static_assert(std::is_same_v<int const, decltype(i)>);
4866
}
4967

68+
constexpr int text_len = 54;
69+
static char const * const text =
70+
"src/main.cpp(7:43) `int source_location_test(char *)`\n";
71+
72+
static const int swap_truth[] = {
73+
5, 3, 3, 5, 6, 9, 9, 6
74+
};
75+
76+
namespace test_swap {
77+
namespace Ns {
78+
class A {
79+
int id {};
80+
81+
friend void swap(A& lhs, A& rhs) {
82+
std::swap(lhs.id, rhs.id);
83+
}
84+
85+
public:
86+
A(int i) : id {i} {}
87+
A(A const&) = delete;
88+
A& operator = (A const&) = delete;
89+
int get_val(void) { return id; }
90+
};
91+
}
92+
93+
void swap_test(int *arr) {
94+
int a = 5, b = 3;
95+
*arr++ = a;
96+
*arr++ = b;
97+
std::swap(a, b);
98+
*arr++ = a;
99+
*arr++ = b;
100+
101+
Ns::A p {6}, q {9};
102+
*arr++ = p.get_val();
103+
*arr++ = q.get_val();
104+
swap(p, q);
105+
*arr++ = p.get_val();
106+
*arr++ = q.get_val();
107+
}
108+
}
109+
50110
int run_tests(void) {
111+
{
112+
char buf[64];
113+
int ret = source_location_test(buf);
114+
int cmp = std::strcmp(buf, text);
115+
if (ret != text_len || cmp != 0) {
116+
std::printf(
117+
"ret: %d != %d\nstrcmp(buf, text) == %d\n",
118+
ret, text_len, cmp
119+
);
120+
std::fputs(buf, stdout);
121+
return __LINE__;
122+
}
123+
}
124+
{
125+
int arr[sizeof(swap_truth) / sizeof(int)];
126+
test_swap::swap_test(arr);
127+
for (size_t i = 0; i < sizeof(swap_truth) / sizeof(int); i++) {
128+
if (arr[i] != swap_truth[i]) {
129+
printf("%d: %d != %d", i, arr[i], swap_truth[i]);
130+
return __LINE__;
131+
}
132+
}
133+
}
51134
return 0;
52135
}
53136

54137
int main(void) {
55138
os_ClrHome();
56139
int failed_test = run_tests();
57140
if (failed_test != 0) {
58-
printf("Failed test L%d\n", failed_test);
141+
std::printf("Failed test L%d\n", failed_test);
59142
} else {
60-
printf("All tests passed");
143+
std::printf("All tests passed");
61144
}
62145

63146
while (!os_GetCSC());

0 commit comments

Comments
 (0)