Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / thinlto-time-trace.ll
blobde2116fa47f2bc69e7b5da49aebf5348c4bea2d5
1 ; REQUIRES: x86
2 ; RUN: rm -rf %t; split-file %s %t
4 ; Test ThinLTO with time trace
5 ; RUN: opt -module-summary %t/f.s -o %t/f.o
6 ; RUN: opt -module-summary %t/g.s -o %t/g.o
7 ; RUN: %lld --time-trace --time-trace-granularity=0 -dylib %t/f.o %t/g.o -o %t/libTest.dylib
8 ; RUN: cat %t/libTest.dylib.time-trace \
9 ; RUN:   | %python -c 'import json, sys; json.dump(json.loads(sys.stdin.read()), sys.stdout, sort_keys=True, indent=2)' \
10 ; RUN:   | FileCheck %s
12 ; CHECK: "traceEvents": [
13 ; Check fields for an event are present
14 ; CHECK: "args":
15 ; CHECK-NEXT: "detail":
16 ; CHECK: "dur":
17 ; CHECK-NEXT: "name":
18 ; CHECK-NEXT: "ph":
19 ; CHECK-NEXT: "pid":
20 ; CHECK-NEXT: "tid":
21 ; CHECK-NEXT: "ts":
23 ; Check that an optimization event is present
24 ; CHECK: "name": "OptModule"
26 ;--- f.s
27 target triple = "x86_64-apple-darwin"
28 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
30 declare void @g(...)
32 define void @f() {
33 entry:
34   call void (...) @g()
35   ret void
38 ;--- g.s
39 target triple = "x86_64-apple-darwin"
40 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
42 define void @g() {
43 entry:
44   ret void