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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
base / allocator / partition_allocator / src / partition_alloc / pointers / raw_ref_unittest.cc [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "partition_alloc/pointers/raw_ref.h"
#include <functional>
#include <type_traits>
#include "base/test/gtest_util.h"
#include "partition_alloc/buildflags.h"
#include "partition_alloc/pointers/raw_ptr.h"
#include "partition_alloc/pointers/raw_ptr_counting_impl_for_test.h"
#include "partition_alloc/pointers/raw_ptr_test_support.h"
#include "testing/gtest/include/gtest/gtest.h"
#if PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR)
#include "base/debug/asan_service.h"
#include "base/memory/raw_ptr_asan_service.h"
#endif // PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR)
namespace {
class BaseClass {};
class SubClass : public BaseClass {};
// raw_ref just defers to the superclass for implementations, so it
// can't add more data types.
static_assert(sizeof(raw_ref<int>) == sizeof(raw_ptr<int>));
// Since it can't hold null, raw_ref is not default-constructible.
static_assert(!std::is_default_constructible_v<raw_ref<int>>);
static_assert(!std::is_default_constructible_v<raw_ref<const int>>);
// A mutable reference can only be constructed from a mutable lvalue reference.
static_assert(!std::is_constructible_v<raw_ref<int>, const int>);
static_assert(!std::is_constructible_v<raw_ref<int>, int>);
static_assert(!std::is_constructible_v<raw_ref<int>, const int&>);
static_assert(std::is_constructible_v<raw_ref<int>, int&>);
static_assert(!std::is_constructible_v<raw_ref<int>, const int*>);
static_assert(!std::is_constructible_v<raw_ref<int>, int*>);
static_assert(!std::is_constructible_v<raw_ref<int>, const int&&>);
static_assert(!std::is_constructible_v<raw_ref<int>, int&&>);
// Same for assignment.
static_assert(!std::is_assignable_v<raw_ref<int>, const int>);
static_assert(!std::is_assignable_v<raw_ref<int>, int>);
static_assert(!std::is_assignable_v<raw_ref<int>, const int&>);
static_assert(std::is_assignable_v<raw_ref<int>, int&>);
static_assert(!std::is_assignable_v<raw_ref<int>, const int*>);
static_assert(!std::is_assignable_v<raw_ref<int>, int*>);
static_assert(!std::is_assignable_v<raw_ref<int>, const int&&>);
static_assert(!std::is_assignable_v<raw_ref<int>, int&&>);
// A const reference can be constructed from a const or mutable lvalue
// reference.
static_assert(!std::is_constructible_v<raw_ref<const int>, const int>);
static_assert(!std::is_constructible_v<raw_ref<const int>, int>);
static_assert(std::is_constructible_v<raw_ref<const int>, const int&>);
static_assert(std::is_constructible_v<raw_ref<const int>, int&>);
static_assert(!std::is_constructible_v<raw_ref<const int>, const int*>);
static_assert(!std::is_constructible_v<raw_ref<const int>, int*>);
static_assert(!std::is_constructible_v<raw_ref<const int>, const int&&>);
static_assert(!std::is_constructible_v<raw_ref<const int>, int&&>);
// Same for assignment.
static_assert(!std::is_assignable_v<raw_ref<const int>, const int>);
static_assert(!std::is_assignable_v<raw_ref<const int>, int>);
static_assert(std::is_assignable_v<raw_ref<const int>, const int&>);
static_assert(std::is_assignable_v<raw_ref<const int>, int&>);
static_assert(!std::is_assignable_v<raw_ref<const int>, const int*>);
static_assert(!std::is_assignable_v<raw_ref<const int>, int*>);
static_assert(!std::is_assignable_v<raw_ref<const int>, const int&&>);
static_assert(!std::is_assignable_v<raw_ref<const int>, int&&>);
// Same trivial operations (or not) as raw_ptr<T>.
static_assert(std::is_trivially_constructible_v<raw_ref<int>, const int&> ==
std::is_trivially_constructible_v<raw_ptr<int>, const int&>);
static_assert(std::is_trivially_destructible_v<raw_ref<int>> ==
std::is_trivially_destructible_v<raw_ptr<int>>);
// But constructing from another raw_ref must check if it's internally null
// (which indicates use-after-move).
static_assert(!std::is_trivially_move_constructible_v<raw_ref<int>>);
static_assert(!std::is_trivially_move_assignable_v<raw_ref<int>>);
static_assert(!std::is_trivially_copy_constructible_v<raw_ref<int>>);
static_assert(!std::is_trivially_copy_assignable_v<raw_ref<int>>);
// A raw_ref can be copied or moved.
static_assert(std::is_move_constructible_v<raw_ref<int>>);
static_assert(std::is_copy_constructible_v<raw_ref<int>>);
static_assert(std::is_move_assignable_v<raw_ref<int>>);
static_assert(std::is_copy_assignable_v<raw_ref<int>>);
// A SubClass can be converted to a BaseClass.
static_assert(std::is_constructible_v<raw_ref<BaseClass>, raw_ref<SubClass>>);
static_assert(
std::is_constructible_v<raw_ref<BaseClass>, const raw_ref<SubClass>&>);
static_assert(std::is_constructible_v<raw_ref<BaseClass>, raw_ref<SubClass>&&>);
static_assert(std::is_assignable_v<raw_ref<BaseClass>, raw_ref<SubClass>>);
static_assert(
std::is_assignable_v<raw_ref<BaseClass>, const raw_ref<SubClass>&>);
static_assert(std::is_assignable_v<raw_ref<BaseClass>, raw_ref<SubClass>&&>);
// A BaseClass can't be implicitly downcasted.
static_assert(!std::is_constructible_v<raw_ref<SubClass>, raw_ref<BaseClass>>);
static_assert(
!std::is_constructible_v<raw_ref<SubClass>, const raw_ref<BaseClass>&>);
static_assert(
!std::is_constructible_v<raw_ref<SubClass>, raw_ref<BaseClass>&&>);
static_assert(!std::is_assignable_v<raw_ref<SubClass>, raw_ref<BaseClass>>);
static_assert(
!std::is_assignable_v<raw_ref<SubClass>, const raw_ref<BaseClass>&>);
static_assert(!std::is_assignable_v<raw_ref<SubClass>, raw_ref<BaseClass>&&>);
// A raw_ref<BaseClass> can be constructed directly from a SubClass.
static_assert(std::is_constructible_v<raw_ref<BaseClass>, SubClass&>);
static_assert(std::is_assignable_v<raw_ref<BaseClass>, SubClass&>);
static_assert(std::is_constructible_v<raw_ref<const BaseClass>, SubClass&>);
static_assert(std::is_assignable_v<raw_ref<const BaseClass>, SubClass&>);
static_assert(
std::is_constructible_v<raw_ref<const BaseClass>, const SubClass&>);
static_assert(std::is_assignable_v<raw_ref<const BaseClass>, const SubClass&>);
// But a raw_ref<SubClass> can't be constructed from an implicit downcast from a
// BaseClass.
static_assert(!std::is_constructible_v<raw_ref<SubClass>, BaseClass&>);
static_assert(!std::is_assignable_v<raw_ref<SubClass>, BaseClass&>);
static_assert(!std::is_constructible_v<raw_ref<const SubClass>, BaseClass&>);
static_assert(!std::is_assignable_v<raw_ref<const SubClass>, BaseClass&>);
static_assert(
!std::is_constructible_v<raw_ref<const SubClass>, const BaseClass&>);
static_assert(!std::is_assignable_v<raw_ref<const SubClass>, const BaseClass&>);
// A mutable reference can be converted to const reference.
static_assert(std::is_constructible_v<raw_ref<const int>, raw_ref<int>>);
static_assert(std::is_assignable_v<raw_ref<const int>, raw_ref<int>>);
// A const reference can't be converted to mutable.
static_assert(!std::is_constructible_v<raw_ref<int>, raw_ref<const int>>);
static_assert(!std::is_assignable_v<raw_ref<int>, raw_ref<const int>>);
// The deref operator gives the internal reference.
static_assert(std::is_same_v<int&, decltype(*std::declval<raw_ref<int>>())>);
static_assert(
std::is_same_v<int&, decltype(*std::declval<const raw_ref<int>>())>);
static_assert(std::is_same_v<int&, decltype(*std::declval<raw_ref<int>&>())>);
static_assert(
std::is_same_v<int&, decltype(*std::declval<const raw_ref<int>&>())>);
static_assert(std::is_same_v<int&, decltype(*std::declval<raw_ref<int>&&>())>);
static_assert(
std::is_same_v<int&, decltype(*std::declval<const raw_ref<int>&&>())>);
// A const T is always returned as const.
static_assert(
std::is_same_v<const int&, decltype(*std::declval<raw_ref<const int>>())>);
// The arrow operator gives a (non-null) pointer to the internal reference.
static_assert(
std::is_same_v<int*, decltype(std::declval<raw_ref<int>>().operator->())>);
static_assert(
std::is_same_v<const int*,
decltype(std::declval<raw_ref<const int>>().operator->())>);
// Verify that raw_ref is a literal type, and its entire interface is constexpr.
//
// Constexpr destructors were introduced in C++20. PartitionAlloc's minimum
// supported C++ version is C++17, so raw_ref is not a literal type in C++17.
// Thus we only test for constexpr in C++20.
#if defined(__cpp_constexpr) && __cpp_constexpr >= 201907L
static_assert([]() constexpr {
struct IntBase {};
struct Int : public IntBase {
int i = 0;
};
Int* i = new Int();
{
raw_ref<Int> r(*i); // raw_ref(T&)
r = *i; // operator=(T&)
raw_ref<Int> r2(r); // raw_ref(const raw_ref&)
raw_ref<Int> r3(std::move(r2)); // raw_ref(raw_ref&&)
r2 = r; // operator=(const raw_ref&)
r3 = std::move(r2); // operator=(raw_ref&&)
r2 = r; // Reset after move.
[[maybe_unused]] raw_ref<IntBase> r5(
r2); // raw_ref(const raw_ref<Convertible>&)
[[maybe_unused]] raw_ref<IntBase> r6(
std::move(r2)); // raw_ref(raw_ref<Convertible>&&)
r2 = r; // Reset after move.
r5 = r2; // operator=(const raw_ref<Convertible>&)
r6 = std::move(r2); // operator=(raw_ref<Convertible>&&)
raw_ref<Int>::from_ptr(i); // from_ptr(T*)
(*r).i += 1; // operator*()
r.get().i += 1; // get()
r->i += 1; // operator->()
r2 = r; // Reset after move.
swap(r, r2); // swap()
}
delete i;
return true;
}());
#endif
struct StructWithoutTypeBasedTraits {};
struct BaseWithTypeBasedTraits {};
struct DerivedWithTypeBasedTraits : BaseWithTypeBasedTraits {};
} // namespace
namespace base::raw_ptr_traits {
// `BaseWithTypeBasedTraits` and any derived classes have
// `RawPtrTraits::kDummyForTest`.
template <typename T>
constexpr auto kTypeTraits<
T,
std::enable_if_t<std::is_base_of_v<BaseWithTypeBasedTraits, T>>> =
RawPtrTraits::kDummyForTest;
} // namespace base::raw_ptr_traits
// `raw_ptr<T>` should have traits based on specialization of `kTypeTraits<T>`.
static_assert(!ContainsFlags(raw_ref<StructWithoutTypeBasedTraits>::Traits,
base::RawPtrTraits::kDummyForTest));
static_assert(ContainsFlags(raw_ref<BaseWithTypeBasedTraits>::Traits,
base::RawPtrTraits::kDummyForTest));
static_assert(ContainsFlags(raw_ref<DerivedWithTypeBasedTraits>::Traits,
base::RawPtrTraits::kDummyForTest));
namespace {
TEST(RawRef, Construct) {
int i = 1;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
auto cr = raw_ref<const int>(i);
EXPECT_EQ(&*cr, &i);
const int ci = 1;
auto cci = raw_ref<const int>(ci);
EXPECT_EQ(&*cci, &ci);
}
TEST(RawRef, CopyConstruct) {
{
int i = 1;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
auto r2 = raw_ref<int>(r);
EXPECT_EQ(&*r2, &i);
}
{
int i = 1;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
auto r2 = raw_ref<const int>(r);
EXPECT_EQ(&*r2, &i);
}
}
TEST(RawRef, MoveConstruct) {
{
int i = 1;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
auto r2 = raw_ref<int>(std::move(r));
EXPECT_EQ(&*r2, &i);
}
{
int i = 1;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
auto r2 = raw_ref<const int>(std::move(r));
EXPECT_EQ(&*r2, &i);
}
}
TEST(RawRef, CopyAssign) {
{
int i = 1;
int j = 2;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
auto rj = raw_ref<int>(j);
r = rj;
EXPECT_EQ(&*r, &j);
}
{
int i = 1;
int j = 2;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
auto rj = raw_ref<const int>(j);
r = rj;
EXPECT_EQ(&*r, &j);
}
{
int i = 1;
int j = 2;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
auto rj = raw_ref<int>(j);
r = rj;
EXPECT_EQ(&*r, &j);
}
}
TEST(RawRef, CopyReassignAfterMove) {
int i = 1;
int j = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
r2 = raw_ref<int>(j);
// Reassign to the moved-from `r` so it can be used again.
r = r2;
EXPECT_EQ(&*r, &j);
}
TEST(RawRef, MoveAssign) {
{
int i = 1;
int j = 2;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
r = raw_ref<int>(j);
EXPECT_EQ(&*r, &j);
}
{
int i = 1;
int j = 2;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
r = raw_ref<const int>(j);
EXPECT_EQ(&*r, &j);
}
{
int i = 1;
int j = 2;
auto r = raw_ref<const int>(i);
EXPECT_EQ(&*r, &i);
r = raw_ref<int>(j);
EXPECT_EQ(&*r, &j);
}
}
TEST(RawRef, MoveReassignAfterMove) {
int i = 1;
int j = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
// Reassign to the moved-from `r` so it can be used again.
r = raw_ref<int>(j);
EXPECT_EQ(&*r, &j);
}
TEST(RawRef, CopyConstructUpCast) {
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
EXPECT_EQ(&*r, &s);
auto r2 = raw_ref<BaseClass>(r);
EXPECT_EQ(&*r2, &s);
}
{
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
EXPECT_EQ(&*r, &s);
auto r2 = raw_ref<const BaseClass>(r);
EXPECT_EQ(&*r2, &s);
}
}
TEST(RawRef, MoveConstructUpCast) {
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
EXPECT_EQ(&*r, &s);
auto r2 = raw_ref<BaseClass>(std::move(r));
EXPECT_EQ(&*r2, &s);
}
{
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
EXPECT_EQ(&*r, &s);
auto r2 = raw_ref<const BaseClass>(std::move(r));
EXPECT_EQ(&*r2, &s);
}
}
TEST(RawRef, FromPtr) {
int i = 42;
auto ref = raw_ref<int>::from_ptr(&i);
EXPECT_EQ(&i, &*ref);
}
TEST(RawRef, CopyAssignUpCast) {
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<BaseClass>(t);
rt = r;
EXPECT_EQ(&*rt, &s);
}
{
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
rt = r;
EXPECT_EQ(&*rt, &s);
}
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
rt = r;
EXPECT_EQ(&*rt, &s);
}
}
TEST(RawRef, MoveAssignUpCast) {
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<BaseClass>(t);
rt = std::move(r);
EXPECT_EQ(&*rt, &s);
}
{
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
rt = std::move(r);
EXPECT_EQ(&*rt, &s);
}
{
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
rt = std::move(r);
EXPECT_EQ(&*rt, &s);
}
}
TEST(RawRef, Deref) {
int i;
auto r = raw_ref<int>(i);
EXPECT_EQ(&*r, &i);
}
TEST(RawRef, Arrow) {
int i;
auto r = raw_ref<int>(i);
EXPECT_EQ(r.operator->(), &i);
}
TEST(RawRef, Swap) {
int i;
int j;
auto ri = raw_ref<int>(i);
auto rj = raw_ref<int>(j);
swap(ri, rj);
EXPECT_EQ(&*ri, &j);
EXPECT_EQ(&*rj, &i);
}
TEST(RawRef, Equals) {
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
EXPECT_TRUE(r1 == r1);
EXPECT_TRUE(r1 == r2);
EXPECT_TRUE(r1 == i);
EXPECT_TRUE(i == r1);
int j = 1;
auto r3 = raw_ref<int>(j);
EXPECT_FALSE(r1 == r3);
EXPECT_FALSE(r1 == j);
EXPECT_FALSE(j == r1);
}
TEST(RawRef, NotEquals) {
int i = 1;
auto r1 = raw_ref<int>(i);
int j = 1;
auto r2 = raw_ref<int>(j);
EXPECT_TRUE(r1 != r2);
EXPECT_TRUE(r1 != j);
EXPECT_TRUE(j != r1);
EXPECT_FALSE(r1 != r1);
EXPECT_FALSE(r2 != j);
EXPECT_FALSE(j != r2);
}
TEST(RawRef, LessThan) {
int i[] = {1, 1};
auto r1 = raw_ref<int>(i[0]);
auto r2 = raw_ref<int>(i[1]);
EXPECT_TRUE(r1 < r2);
EXPECT_TRUE(r1 < i[1]);
EXPECT_FALSE(i[1] < r1);
EXPECT_FALSE(r2 < r1);
EXPECT_FALSE(r2 < i[0]);
EXPECT_TRUE(i[0] < r2);
EXPECT_FALSE(r1 < r1);
EXPECT_FALSE(r1 < i[0]);
EXPECT_FALSE(i[0] < r1);
}
TEST(RawRef, GreaterThan) {
int i[] = {1, 1};
auto r1 = raw_ref<int>(i[0]);
auto r2 = raw_ref<int>(i[1]);
EXPECT_TRUE(r2 > r1);
EXPECT_FALSE(r1 > r2);
EXPECT_FALSE(r1 > i[1]);
EXPECT_TRUE(i[1] > r1);
EXPECT_FALSE(r2 > r2);
EXPECT_FALSE(r2 > i[1]);
EXPECT_FALSE(i[1] > r2);
}
TEST(RawRef, LessThanOrEqual) {
int i[] = {1, 1};
auto r1 = raw_ref<int>(i[0]);
auto r2 = raw_ref<int>(i[1]);
EXPECT_TRUE(r1 <= r2);
EXPECT_TRUE(r1 <= r1);
EXPECT_TRUE(r2 <= r2);
EXPECT_FALSE(r2 <= r1);
EXPECT_TRUE(r1 <= i[1]);
EXPECT_TRUE(r1 <= i[0]);
EXPECT_TRUE(r2 <= i[1]);
EXPECT_FALSE(r2 <= i[0]);
EXPECT_FALSE(i[1] <= r1);
EXPECT_TRUE(i[0] <= r1);
EXPECT_TRUE(i[1] <= r2);
EXPECT_TRUE(i[0] <= r2);
}
TEST(RawRef, GreaterThanOrEqual) {
int i[] = {1, 1};
auto r1 = raw_ref<int>(i[0]);
auto r2 = raw_ref<int>(i[1]);
EXPECT_TRUE(r2 >= r1);
EXPECT_TRUE(r1 >= r1);
EXPECT_TRUE(r2 >= r2);
EXPECT_FALSE(r1 >= r2);
EXPECT_TRUE(r2 >= i[0]);
EXPECT_TRUE(r1 >= i[0]);
EXPECT_TRUE(r2 >= i[1]);
EXPECT_FALSE(r1 >= i[1]);
EXPECT_FALSE(i[0] >= r2);
EXPECT_TRUE(i[0] >= r1);
EXPECT_TRUE(i[1] >= r2);
EXPECT_TRUE(i[1] >= r1);
}
// Death Tests: If we're only using the no-op version of `raw_ptr` and
// have `!PA_BUILDFLAG(DCHECKS_ARE_ON)`, the `PA_RAW_PTR_CHECK()`s used in
// `raw_ref` evaluate to nothing. Therefore, death tests relying on
// these CHECKs firing are disabled in their absence.
#if PA_BUILDFLAG(ENABLE_BACKUP_REF_PTR_SUPPORT) || \
PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR) || PA_BUILDFLAG(DCHECKS_ARE_ON)
TEST(RawRefDeathTest, CopyConstructAfterMove) {
int i = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
EXPECT_CHECK_DEATH({ [[maybe_unused]] auto r3 = r; });
}
TEST(RawRefDeathTest, MoveConstructAfterMove) {
int i = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
EXPECT_CHECK_DEATH({ [[maybe_unused]] auto r3 = std::move(r); });
}
TEST(RawRefDeathTest, CopyAssignAfterMove) {
int i = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
EXPECT_CHECK_DEATH({ r2 = r; });
}
TEST(RawRefDeathTest, MoveAssignAfterMove) {
int i = 1;
auto r = raw_ref<int>(i);
auto r2 = std::move(r);
EXPECT_CHECK_DEATH({ r2 = std::move(r); });
}
TEST(RawRefDeathTest, CopyConstructAfterMoveUpCast) {
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto moved = std::move(r);
EXPECT_CHECK_DEATH({ [[maybe_unused]] auto r2 = raw_ref<BaseClass>(r); });
}
TEST(RawRefDeathTest, MoveConstructAfterMoveUpCast) {
auto s = SubClass();
auto r = raw_ref<SubClass>(s);
auto moved = std::move(r);
EXPECT_CHECK_DEATH(
{ [[maybe_unused]] auto r2 = raw_ref<BaseClass>(std::move(r)); });
}
TEST(RawRefDeathTest, FromPtrWithNullptr) {
EXPECT_CHECK_DEATH({ raw_ref<int>::from_ptr(nullptr); });
}
TEST(RawRefDeathTest, CopyAssignAfterMoveUpCast) {
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
auto moved = std::move(r);
EXPECT_CHECK_DEATH({ rt = r; });
}
TEST(RawRefDeathTest, MoveAssignAfterMoveUpCast) {
auto s = SubClass();
auto r = raw_ref<const SubClass>(s);
auto t = BaseClass();
auto rt = raw_ref<const BaseClass>(t);
auto moved = std::move(r);
EXPECT_CHECK_DEATH({ rt = std::move(r); });
}
TEST(RawRefDeathTest, DerefAfterMove) {
int i;
auto r = raw_ref<int>(i);
auto moved = std::move(r);
EXPECT_CHECK_DEATH({ r.operator*(); });
}
TEST(RawRefDeathTest, ArrowAfterMove) {
int i;
auto r = raw_ref<int>(i);
auto moved = std::move(r);
EXPECT_CHECK_DEATH({ r.operator->(); });
}
TEST(RawRefDeathTest, SwapAfterMove) {
{
int i;
auto ri = raw_ref<int>(i);
int j;
auto rj = raw_ref<int>(j);
auto moved = std::move(ri);
EXPECT_CHECK_DEATH({ swap(ri, rj); });
}
{
int i;
auto ri = raw_ref<int>(i);
int j;
auto rj = raw_ref<int>(j);
auto moved = std::move(rj);
EXPECT_CHECK_DEATH({ swap(ri, rj); });
}
}
TEST(RawRefDeathTest, EqualsAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 == r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 == r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 == r1; });
}
}
TEST(RawRefDeathTest, NotEqualsAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 != r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 != r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 != r1; });
}
}
TEST(RawRefDeathTest, LessThanAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 < r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 < r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 < r1; });
}
}
TEST(RawRefDeathTest, GreaterThanAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 > r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 > r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 > r1; });
}
}
TEST(RawRefDeathTest, LessThanOrEqualAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 <= r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 <= r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 <= r1; });
}
}
TEST(RawRefDeathTest, GreaterThanOrEqualAfterMove) {
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 >= r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto r2 = raw_ref<int>(i);
auto moved = std::move(r2);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 >= r2; });
}
{
int i = 1;
auto r1 = raw_ref<int>(i);
auto moved = std::move(r1);
EXPECT_CHECK_DEATH({ [[maybe_unused]] bool b = r1 >= r1; });
}
}
#endif // PA_BUILDFLAG(ENABLE_BACKUP_REF_PTR_SUPPORT) ||
// PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR) ||
// PA_BUILDFLAG(DCHECKS_ARE_ON)
TEST(RawRef, CTAD) {
int i = 1;
auto r = raw_ref(i);
EXPECT_EQ(&*r, &i);
}
TEST(RawRefPtr, CTADWithConst) {
std::string str;
struct S {
const raw_ref<const std::string> r;
};
// Deduces as `raw_ref<std::string>`, for which the constructor call is valid
// making a mutable reference, and then converts to
// `raw_ref<const std::string>`.
S s1 = {.r = raw_ref(str)};
// Deduces as raw_ref<const std::string>, for which the constructor call is
// valid from a const ref.
S s2 = {.r = raw_ref(static_cast<const std::string&>(str))};
EXPECT_EQ(&*s1.r, &str);
EXPECT_EQ(&*s2.r, &str);
}
// Shorter name for expected test impl.
using RawPtrCountingImpl = base::test::RawPtrCountingImplForTest;
template <typename T>
using CountingRawRef = raw_ref<T, base::RawPtrTraits::kUseCountingImplForTest>;
// Ensure that the `kUseCountingImplForTest` flag selects the test impl.
static_assert(std::is_same_v<CountingRawRef<int>::Impl, RawPtrCountingImpl>);
template <typename T>
using CountingRawRefMayDangle =
raw_ref<T,
base::RawPtrTraits::kMayDangle |
base::RawPtrTraits::kUseCountingImplForTest>;
// Ensure that the `kUseCountingImplForTest` flag selects the test impl.
static_assert(
std::is_same_v<CountingRawRefMayDangle<int>::Impl, RawPtrCountingImpl>);
TEST(RawRef, StdLess) {
int i[] = {1, 1};
{
RawPtrCountingImpl::ClearCounters();
auto r1 = CountingRawRef<int>(i[0]);
auto r2 = CountingRawRef<int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<int>>()(r1, r2));
EXPECT_FALSE(std::less<CountingRawRef<int>>()(r2, r1));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
{
RawPtrCountingImpl::ClearCounters();
const auto r1 = CountingRawRef<int>(i[0]);
const auto r2 = CountingRawRef<int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<int>>()(r1, r2));
EXPECT_FALSE(std::less<CountingRawRef<int>>()(r2, r1));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
{
RawPtrCountingImpl::ClearCounters();
auto r1 = CountingRawRef<const int>(i[0]);
auto r2 = CountingRawRef<const int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<const int>>()(r1, r2));
EXPECT_FALSE(std::less<CountingRawRef<const int>>()(r2, r1));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
{
RawPtrCountingImpl::ClearCounters();
auto r1 = CountingRawRef<int>(i[0]);
auto r2 = CountingRawRef<int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<int>>()(r1, i[1]));
EXPECT_FALSE(std::less<CountingRawRef<int>>()(r2, i[0]));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
{
RawPtrCountingImpl::ClearCounters();
const auto r1 = CountingRawRef<int>(i[0]);
const auto r2 = CountingRawRef<int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<int>>()(r1, i[1]));
EXPECT_FALSE(std::less<CountingRawRef<int>>()(r2, i[0]));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
{
RawPtrCountingImpl::ClearCounters();
auto r1 = CountingRawRef<const int>(i[0]);
auto r2 = CountingRawRef<const int>(i[1]);
EXPECT_TRUE(std::less<CountingRawRef<const int>>()(r1, i[1]));
EXPECT_FALSE(std::less<CountingRawRef<const int>>()(r2, i[0]));
EXPECT_EQ(2, RawPtrCountingImpl::wrapped_ptr_less_cnt);
}
}
// Verifies that comparing `raw_ref`s with different underlying Traits
// is a valid utterance and primarily uses the `GetForComparison()` methods.
TEST(RawRef, OperatorsUseGetForComparison) {
int x = 123;
CountingRawRef<int> ref1(x);
CountingRawRefMayDangle<int> ref2(x);
RawPtrCountingImpl::ClearCounters();
EXPECT_TRUE(ref1 == ref2);
EXPECT_FALSE(ref1 != ref2);
// The use of `PA_RAW_PTR_CHECK()`s to catch dangling references means
// that we can't actually readily specify whether there are 0
// extractions (`CHECK()`s compiled out) or 2 extractions.
EXPECT_THAT((CountingRawPtrExpectations{.get_for_comparison_cnt = 4}),
CountersMatch());
EXPECT_FALSE(ref1 < ref2);
EXPECT_FALSE(ref1 > ref2);
EXPECT_TRUE(ref1 <= ref2);
EXPECT_TRUE(ref1 >= ref2);
EXPECT_THAT((CountingRawPtrExpectations{
.get_for_comparison_cnt = 12,
}),
CountersMatch());
}
TEST(RawRef, CrossKindConversion) {
int x = 123;
CountingRawRef<int> ref1(x);
RawPtrCountingImpl::ClearCounters();
CountingRawRefMayDangle<int> ref2(ref1);
CountingRawRefMayDangle<int> ref3(std::move(ref1)); // Falls back to copy.
EXPECT_THAT((CountingRawPtrExpectations{.wrap_raw_ptr_cnt = 0,
.get_for_dereference_cnt = 0,
.get_for_extraction_cnt = 0,
.wrap_raw_ptr_for_dup_cnt = 2,
.get_for_duplication_cnt = 2}),
CountersMatch());
}
TEST(RawRef, CrossKindAssignment) {
int x = 123;
CountingRawRef<int> ref1(x);
CountingRawRefMayDangle<int> ref2(x);
CountingRawRefMayDangle<int> ref3(x);
RawPtrCountingImpl::ClearCounters();
ref2 = ref1;
ref3 = std::move(ref1); // Falls back to copy.
EXPECT_THAT((CountingRawPtrExpectations{.wrap_raw_ptr_cnt = 0,
.get_for_dereference_cnt = 0,
.get_for_extraction_cnt = 0,
.wrap_raw_ptr_for_dup_cnt = 2,
.get_for_duplication_cnt = 2}),
CountersMatch());
}
#if PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR)
TEST(AsanBackupRefPtrImpl, RawRefGet) {
base::debug::AsanService::GetInstance()->Initialize();
if (!base::RawPtrAsanService::GetInstance().IsEnabled()) {
base::RawPtrAsanService::GetInstance().Configure(
base::EnableDereferenceCheck(true), base::EnableExtractionCheck(true),
base::EnableInstantiationCheck(true));
} else {
ASSERT_TRUE(
base::RawPtrAsanService::GetInstance().is_dereference_check_enabled());
ASSERT_TRUE(
base::RawPtrAsanService::GetInstance().is_extraction_check_enabled());
ASSERT_TRUE(base::RawPtrAsanService::GetInstance()
.is_instantiation_check_enabled());
}
auto ptr = ::std::make_unique<int>();
raw_ref<int> safe_ref(*ptr);
ptr.reset();
// This test is specifically to ensure that raw_ref.get() does not cause a
// dereference of the memory referred to by the reference. If there is a
// dereference, then this test will crash.
[[maybe_unused]] volatile int& ref = safe_ref.get();
}
TEST(AsanBackupRefPtrImpl, RawRefOperatorStar) {
base::debug::AsanService::GetInstance()->Initialize();
if (!base::RawPtrAsanService::GetInstance().IsEnabled()) {
base::RawPtrAsanService::GetInstance().Configure(
base::EnableDereferenceCheck(true), base::EnableExtractionCheck(true),
base::EnableInstantiationCheck(true));
} else {
ASSERT_TRUE(
base::RawPtrAsanService::GetInstance().is_dereference_check_enabled());
ASSERT_TRUE(
base::RawPtrAsanService::GetInstance().is_extraction_check_enabled());
ASSERT_TRUE(base::RawPtrAsanService::GetInstance()
.is_instantiation_check_enabled());
}
auto ptr = ::std::make_unique<int>();
raw_ref<int> safe_ref(*ptr);
ptr.reset();
// This test is specifically to ensure that &*raw_ref does not cause a
// dereference of the memory referred to by the reference. If there is a
// dereference, then this test will crash.
[[maybe_unused]] volatile int& ref = *safe_ref;
}
#endif // PA_BUILDFLAG(USE_ASAN_BACKUP_REF_PTR)
} // namespace