Files
clang-p2996/llvm/test/Instrumentation/AddressSanitizer/byref-args.ll
Matt Arsenault 855fe35064 AddressSanitizer: Convert tests to opaque pointers
Needed some manual fixes:
  AMDGPU/asan_instrument_generic_address_space.ll
  dynamic-shadow-darwin.ll
  lifetime.ll
  stack-poisoning-byval-args.ll
  global_metadata_windows.ll
  asan-masked-load-store.ll
  stack-poisoning-and-lifetime.ll
  stack-poisoning-and-lifetime-be.ll

This included some of the worst opaquify breakages I've seen. The
tests were dependent on 0 indexed GEPs, and had check lines directly
checking pointee types.
2022-11-27 20:10:57 -05:00

21 lines
641 B
LLVM

; RUN: opt < %s -passes=asan -S | FileCheck %s
; Test that for call instructions, the byref arguments are not
; instrumented, as no copy is implied.
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
%struct.bar = type { %struct.foo }
%struct.foo = type { ptr, ptr, ptr }
; CHECK-LABEL: @func2
; CHECK-NEXT: tail call void @func1(
; CHECK-NEXT: ret void
define dso_local void @func2(ptr %foo) sanitize_address {
tail call void @func1(ptr byref(%struct.foo) align 8 %foo) #2
ret void
}
declare dso_local void @func1(ptr byref(%struct.foo) align 8)