forked from llvm-mirror/compiler-rt
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/remove-promote-change-addr-space…
…' into amd-hcc
- Loading branch information
Showing
18 changed files
with
172 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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,57 @@ | ||
// RUN: %clang_asan -O2 %s -o %t | ||
// RUN: %run %t 2>&1 | FileCheck --check-prefix=CHECK-NOSCRIBBLE %s | ||
// RUN: env MallocScribble=1 MallocPreScribble=1 %run %t 2>&1 | FileCheck --check-prefix=CHECK-SCRIBBLE %s | ||
// RUN: %env_asan_opts=max_free_fill_size=4096 %run %t 2>&1 | FileCheck --check-prefix=CHECK-SCRIBBLE %s | ||
|
||
#include <stdint.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
|
||
struct Isa { | ||
const char *class_name; | ||
}; | ||
|
||
struct MyClass { | ||
long padding; | ||
Isa *isa; | ||
long data; | ||
|
||
void print_my_class_name(); | ||
}; | ||
|
||
__attribute__((no_sanitize("address"))) | ||
void MyClass::print_my_class_name() { | ||
fprintf(stderr, "this = %p\n", this); | ||
fprintf(stderr, "padding = 0x%lx\n", this->padding); | ||
fprintf(stderr, "isa = %p\n", this->isa); | ||
|
||
if ((uint32_t)(uintptr_t)this->isa != 0x55555555) { | ||
fprintf(stderr, "class name: %s\n", this->isa->class_name); | ||
} | ||
} | ||
|
||
int main() { | ||
Isa *my_class_isa = (Isa *)malloc(sizeof(Isa)); | ||
memset(my_class_isa, 0x77, sizeof(Isa)); | ||
my_class_isa->class_name = "MyClass"; | ||
|
||
MyClass *my_object = (MyClass *)malloc(sizeof(MyClass)); | ||
memset(my_object, 0x88, sizeof(MyClass)); | ||
my_object->isa = my_class_isa; | ||
my_object->data = 42; | ||
|
||
my_object->print_my_class_name(); | ||
// CHECK-SCRIBBLE: class name: MyClass | ||
// CHECK-NOSCRIBBLE: class name: MyClass | ||
|
||
free(my_object); | ||
|
||
my_object->print_my_class_name(); | ||
// CHECK-NOSCRIBBLE: class name: MyClass | ||
// CHECK-SCRIBBLE: isa = {{(0x)?}}{{5555555555555555|55555555}} | ||
|
||
fprintf(stderr, "okthxbai!\n"); | ||
// CHECK-SCRIBBLE: okthxbai! | ||
// CHECK-NOSCRIBBLE: okthxbai! | ||
} |
This file contains 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 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 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 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 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 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 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 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 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 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 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,37 @@ | ||
// RUN: %clang_tsan %s -o %t -framework Foundation | ||
// RUN: %run %t 2>&1 | FileCheck %s | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <xpc/xpc.h> | ||
|
||
long global; | ||
|
||
int main(int argc, const char *argv[]) { | ||
fprintf(stderr, "Hello world.\n"); | ||
|
||
dispatch_queue_t server_q = dispatch_queue_create("server.queue", DISPATCH_QUEUE_CONCURRENT); | ||
xpc_connection_t server_conn = xpc_connection_create(NULL, server_q); | ||
|
||
xpc_connection_set_event_handler(server_conn, ^(xpc_object_t client) { | ||
if (client == XPC_ERROR_CONNECTION_INTERRUPTED || client == XPC_ERROR_CONNECTION_INVALID) { | ||
global = 43; | ||
|
||
dispatch_async(dispatch_get_main_queue(), ^{ | ||
CFRunLoopStop(CFRunLoopGetCurrent()); | ||
}); | ||
} | ||
}); | ||
xpc_connection_resume(server_conn); | ||
|
||
global = 42; | ||
|
||
xpc_connection_cancel(server_conn); | ||
|
||
CFRunLoopRun(); | ||
|
||
fprintf(stderr, "Done.\n"); | ||
} | ||
|
||
// CHECK: Hello world. | ||
// CHECK-NOT: WARNING: ThreadSanitizer | ||
// CHECK: Done. |