Skip to content

Commit 792a6f8

Browse files
authored
[RemoveDIs] Remove "try-debuginfo-iterators..." test flags (#130298)
These date back to when the non-intrinsic format of variable locations was still being tested and was behind a compile-time flag, so not all builds / bots would correctly run them. The solution at the time, to get at least some test coverage, was to have tests opt-in to non-intrinsic debug-info if it was built into LLVM. Nowadays, non-intrinsic format is the default and has been on for more than a year, there's no need for this flag to exist. (I've downgraded the flag from "try" to explicitly requesting non-intrinsic format in some places, so that we can deal with tests that are explicitly about non-intrinsic format in their own commit).
1 parent 42ddb55 commit 792a6f8

File tree

420 files changed

+4
-889
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

420 files changed

+4
-889
lines changed

llvm/test/CodeGen/AArch64/GlobalISel/combine-shift-of-shifted-dbg-value-fallback.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
22
; RUN: llc < %s -global-isel -mtriple=arm64-linux-gnu -global-isel-abort=1 | FileCheck %s
3-
; RUN: llc < %s -global-isel -mtriple=arm64-linux-gnu -global-isel-abort=1 --try-experimental-debuginfo-iterators | FileCheck %s
43
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
54
target triple = "arm64-apple-ios9.0.0"
65

llvm/test/CodeGen/AArch64/GlobalISel/debug-cpp.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
; RUN: llc -global-isel -mtriple=aarch64 %s -stop-after=irtranslator -o - | FileCheck %s
22
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 -o /dev/null
3-
; RUN: llc -global-isel -mtriple=aarch64 %s -stop-after=irtranslator -o - --try-experimental-debuginfo-iterators | FileCheck %s
4-
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 -o /dev/null --try-experimental-debuginfo-iterators
53

64
; struct NTCopy {
75
; NTCopy();

llvm/test/CodeGen/AArch64/GlobalISel/debug-insts.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 %s -o /dev/null
44
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 %s -o /dev/null -debug
55
;
6-
; RUN: llc -global-isel -mtriple=aarch64 %s -stop-after=irtranslator -o - --try-experimental-debuginfo-iterators | FileCheck %s
7-
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 %s -o /dev/null --try-experimental-debuginfo-iterators
8-
; RUN: llc -mtriple=aarch64 -global-isel --global-isel-abort=0 %s -o /dev/null -debug --try-experimental-debuginfo-iterators
96

107
; CHECK-LABEL: name: debug_declare
118
; CHECK: stack:

llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-dilocation.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
; RUN: llc -O0 -mtriple=aarch64-apple-ios -global-isel -debug-only=irtranslator \
22
; RUN: -stop-after=irtranslator %s -o - 2>&1 | FileCheck %s
3-
; RUN: llc -O0 -mtriple=aarch64-apple-ios -global-isel -debug-only=irtranslator \
4-
; RUN: -stop-after=irtranslator %s -o - 2>&1 --try-experimental-debuginfo-iterators | FileCheck %s
53

64
; REQUIRES: asserts
75

llvm/test/CodeGen/AArch64/GlobalISel/irtranslator-extract-used-by-dbg.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -O0 -stop-after=irtranslator -global-isel -verify-machineinstrs %s -o - 2>&1 | FileCheck %s
2-
; RUN: llc -O0 -stop-after=irtranslator -global-isel -verify-machineinstrs %s -o - 2>&1 --try-experimental-debuginfo-iterators | FileCheck %s
32

43
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
54
target triple = "aarch64-unknown-fuchsia"

llvm/test/CodeGen/AArch64/dbg-assign-tag-offset-mix-loc.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
32

43
;; Similar to dbg-assign-tag-offset.ll except the variable 'x' has been removed
54
;; and 'y' has an implicit location range as well as stack location range

llvm/test/CodeGen/AArch64/dbg-assign-tag-offset.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -filetype=obj -o - %s | llvm-dwarfdump - | FileCheck %s
32

43
;; Copied from dbg-value-tag-offset.ll. Check that variables with locations
54
;; tracked with dbg.assigns with DW_OP_LLVM_TAG_offset operators in their

llvm/test/CodeGen/AArch64/dbg-value-swift-async.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
; RUN: llc --mtriple="aarch64-" -O0 -fast-isel=false -global-isel=false -stop-after=finalize-isel %s -o - | FileCheck %s --check-prefix=AARCH
33
; RUN: llc --mtriple="aarch64-" -O0 -fast-isel -stop-after=finalize-isel %s -o - | FileCheck %s --check-prefix=AARCH
44

5-
; RUN: llc --mtriple="aarch64-" -O0 -global-isel -stop-after=irtranslator -verify-machineinstrs %s -o - --try-experimental-debuginfo-iterators | FileCheck %s --check-prefix=AARCH
6-
; RUN: llc --mtriple="aarch64-" -O0 -fast-isel=false -global-isel=false -stop-after=finalize-isel %s -o - --try-experimental-debuginfo-iterators | FileCheck %s --check-prefix=AARCH
7-
; RUN: llc --mtriple="aarch64-" -O0 -fast-isel -stop-after=finalize-isel %s -o - --try-experimental-debuginfo-iterators | FileCheck %s --check-prefix=AARCH
85

96
; AARCH-NOT: DBG_VALUE
107
; AARCH: DBG_VALUE $x22, $noreg, !{{.*}}, !DIExpression(DW_OP_LLVM_entry_value, 1)

llvm/test/CodeGen/AArch64/fast-isel-dbg.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -o - %s -fast-isel -stop-before=finalize-isel | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -o - %s -fast-isel -stop-before=finalize-isel | FileCheck %s
32

43
; Make sure fast-isel produces DBG_VALUE instructions even if no debug printer
54
; is scheduled because of -stop-before.

llvm/test/CodeGen/AArch64/fastisel-debugvalue-undef.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -O0 -fast-isel=1 -o - -print-after="finalize-isel" %s 2>&1 | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -O0 -fast-isel=1 -o - -print-after="finalize-isel" %s 2>&1 | FileCheck %s
32

43
; Check that we emit a DBG_VALUE for the `@llvm.dbg.value` which has `undef` has first arg.
54

llvm/test/CodeGen/AArch64/stack-tagging-dbg-assign-tag-offset.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: opt -aarch64-stack-tagging -stack-tagging-record-stack-history=instr -S -o - %s | FileCheck %s
2-
; RUN: opt --try-experimental-debuginfo-iterators -aarch64-stack-tagging -stack-tagging-record-stack-history=instr -S -o - %s | FileCheck %s
32

43
source_filename = "test.ll"
54
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"

llvm/test/CodeGen/AArch64/stack-tagging-dbg-declare-tag-offset.ll

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
; RUN: opt -aarch64-stack-tagging -stack-tagging-record-stack-history=instr -S -o - %s | FileCheck %s
22

3-
;; Also test with RemoveDIs to verify that debug intrinsics immediately
4-
;; preceding an alloca (or other instruction of interest to stack tagging) will
5-
;; be correctly processed.
6-
; RUN: opt --try-experimental-debuginfo-iterators -aarch64-stack-tagging -stack-tagging-record-stack-history=instr -S -o - %s | FileCheck %s
7-
83
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
94
target triple = "aarch64--linux-android35"
105

llvm/test/CodeGen/AArch64/stack-tagging-dbg.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: opt < %s -aarch64-stack-tagging -S -o - | FileCheck %s
2-
; RUN: opt < %s -aarch64-stack-tagging -S -o - --try-experimental-debuginfo-iterators | FileCheck %s
32

43
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
54
target triple = "aarch64--linux-android"

llvm/test/CodeGen/AMDGPU/llvm.dbg.value.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc -O0 -mtriple=amdgcn-unknown-amdhsa -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,NOOPT %s
22
; RUN: llc -mtriple=amdgcn-unknown-amdhsa -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,OPT %s
33

4-
; RUN: llc -O0 -mtriple=amdgcn-unknown-amdhsa -verify-machineinstrs < %s --try-experimental-debuginfo-iterators | FileCheck -check-prefixes=GCN,NOOPT %s
5-
; RUN: llc -mtriple=amdgcn-unknown-amdhsa -verify-machineinstrs < %s --try-experimental-debuginfo-iterators | FileCheck -check-prefixes=GCN,OPT %s
64

75
; GCN-LABEL: {{^}}test_debug_value:
86
; NOOPT: .loc 1 1 42 prologue_end ; /tmp/test_debug_value.cl:1:42

llvm/test/CodeGen/AMDGPU/si-annotate-dbg-info.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
22
; RUN: opt -mtriple=amdgcn-- -S -structurizecfg -si-annotate-control-flow %s | FileCheck -check-prefix=OPT %s
3-
; RUN: opt -mtriple=amdgcn-- -S -structurizecfg -si-annotate-control-flow %s --try-experimental-debuginfo-iterators | FileCheck -check-prefix=OPT %s
43

54
define amdgpu_ps i32 @if_else(i32 %0) !dbg !5 {
65
; OPT-LABEL: define amdgpu_ps i32 @if_else(

llvm/test/CodeGen/ARM/debug-info-blocks.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -filetype=obj -O0 < %s | llvm-dwarfdump -v - | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -filetype=obj -O0 < %s | llvm-dwarfdump -v - | FileCheck %s
32

43
; debug_info content
54
; CHECK: DW_AT_name {{.*}} "foobar_func_block_invoke_0"

llvm/test/CodeGen/Generic/csw-debug-assert.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
; REQUIRES: asserts
33
; REQUIRES: x86_64-linux
44
; RUN: llc -O1 -regalloc=pbqp < %s | FileCheck %s
5-
; RUN: llc --try-experimental-debuginfo-iterators -O1 -regalloc=pbqp < %s | FileCheck %s
65

76
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
87
target triple = "x86_64-unknown-linux-gnu"

llvm/test/CodeGen/X86/2010-08-04-StackVariable.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -O0 -mtriple=x86_64-apple-darwin < %s | grep DW_OP_breg7
2-
; RUN: llc --try-experimental-debuginfo-iterators -O0 -mtriple=x86_64-apple-darwin < %s | grep DW_OP_breg7
32
; Use DW_OP_breg7 in variable's location expression if the variable is in a stack slot.
43

54
%struct.SVal = type { ptr, i32 }
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
RUN: llc -O0 -mtriple=i686-- -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
22
RUN: llc -O0 -mtriple=x86_64-- -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
33

4-
RUN: llc --try-experimental-debuginfo-iterators -O0 -mtriple=i686-- -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
5-
RUN: llc --try-experimental-debuginfo-iterators -O0 -mtriple=x86_64-- -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll

llvm/test/CodeGen/X86/GlobalISel/x86-calllowering-dbg-trunc.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -mtriple=i386-linux-gnu -global-isel -verify-machineinstrs < %s -o - | FileCheck %s --check-prefix=ALL
2-
; RUN: llc -mtriple=i386-linux-gnu -global-isel -verify-machineinstrs < %s -o - --try-experimental-debuginfo-iterators | FileCheck %s --check-prefix=ALL
32

43
; This file is the output of clang -g -O2
54
; int test_dbg_trunc(unsigned long long a) { return a; }

llvm/test/CodeGen/X86/dbg-combine.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -mtriple x86_64-pc-linux -O0 < %s | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -mtriple x86_64-pc-linux -O0 < %s | FileCheck %s
32

43
; Make sure that the sequence of debug locations for function foo is correctly
54
; generated. More specifically, .loc entries for lines 4,5,6,7 must appear in

llvm/test/CodeGen/X86/fast-isel-dbg-value-alloca.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
; RUN: llc -fast-isel -fast-isel-abort=1 -mtriple=x86_64-unknown-unknown -stop-after=finalize-isel %s -o - | \
22
; RUN: FileCheck %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators -fast-isel -fast-isel-abort=1 -mtriple=x86_64-unknown-unknown -stop-after=finalize-isel %s -o - | FileCheck %s
54

65
define void @foo(ptr noalias nocapture %arg) !dbg !38 {
76
%k.debug = alloca ptr, align 8

llvm/test/CodeGen/X86/fold-sext-trunc.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
22
; RUN: llc < %s -O0 -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -stop-after livedebugvalues -o - | FileCheck %s -check-prefix=MIR
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s -mtriple=x86_64-- | FileCheck %s
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s -O0 -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -stop-after livedebugvalues -o - | FileCheck %s -check-prefix=MIR
64

75
; PR4050
86

llvm/test/CodeGen/X86/fold-zext-trunc.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s | FileCheck %s -check-prefix=ASM
22
; RUN: llc < %s -O0 -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -stop-after livedebugvalues -o - | FileCheck %s -check-prefix=MIR
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck %s -check-prefix=ASM
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s -O0 -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -stop-after livedebugvalues -o - | FileCheck %s -check-prefix=MIR
64

75
; PR9055
86
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"

llvm/test/CodeGen/X86/label-heapallocsite.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s | FileCheck --check-prefixes=CHECK %s
22
; RUN: llc -O0 < %s | FileCheck --check-prefixes=CHECK %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck --check-prefixes=CHECK %s
5-
; RUN: llc --try-experimental-debuginfo-iterators -O0 < %s | FileCheck --check-prefixes=CHECK %s
64

75
; Source to regenerate:
86
; $ clang -cc1 -triple x86_64-windows-msvc t.cpp -debug-info-kind=limited \

llvm/test/CodeGen/X86/machine-outliner-disubprogram.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
; Also make sure that the DISubprograms reference the generated unit.
44
; make sure that if there are two outlined functions in the program,
55
; RUN: llc %s -verify-machineinstrs -enable-machine-outliner -mtriple=x86_64-apple-darwin -o /dev/null -print-after=machine-outliner
6-
; RUN: llc --try-experimental-debuginfo-iterators %s -verify-machineinstrs -enable-machine-outliner -mtriple=x86_64-apple-darwin -o /dev/null -print-after=machine-outliner
76
define void @f6() #0 !dbg !8 {
87
entry:
98
%dog = alloca i32, align 4

llvm/test/CodeGen/X86/pr53243-tail-call-fastisel.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
22
; RUN: llc -O0 -fast-isel -mtriple=x86_64-- < %s | FileCheck %s
3-
; RUN: llc --try-experimental-debuginfo-iterators -O0 -fast-isel -mtriple=x86_64-- < %s | FileCheck %s
43

54
define void @test() {
65
; CHECK-LABEL: test:

llvm/test/CodeGen/X86/select-optimize.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
; RUN: opt -mtriple=x86_64-unknown-unknown -select-optimize -S < %s | FileCheck %s
33
; RUN: opt -mtriple=x86_64-unknown-unknown -passes='require<profile-summary>,function(select-optimize)' -S < %s | FileCheck %s
44

5-
; RUN: opt -mtriple=x86_64-unknown-unknown -select-optimize -S < %s --try-experimental-debuginfo-iterators | FileCheck %s
6-
; RUN: opt -mtriple=x86_64-unknown-unknown -passes='require<profile-summary>,function(select-optimize)' -S < %s --try-experimental-debuginfo-iterators | FileCheck %s
75

86
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
97
;; Test base heuristic 1:

llvm/test/CodeGen/X86/selectiondag-order.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
; Check that debug intrinsics do not affect code generation.
22

33
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck --check-prefix=X86-CHECK %s
4-
; RUN: llc --try-experimental-debuginfo-iterators < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck --check-prefix=X86-CHECK %s
54

65
define i64 @simulate(<2 x i32> %a) {
76
entry:

llvm/test/CodeGen/X86/sink-local-value.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -O0 < %s | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -O0 < %s | FileCheck %s
32

43
target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
54
target triple = "i386-linux-gnu"

llvm/test/DebugInfo/AArch64/cfi-eof-prologue.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
; of CFI instructions.
1616

1717
; RUN: llc -fast-isel -O0 -filetype=asm < %s | FileCheck %s
18-
; RUN: llc --try-experimental-debuginfo-iterators -fast-isel -O0 -filetype=asm < %s | FileCheck %s
1918

2019
; ModuleID = 'test1.cpp'
2120
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"

llvm/test/DebugInfo/AArch64/frameindices.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -frame-pointer=all -O0 -fast-isel -filetype=obj < %s | llvm-dwarfdump -v - | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -frame-pointer=all -O0 -fast-isel -filetype=obj < %s | llvm-dwarfdump -v - | FileCheck %s
32
; Test that a variable with multiple entries in the MMI table makes it into the
43
; debug info.
54
;

llvm/test/DebugInfo/AArch64/select-optimize-trailing-dbg-records.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
; RUN: opt %s -passes='require<profile-summary>,function(select-optimize)' -o - -S \
22
; RUN: | FileCheck %s
3-
; RUN: opt %s --try-experimental-debuginfo-iterators -passes='require<profile-summary>,function(select-optimize)' -o - -S \
4-
; RUN: | FileCheck %s
53

64
;; Check that the dbg.value is moved into the start of the end-block of the
75
;; inserted if-block.

llvm/test/DebugInfo/ARM/lowerbdgdeclare_vla.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: opt -passes=instcombine %s -S | FileCheck %s
2-
; RUN: opt --try-experimental-debuginfo-iterators -passes=instcombine %s -S | FileCheck %s
32
;
43
; Generate me from:
54
; clang -cc1 -triple thumbv7-apple-ios7.0.0 -S -target-abi apcs-gnu -gdwarf-2 -Os test.c -o test.ll -emit-llvm

llvm/test/DebugInfo/ARM/split-complex.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
; RUN: llc -mtriple=thumbv7-apple-unknown-macho -O0 -filetype=obj -o - %s \
22
; RUN: | llvm-dwarfdump -v -debug-info - | FileCheck %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators -mtriple=thumbv7-apple-unknown-macho -O0 -filetype=obj -o - %s \
5-
; RUN: | llvm-dwarfdump -v -debug-info - | FileCheck %s
6-
74
; generated from (-triple thumbv7-apple-unknown-macho -Os):
85
; void f(_Complex double c) { c = 0; }
96

llvm/test/DebugInfo/ARM/sroa-complex.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: opt -passes='sroa' -S -o - %s | FileCheck %s
2-
; RUN: opt --try-experimental-debuginfo-iterators -passes='sroa' -S -o - %s | FileCheck %s
32
target datalayout = "e-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
43
target triple = "thumbv7-apple-unknown-macho"
54

llvm/test/DebugInfo/COFF/class-options-common.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
; RUN: llc < %s | FileCheck %s --check-prefix=ASM-INLINE-COMMENTS
44
;
55
; Same as above, with experimental debuginfo iterators.
6-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
7-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
8-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck %s --check-prefix=ASM-INLINE-COMMENTS
96
;
107
; Command to generate function-options.ll
118
; $ clang++ class-options-common.cpp -S -emit-llvm -g -gcodeview -o class-options-common.ll

llvm/test/DebugInfo/COFF/cpp-mangling.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
; RUN: llc -mcpu=core2 -mtriple=i686-pc-win32 -o - -O0 -filetype=obj < %s \
22
; RUN: | llvm-readobj --codeview - | FileCheck %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators -mcpu=core2 -mtriple=i686-pc-win32 -o - -O0 -filetype=obj < %s \
5-
; RUN: | llvm-readobj --codeview - | FileCheck %s
6-
74
; C++ source to regenerate:
85
; namespace foo {
96
; int bar(int x) { return x * 2; }

llvm/test/DebugInfo/COFF/enum-co.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
22
; RUN: llc < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
64

75
; Command to generate enum-co.ll
86
; $ clang++ enum-co.cpp -S -emit-llvm -g -gcodeview -o enum-co.ll

llvm/test/DebugInfo/COFF/function-options.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
22
; RUN: llc < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
64
;
75
; Command to generate function-options.ll
86
; $ clang++ function-options.cpp -S -emit-llvm -g -gcodeview -o function-options.ll

llvm/test/DebugInfo/COFF/global_visibility.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
32
;
43
; This test verifies global variables are emitted within the correct scope.
54
;

llvm/test/DebugInfo/COFF/globals.ll

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
; RUN: llc < %s -filetype=obj -o %t
66
; RUN: obj2yaml < %t | FileCheck %s --check-prefixes=YAML,YAML-FILE
77

8-
; Repeat with experimental debuginfo iterators:
9-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck %s --check-prefix=ASM
10-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s --check-prefix=OBJ
11-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s --check-prefix=OBJ
12-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | obj2yaml | FileCheck %s --check-prefixes=YAML,YAML-STDOUT
13-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj -o %t
14-
; RUN: obj2yaml < %t | FileCheck %s --check-prefixes=YAML,YAML-FILE
15-
168
; C++ source to regenerate:
179
; $ cat a.cpp
1810
; int first;

llvm/test/DebugInfo/COFF/lambda.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
22
; RUN: llc < %s | llvm-mc -filetype=obj --triple=i686-windows | llvm-readobj - --codeview | FileCheck %s
33
;
4-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=i686-windows | llvm-readobj - --codeview | FileCheck %s
64
;
75
; Verify lambda routines are emitted properly in CodeView.
86
;

llvm/test/DebugInfo/COFF/lines-bb-start.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: llc -O0 < %s | FileCheck %s
2-
; RUN: llc --try-experimental-debuginfo-iterators -O0 < %s | FileCheck %s
32

43
source_filename = "t.c"
54
target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"

llvm/test/DebugInfo/COFF/nrvo.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
; RUN: llc < %s | FileCheck %s --check-prefix=ASM
22
; RUN: llc < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s --check-prefix=OBJ
33

4-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck %s --check-prefix=ASM
5-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s --check-prefix=OBJ
64

75
; C++ source to regenerate:
86
; struct Foo {

llvm/test/DebugInfo/COFF/numeric-leaves.ll

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
; RUN: llc < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
33
; RUN: llc < %s | FileCheck %s --check-prefix=ASM
44

5-
; Repeat with experimental debuginfo iterators.
6-
; RUN: llc --try-experimental-debuginfo-iterators < %s -filetype=obj | llvm-readobj - --codeview | FileCheck %s
7-
; RUN: llc --try-experimental-debuginfo-iterators < %s | llvm-mc -filetype=obj --triple=x86_64-windows | llvm-readobj - --codeview | FileCheck %s
8-
; RUN: llc --try-experimental-debuginfo-iterators < %s | FileCheck %s --check-prefix=ASM
9-
105
; C++ source to regenerate:
116
; $ cat numeric-leaves.cpp
127
; const long long Minus1 = -1;

0 commit comments

Comments
 (0)