File: wrap-2.ll

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (73 lines) | stat: -rw-r--r-- 2,754 bytes parent folder | download | duplicates (21)
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
; REQUIRES: x86
;; This test verifies that --wrap works correctly for inter-module references to
;; the wrapped symbol, when LTO or ThinLTO is involved. It checks for various
;; combinations of bitcode and regular objects.

;; LTO + LTO
; RUN: llvm-as %s -o %t1.bc
; RUN: llvm-as %S/Inputs/wrap-bar.ll -o %t2.bc
; RUN: ld.lld %t1.bc %t2.bc -shared -o %t.bc-bc.so -wrap=bar
; RUN: llvm-objdump -d %t.bc-bc.so | FileCheck %s --check-prefixes=CHECK,JMP
; RUN: llvm-readobj --symbols %t.bc-bc.so | FileCheck --check-prefix=BIND %s

;; LTO + Object
; RUN: llc %S/Inputs/wrap-bar.ll -o %t2.o --filetype=obj
; RUN: ld.lld %t1.bc %t2.o -shared -o %t.bc-o.so -wrap=bar
; RUN: llvm-objdump -d %t.bc-o.so | FileCheck %s --check-prefixes=CHECK,JMP
; RUN: llvm-readobj --symbols %t.bc-o.so | FileCheck --check-prefix=BIND %s

;; Object + LTO
; RUN: llc %s -o %t1.o --filetype=obj
; RUN: ld.lld %t1.o %t2.bc -shared -o %t.o-bc.so -wrap=bar
; RUN: llvm-objdump -d %t.o-bc.so | FileCheck %s --check-prefixes=CHECK,CALL
; RUN: llvm-readobj --symbols %t.o-bc.so | FileCheck --check-prefix=BIND %s

;; ThinLTO + ThinLTO
; RUN: opt -module-summary %s -o %t1.thin
; RUN: opt -module-summary %S/Inputs/wrap-bar.ll -o %t2.thin
; RUN: ld.lld %t1.thin %t2.thin -shared -o %t.thin-thin.so -wrap=bar
; RUN: llvm-objdump -d %t.thin-thin.so | FileCheck %s --check-prefixes=CHECK,JMP
; RUN: llvm-readobj --symbols %t.thin-thin.so | FileCheck --check-prefix=BIND %s

;; ThinLTO + Object
; RUN: ld.lld %t1.thin %t2.o -shared -o %t.thin-o.so -wrap=bar
; RUN: llvm-objdump -d %t.thin-o.so | FileCheck %s --check-prefixes=CHECK,JMP
; RUN: llvm-readobj --symbols %t.thin-o.so | FileCheck --check-prefix=BIND %s

;; Object + ThinLTO
; RUN: ld.lld %t1.o %t2.thin -shared -o %t.o-thin.so -wrap=bar
; RUN: llvm-objdump -d %t.o-thin.so | FileCheck %s --check-prefixes=CHECK,CALL
; RUN: llvm-readobj --symbols %t.o-thin.so | FileCheck --check-prefix=BIND %s

;; Make sure that calls in foo() are not eliminated and that bar is
;; routed to __wrap_bar and __real_bar is routed to bar.

; CHECK:      <foo>:
; CHECK-NEXT: pushq	%rax
; CHECK-NEXT: callq{{.*}}<__wrap_bar>
; JMP-NEXT:   popq  %rax
; JMP-NEXT:   jmp{{.*}}<bar>
; CALL-NEXT:  callq{{.*}}<bar>
; CALL-NEXT:  popq  %rax

;; Check that bar and __wrap_bar retain their original binding.
; BIND:      Name: bar
; BIND-NEXT: Value:
; BIND-NEXT: Size:
; BIND-NEXT: Binding: Local
; BIND:      Name: __wrap_bar
; BIND-NEXT: Value:
; BIND-NEXT: Size:
; BIND-NEXT: Binding: Local

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"

declare void @bar()
declare void @__real_bar()

define void @foo() {
  call void @bar()
  call void @__real_bar()
  ret void
}