-
Notifications
You must be signed in to change notification settings - Fork 14.9k
[AllocToken, Clang] Implement TypeHashPointerSplit mode #156840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
melver
merged 45 commits into
main
from
users/melver/spr/alloctoken-clang-implement-typehashpointersplit-mode
Oct 8, 2025
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
75bfb7a
[𝘀𝗽𝗿] changes to main this commit is based on
melver b689546
[𝘀𝗽𝗿] initial version
melver 68b4783
[𝘀𝗽𝗿] changes introduced through rebase
melver cb3d52d
fixup! Insert AllocToken into index.rst
melver 5397b6b
[𝘀𝗽𝗿] changes introduced through rebase
melver 33d18b2
fixup! Switch to fixed MD
melver 14c7544
fixup! fix for incomplete types
melver 7f70661
fixup!
melver 22570af
[𝘀𝗽𝗿] changes introduced through rebase
melver 1358f5a
fixup! address reviewer comments
melver 01f8d55
[𝘀𝗽𝗿] changes introduced through rebase
melver 3b64919
fixup! address reviewer comments round 2
melver 69aad6d
[𝘀𝗽𝗿] changes introduced through rebase
melver b0e9549
fixup! use update_test_checks.py for opt tests
melver d5a42a1
[𝘀𝗽𝗿] changes introduced through rebase
melver ebab546
fixup! do not strip _
melver 7ba5526
[𝘀𝗽𝗿] changes introduced through rebase
melver fb160db
fixup! address some comments
melver 25ac802
[𝘀𝗽𝗿] changes introduced through rebase
melver 8281324
fixup! address more comments
melver cb25798
[𝘀𝗽𝗿] changes introduced through rebase
melver 2fa07d7
rebase
melver 8641f7f
[𝘀𝗽𝗿] changes introduced through rebase
melver 9979bca
fixup! address comments
melver 37031e1
[𝘀𝗽𝗿] changes introduced through rebase
melver ca51a2b
fixup!
melver 946afaa
[𝘀𝗽𝗿] changes introduced through rebase
melver 0cebd94
fixup! switch clang tests back to manually written
melver f3e8076
[𝘀𝗽𝗿] changes introduced through rebase
melver fecfe67
rebase
melver 6e1451c
[𝘀𝗽𝗿] changes introduced through rebase
melver fa2bb2c
rebase
melver 10a1b88
[𝘀𝗽𝗿] changes introduced through rebase
melver 6f6aa54
rebase
melver 8502fcf
[𝘀𝗽𝗿] changes introduced through rebase
melver 6ed5fe6
rebase
melver 5e9458c
[𝘀𝗽𝗿] changes introduced through rebase
melver 346e06d
rebase
melver fbc5f29
[𝘀𝗽𝗿] changes introduced through rebase
melver 45fb47d
rebase
melver cfc9648
[𝘀𝗽𝗿] changes introduced through rebase
melver 6225eb5
rebase
melver 43b6898
[𝘀𝗽𝗿] changes introduced through rebase
melver 9574188
rebase
melver dc6551a
rebase
melver File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
// RUN: %clang_cc1 -fsanitize=alloc-token -triple x86_64-linux-gnu -std=c++20 -emit-llvm -disable-llvm-passes %s -o - | FileCheck %s | ||
|
||
#include "../Analysis/Inputs/system-header-simulator-cxx.h" | ||
|
||
typedef __UINTPTR_TYPE__ uintptr_t; | ||
|
||
extern "C" { | ||
void *malloc(size_t size); | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z15test_malloc_intv( | ||
// CHECK: call ptr @malloc(i64 noundef 4) | ||
void *test_malloc_int() { | ||
int *a = (int *)malloc(sizeof(int)); | ||
*a = 42; | ||
return a; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z15test_malloc_ptrv( | ||
// CHECK: call ptr @malloc(i64 noundef 8) | ||
int **test_malloc_ptr() { | ||
int **a = (int **)malloc(sizeof(int*)); | ||
*a = nullptr; | ||
return a; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z12test_new_intv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 4){{.*}} !alloc_token [[META_INT:![0-9]+]] | ||
int *test_new_int() { | ||
return new int; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z20test_new_ulong_arrayv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znam(i64 noundef 80){{.*}} !alloc_token [[META_ULONG:![0-9]+]] | ||
unsigned long *test_new_ulong_array() { | ||
return new unsigned long[10]; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z12test_new_ptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 8){{.*}} !alloc_token [[META_INTPTR:![0-9]+]] | ||
int **test_new_ptr() { | ||
return new int*; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z18test_new_ptr_arrayv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znam(i64 noundef 80){{.*}} !alloc_token [[META_INTPTR]] | ||
int **test_new_ptr_array() { | ||
return new int*[10]; | ||
} | ||
|
||
struct ContainsPtr { | ||
int a; | ||
char *buf; | ||
}; | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z27test_malloc_struct_with_ptrv( | ||
// CHECK: call ptr @malloc(i64 noundef 16) | ||
ContainsPtr *test_malloc_struct_with_ptr() { | ||
ContainsPtr *c = (ContainsPtr *)malloc(sizeof(ContainsPtr)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z33test_malloc_struct_array_with_ptrv( | ||
// CHECK: call ptr @malloc(i64 noundef 160) | ||
ContainsPtr *test_malloc_struct_array_with_ptr() { | ||
ContainsPtr *c = (ContainsPtr *)malloc(10 * sizeof(ContainsPtr)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z32test_operatornew_struct_with_ptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) | ||
ContainsPtr *test_operatornew_struct_with_ptr() { | ||
ContainsPtr *c = (ContainsPtr *)__builtin_operator_new(sizeof(ContainsPtr)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z38test_operatornew_struct_array_with_ptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 160) | ||
ContainsPtr *test_operatornew_struct_array_with_ptr() { | ||
ContainsPtr *c = (ContainsPtr *)__builtin_operator_new(10 * sizeof(ContainsPtr)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z33test_operatornew_struct_with_ptr2v( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) | ||
ContainsPtr *test_operatornew_struct_with_ptr2() { | ||
ContainsPtr *c = (ContainsPtr *)__builtin_operator_new(sizeof(*c)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z39test_operatornew_struct_array_with_ptr2v( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 160) | ||
ContainsPtr *test_operatornew_struct_array_with_ptr2() { | ||
ContainsPtr *c = (ContainsPtr *)__builtin_operator_new(10 * sizeof(*c)); | ||
return c; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z24test_new_struct_with_ptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 16){{.*}} !alloc_token [[META_CONTAINSPTR:![0-9]+]] | ||
ContainsPtr *test_new_struct_with_ptr() { | ||
return new ContainsPtr; | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z30test_new_struct_array_with_ptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znam(i64 noundef 160){{.*}} !alloc_token [[META_CONTAINSPTR]] | ||
ContainsPtr *test_new_struct_array_with_ptr() { | ||
return new ContainsPtr[10]; | ||
} | ||
|
||
class TestClass { | ||
public: | ||
void Foo(); | ||
~TestClass(); | ||
int data[16]; | ||
}; | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z14test_new_classv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 64){{.*}} !alloc_token [[META_TESTCLASS:![0-9]+]] | ||
TestClass *test_new_class() { | ||
return new TestClass(); | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z20test_new_class_arrayv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znam(i64 noundef 648){{.*}} !alloc_token [[META_TESTCLASS]] | ||
TestClass *test_new_class_array() { | ||
return new TestClass[10]; | ||
} | ||
|
||
// Test that we detect that virtual classes have implicit vtable pointer. | ||
class VirtualTestClass { | ||
public: | ||
virtual void Foo(); | ||
virtual ~VirtualTestClass(); | ||
int data[16]; | ||
}; | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z22test_new_virtual_classv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 72){{.*}} !alloc_token [[META_VIRTUALTESTCLASS:![0-9]+]] | ||
VirtualTestClass *test_new_virtual_class() { | ||
return new VirtualTestClass(); | ||
} | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z28test_new_virtual_class_arrayv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znam(i64 noundef 728){{.*}} !alloc_token [[META_VIRTUALTESTCLASS]] | ||
VirtualTestClass *test_new_virtual_class_array() { | ||
return new VirtualTestClass[10]; | ||
} | ||
|
||
// uintptr_t is treated as a pointer. | ||
struct MyStructUintptr { | ||
int a; | ||
uintptr_t ptr; | ||
}; | ||
|
||
// CHECK-LABEL: define dso_local noundef ptr @_Z18test_uintptr_isptrv( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 16){{.*}} !alloc_token [[META_MYSTRUCTUINTPTR:![0-9]+]] | ||
MyStructUintptr *test_uintptr_isptr() { | ||
return new MyStructUintptr; | ||
} | ||
|
||
using uptr = uintptr_t; | ||
// CHECK-LABEL: define dso_local noundef ptr @_Z19test_uintptr_isptr2v( | ||
// CHECK: call noalias noundef nonnull ptr @_Znwm(i64 noundef 8){{.*}} !alloc_token [[META_UINTPTR:![0-9]+]] | ||
uptr *test_uintptr_isptr2() { | ||
return new uptr; | ||
} | ||
|
||
// CHECK: [[META_INT]] = !{!"int", i1 false} | ||
// CHECK: [[META_ULONG]] = !{!"unsigned long", i1 false} | ||
// CHECK: [[META_INTPTR]] = !{!"int *", i1 true} | ||
// CHECK: [[META_CONTAINSPTR]] = !{!"ContainsPtr", i1 true} | ||
// CHECK: [[META_TESTCLASS]] = !{!"TestClass", i1 false} | ||
// CHECK: [[META_VIRTUALTESTCLASS]] = !{!"VirtualTestClass", i1 true} | ||
// CHECK: [[META_MYSTRUCTUINTPTR]] = !{!"MyStructUintptr", i1 true} | ||
// CHECK: [[META_UINTPTR]] = !{!"unsigned long", i1 true} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.