mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
2c53ec0c7b
This patch merges the sancov module and funciton passes into one module pass. The reason for this is because we ran into an out of memory error when attempting to run asan fuzzer on some protobufs (pc.cc files). I traced the OOM error to the destructor of SanitizerCoverage where we only call appendTo[Compiler]Used which calls appendToUsedList. I'm not sure where precisely in appendToUsedList causes the OOM, but I am able to confirm that it's calling this function *repeatedly* that causes the OOM. (I hacked sancov a bit such that I can still create and destroy a new sancov on every function run, but only call appendToUsedList after all functions in the module have finished. This passes, but when I make it such that appendToUsedList is called on every sancov destruction, we hit OOM.) I don't think the OOM is from just adding to the SmallSet and SmallVector inside appendToUsedList since in either case for a given module, they'll have the same max size. I suspect that when the existing llvm.compiler.used global is erased, the memory behind it isn't freed. I could be wrong on this though. This patch works around the OOM issue by just calling appendToUsedList at the end of every module run instead of function run. The same amount of constants still get added to llvm.compiler.used, abd we make the pass usage and logic simpler by not having any inter-pass dependencies. Differential Revision: https://reviews.llvm.org/D66988 llvm-svn: 370971
15 lines
700 B
LLVM
15 lines
700 B
LLVM
; Ensure that we terminate with a useful error message (instead of crash) if the
|
|
; user declares `__sancov_lowest_stack` with an unexpected type.
|
|
; RUN: not opt < %s -sancov -sanitizer-coverage-level=1 \
|
|
; RUN: -sanitizer-coverage-stack-depth -S 2>&1 | FileCheck %s
|
|
; RUN: not opt < %s -passes='module(sancov-module)' -sanitizer-coverage-level=1 \
|
|
; RUN: -sanitizer-coverage-stack-depth -S 2>&1 | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
; Wrong type: i32 instead of expected i64
|
|
@__sancov_lowest_stack = thread_local global i32 0
|
|
|
|
; CHECK: error: '__sancov_lowest_stack' should not be declared by the user
|