summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-01-22 11:03:49 -0800
committerGitHub <noreply@github.com>2020-01-22 11:03:49 -0800
commited3277ab496555fcf7cd449d1e1da01618d764ed (patch)
tree942f1f48dc0f0f4dd50dc3e3b71f1f7cd824fe9e
parent3fbe9423fcadf1b71eb45143f18dc994fb7c69e1 (diff)
downloadbinaryen-ed3277ab496555fcf7cd449d1e1da01618d764ed.tar.gz
binaryen-ed3277ab496555fcf7cd449d1e1da01618d764ed.tar.bz2
binaryen-ed3277ab496555fcf7cd449d1e1da01618d764ed.zip
DWARF: Use end_sequence and copy properly (#2610)
We need to track end_sequence directly, and use either end_sequence or copy (copy emits a line without marking it as ending a sequence). After this, fib2 debug line output looks perfect.
-rw-r--r--src/wasm/wasm-debug.cpp18
-rw-r--r--test/passes/fannkuch3.bin.txt3259
-rw-r--r--test/passes/fannkuch3_manyopts.bin.txt1055
-rw-r--r--test/passes/fib2.bin.txt169
-rw-r--r--test/passes/ignore_missing_func.bin.txt155
-rw-r--r--test/passes/multi_line_table.bin.txt64
6 files changed, 2274 insertions, 2446 deletions
diff --git a/src/wasm/wasm-debug.cpp b/src/wasm/wasm-debug.cpp
index e0464db0c..3a683e11c 100644
--- a/src/wasm/wasm-debug.cpp
+++ b/src/wasm/wasm-debug.cpp
@@ -121,6 +121,7 @@ struct LineState {
// XXX these two should be just prologue, epilogue?
bool prologueEnd = false;
bool epilogueBegin = false;
+ bool endSequence = false;
LineState(const LineState& other) = default;
LineState(const llvm::DWARFYAML::LineTable& table)
@@ -140,6 +141,7 @@ struct LineState {
break;
}
case llvm::dwarf::DW_LNE_end_sequence: {
+ endSequence = true;
return true;
}
case llvm::dwarf::DW_LNE_set_discriminator: {
@@ -299,14 +301,18 @@ struct LineState {
Fatal() << "eb";
}
if (useSpecial) {
- // Emit a special, which ends a sequence automatically.
+ // Emit a special, which emits a line automatically.
// TODO
} else {
- // End the sequence manually.
- // len = 1 (subopcode)
- newOpcodes.push_back(makeItem(llvm::dwarf::DW_LNE_end_sequence, 1));
- // Reset the state.
- *this = LineState(table);
+ // Emit the line manually.
+ if (endSequence) {
+ // len = 1 (subopcode)
+ newOpcodes.push_back(makeItem(llvm::dwarf::DW_LNE_end_sequence, 1));
+ // Reset the state.
+ *this = LineState(table);
+ } else {
+ newOpcodes.push_back(makeItem(llvm::dwarf::DW_LNS_copy));
+ }
}
}
diff --git a/test/passes/fannkuch3.bin.txt b/test/passes/fannkuch3.bin.txt
index f009ff027..e2f3e3675 100644
--- a/test/passes/fannkuch3.bin.txt
+++ b/test/passes/fannkuch3.bin.txt
@@ -2303,7 +2303,7 @@ Contains section .debug_info (851 bytes)
Contains section .debug_loc (1073 bytes)
Contains section .debug_ranges (88 bytes)
Contains section .debug_abbrev (333 bytes)
-Contains section .debug_line (3895 bytes)
+Contains section .debug_line (2946 bytes)
Contains section .debug_str (434 bytes)
.debug_abbrev contents:
@@ -3119,7 +3119,7 @@ Abbrev table for offset: 0x00000000
.debug_line contents:
debug_line[0x00000000]
Line table prologue:
- total_length: 0x00000f33
+ total_length: 0x00000b7e
version: 4
prologue_length: 0x000000dd
min_inst_length: 1
@@ -3163,1697 +3163,1580 @@ file_names[ 4]:
length: 0x00000000
0x000000e7: 00 DW_LNE_set_address (0x0000000000000006)
0x000000ee: 03 DW_LNS_advance_line (27)
-0x000000f0: 00 DW_LNE_end_sequence
- 0x0000000000000006 27 0 1 0 0 is_stmt end_sequence
-
-0x000000f3: 00 DW_LNE_set_address (0x000000000000000d)
-0x000000fa: 03 DW_LNS_advance_line (33)
-0x000000fc: 05 DW_LNS_set_column (14)
-0x000000fe: 0a DW_LNS_set_prologue_end
-0x000000ff: 00 DW_LNE_end_sequence
- 0x000000000000000d 33 14 1 0 0 is_stmt end_sequence
-
-0x00000102: 00 DW_LNE_set_address (0x0000000000000016)
-0x00000109: 03 DW_LNS_advance_line (34)
-0x0000010b: 05 DW_LNS_set_column (27)
-0x0000010d: 0a DW_LNS_set_prologue_end
-0x0000010e: 00 DW_LNE_end_sequence
- 0x0000000000000016 34 27 1 0 0 is_stmt end_sequence
-
-0x00000111: 00 DW_LNE_set_address (0x0000000000000017)
-0x00000118: 03 DW_LNS_advance_line (34)
-0x0000011a: 05 DW_LNS_set_column (18)
-0x0000011c: 06 DW_LNS_negate_stmt
-0x0000011d: 0a DW_LNS_set_prologue_end
-0x0000011e: 00 DW_LNE_end_sequence
- 0x0000000000000017 34 18 1 0 0 end_sequence
-
-0x00000121: 00 DW_LNE_set_address (0x000000000000001d)
-0x00000128: 03 DW_LNS_advance_line (35)
-0x0000012a: 05 DW_LNS_set_column (17)
-0x0000012c: 0a DW_LNS_set_prologue_end
-0x0000012d: 00 DW_LNE_end_sequence
- 0x000000000000001d 35 17 1 0 0 is_stmt end_sequence
-
-0x00000130: 00 DW_LNE_set_address (0x0000000000000023)
-0x00000137: 03 DW_LNS_advance_line (36)
-0x00000139: 05 DW_LNS_set_column (18)
-0x0000013b: 0a DW_LNS_set_prologue_end
-0x0000013c: 00 DW_LNE_end_sequence
- 0x0000000000000023 36 18 1 0 0 is_stmt end_sequence
-
-0x0000013f: 00 DW_LNE_set_address (0x000000000000002f)
-0x00000146: 03 DW_LNS_advance_line (37)
-0x00000148: 05 DW_LNS_set_column (18)
-0x0000014a: 0a DW_LNS_set_prologue_end
-0x0000014b: 00 DW_LNE_end_sequence
- 0x000000000000002f 37 18 1 0 0 is_stmt end_sequence
-
-0x0000014e: 00 DW_LNE_set_address (0x0000000000000034)
-0x00000155: 03 DW_LNS_advance_line (37)
-0x00000157: 05 DW_LNS_set_column (4)
+0x000000f0: 01 DW_LNS_copy
+ 0x0000000000000006 27 0 1 0 0 is_stmt
+
+
+0x000000f1: 00 DW_LNE_set_address (0x000000000000000d)
+0x000000f8: 03 DW_LNS_advance_line (33)
+0x000000fa: 05 DW_LNS_set_column (14)
+0x000000fc: 0a DW_LNS_set_prologue_end
+0x000000fd: 01 DW_LNS_copy
+ 0x000000000000000d 33 14 1 0 0 is_stmt prologue_end
+
+
+0x000000fe: 00 DW_LNE_set_address (0x0000000000000016)
+0x00000105: 03 DW_LNS_advance_line (34)
+0x00000107: 05 DW_LNS_set_column (27)
+0x00000109: 01 DW_LNS_copy
+ 0x0000000000000016 34 27 1 0 0 is_stmt
+
+
+0x0000010a: 00 DW_LNE_set_address (0x0000000000000017)
+0x00000111: 05 DW_LNS_set_column (18)
+0x00000113: 06 DW_LNS_negate_stmt
+0x00000114: 01 DW_LNS_copy
+ 0x0000000000000017 34 18 1 0 0
+
+
+0x00000115: 00 DW_LNE_set_address (0x000000000000001d)
+0x0000011c: 03 DW_LNS_advance_line (35)
+0x0000011e: 05 DW_LNS_set_column (17)
+0x00000120: 06 DW_LNS_negate_stmt
+0x00000121: 01 DW_LNS_copy
+ 0x000000000000001d 35 17 1 0 0 is_stmt
+
+
+0x00000122: 00 DW_LNE_set_address (0x0000000000000023)
+0x00000129: 03 DW_LNS_advance_line (36)
+0x0000012b: 05 DW_LNS_set_column (18)
+0x0000012d: 01 DW_LNS_copy
+ 0x0000000000000023 36 18 1 0 0 is_stmt
+
+
+0x0000012e: 00 DW_LNE_set_address (0x000000000000002f)
+0x00000135: 03 DW_LNS_advance_line (37)
+0x00000137: 01 DW_LNS_copy
+ 0x000000000000002f 37 18 1 0 0 is_stmt
+
+
+0x00000138: 00 DW_LNE_set_address (0x0000000000000034)
+0x0000013f: 05 DW_LNS_set_column (4)
+0x00000141: 06 DW_LNS_negate_stmt
+0x00000142: 01 DW_LNS_copy
+ 0x0000000000000034 37 4 1 0 0
+
+
+0x00000143: 00 DW_LNE_set_address (0x0000000000000038)
+0x0000014a: 03 DW_LNS_advance_line (38)
+0x0000014c: 05 DW_LNS_set_column (7)
+0x0000014e: 06 DW_LNS_negate_stmt
+0x0000014f: 01 DW_LNS_copy
+ 0x0000000000000038 38 7 1 0 0 is_stmt
+
+
+0x00000150: 00 DW_LNE_set_address (0x0000000000000040)
+0x00000157: 05 DW_LNS_set_column (16)
0x00000159: 06 DW_LNS_negate_stmt
-0x0000015a: 0a DW_LNS_set_prologue_end
-0x0000015b: 00 DW_LNE_end_sequence
- 0x0000000000000034 37 4 1 0 0 end_sequence
-
-0x0000015e: 00 DW_LNE_set_address (0x0000000000000038)
-0x00000165: 03 DW_LNS_advance_line (38)
-0x00000167: 05 DW_LNS_set_column (7)
-0x00000169: 0a DW_LNS_set_prologue_end
-0x0000016a: 00 DW_LNE_end_sequence
- 0x0000000000000038 38 7 1 0 0 is_stmt end_sequence
-
-0x0000016d: 00 DW_LNE_set_address (0x0000000000000040)
-0x00000174: 03 DW_LNS_advance_line (38)
-0x00000176: 05 DW_LNS_set_column (16)
-0x00000178: 06 DW_LNS_negate_stmt
-0x00000179: 0a DW_LNS_set_prologue_end
-0x0000017a: 00 DW_LNE_end_sequence
- 0x0000000000000040 38 16 1 0 0 end_sequence
-
-0x0000017d: 00 DW_LNE_set_address (0x0000000000000045)
-0x00000184: 03 DW_LNS_advance_line (37)
-0x00000186: 05 DW_LNS_set_column (24)
-0x00000188: 0a DW_LNS_set_prologue_end
-0x00000189: 00 DW_LNE_end_sequence
- 0x0000000000000045 37 24 1 0 0 is_stmt end_sequence
-
-0x0000018c: 00 DW_LNE_set_address (0x000000000000004a)
-0x00000193: 03 DW_LNS_advance_line (37)
-0x00000195: 05 DW_LNS_set_column (18)
-0x00000197: 06 DW_LNS_negate_stmt
-0x00000198: 0a DW_LNS_set_prologue_end
-0x00000199: 00 DW_LNE_end_sequence
- 0x000000000000004a 37 18 1 0 0 end_sequence
-
-0x0000019c: 00 DW_LNE_set_address (0x000000000000004f)
-0x000001a3: 03 DW_LNS_advance_line (37)
-0x000001a5: 05 DW_LNS_set_column (4)
-0x000001a7: 06 DW_LNS_negate_stmt
-0x000001a8: 0a DW_LNS_set_prologue_end
-0x000001a9: 00 DW_LNE_end_sequence
- 0x000000000000004f 37 4 1 0 0 end_sequence
-
-0x000001ac: 00 DW_LNE_set_address (0x0000000000000052)
-0x000001b3: 03 DW_LNS_advance_line (39)
-0x000001b5: 05 DW_LNS_set_column (4)
-0x000001b7: 0a DW_LNS_set_prologue_end
-0x000001b8: 00 DW_LNE_end_sequence
- 0x0000000000000052 39 4 1 0 0 is_stmt end_sequence
-
-0x000001bb: 00 DW_LNE_set_address (0x0000000000000054)
-0x000001c2: 03 DW_LNS_advance_line (39)
-0x000001c4: 05 DW_LNS_set_column (16)
-0x000001c6: 06 DW_LNS_negate_stmt
-0x000001c7: 0a DW_LNS_set_prologue_end
-0x000001c8: 00 DW_LNE_end_sequence
- 0x0000000000000054 39 16 1 0 0 end_sequence
-
-0x000001cb: 00 DW_LNE_set_address (0x000000000000005d)
-0x000001d2: 03 DW_LNS_advance_line (39)
-0x000001d4: 05 DW_LNS_set_column (4)
-0x000001d6: 06 DW_LNS_negate_stmt
-0x000001d7: 0a DW_LNS_set_prologue_end
-0x000001d8: 00 DW_LNE_end_sequence
- 0x000000000000005d 39 4 1 0 0 end_sequence
-
-0x000001db: 00 DW_LNE_set_address (0x000000000000005f)
-0x000001e2: 03 DW_LNS_advance_line (39)
-0x000001e4: 05 DW_LNS_set_column (23)
-0x000001e6: 06 DW_LNS_negate_stmt
-0x000001e7: 0a DW_LNS_set_prologue_end
-0x000001e8: 00 DW_LNE_end_sequence
- 0x000000000000005f 39 23 1 0 0 end_sequence
-
-0x000001eb: 00 DW_LNE_set_address (0x0000000000000064)
-0x000001f2: 03 DW_LNS_advance_line (39)
-0x000001f4: 05 DW_LNS_set_column (19)
-0x000001f6: 06 DW_LNS_negate_stmt
-0x000001f7: 0a DW_LNS_set_prologue_end
-0x000001f8: 00 DW_LNE_end_sequence
- 0x0000000000000064 39 19 1 0 0 end_sequence
-
-0x000001fb: 00 DW_LNE_set_address (0x0000000000000069)
-0x00000202: 03 DW_LNS_advance_line (40)
-0x00000204: 05 DW_LNS_set_column (4)
-0x00000206: 0a DW_LNS_set_prologue_end
-0x00000207: 00 DW_LNE_end_sequence
- 0x0000000000000069 40 4 1 0 0 is_stmt end_sequence
-
-0x0000020a: 00 DW_LNE_set_address (0x0000000000000071)
-0x00000211: 03 DW_LNS_advance_line (40)
-0x00000213: 05 DW_LNS_set_column (17)
-0x00000215: 06 DW_LNS_negate_stmt
-0x00000216: 0a DW_LNS_set_prologue_end
-0x00000217: 00 DW_LNE_end_sequence
- 0x0000000000000071 40 17 1 0 0 end_sequence
-
-0x0000021a: 00 DW_LNE_set_address (0x000000000000007c)
-0x00000221: 03 DW_LNS_advance_line (37)
-0x00000223: 05 DW_LNS_set_column (18)
-0x00000225: 0a DW_LNS_set_prologue_end
-0x00000226: 00 DW_LNE_end_sequence
- 0x000000000000007c 37 18 1 0 0 is_stmt end_sequence
-
-0x00000229: 00 DW_LNE_set_address (0x0000000000000081)
-0x00000230: 03 DW_LNS_advance_line (43)
-0x00000232: 05 DW_LNS_set_column (4)
-0x00000234: 0a DW_LNS_set_prologue_end
-0x00000235: 00 DW_LNE_end_sequence
- 0x0000000000000081 43 4 1 0 0 is_stmt end_sequence
-
-0x00000238: 00 DW_LNE_set_address (0x0000000000000087)
-0x0000023f: 03 DW_LNS_advance_line (44)
-0x00000241: 05 DW_LNS_set_column (16)
-0x00000243: 0a DW_LNS_set_prologue_end
-0x00000244: 00 DW_LNE_end_sequence
- 0x0000000000000087 44 16 1 0 0 is_stmt end_sequence
-
-0x00000247: 00 DW_LNE_set_address (0x0000000000000090)
-0x0000024e: 03 DW_LNS_advance_line (45)
-0x00000250: 05 DW_LNS_set_column (10)
-0x00000252: 0a DW_LNS_set_prologue_end
-0x00000253: 00 DW_LNE_end_sequence
- 0x0000000000000090 45 10 1 0 0 is_stmt end_sequence
-
-0x00000256: 00 DW_LNE_set_address (0x0000000000000092)
-0x0000025d: 03 DW_LNS_advance_line (45)
-0x0000025f: 05 DW_LNS_set_column (18)
-0x00000261: 06 DW_LNS_negate_stmt
-0x00000262: 0a DW_LNS_set_prologue_end
-0x00000263: 00 DW_LNE_end_sequence
- 0x0000000000000092 45 18 1 0 0 end_sequence
-
-0x00000266: 00 DW_LNE_set_address (0x000000000000009b)
-0x0000026d: 03 DW_LNS_advance_line (45)
-0x0000026f: 05 DW_LNS_set_column (10)
-0x00000271: 06 DW_LNS_negate_stmt
-0x00000272: 0a DW_LNS_set_prologue_end
-0x00000273: 00 DW_LNE_end_sequence
- 0x000000000000009b 45 10 1 0 0 end_sequence
-
-0x00000276: 00 DW_LNE_set_address (0x000000000000009d)
-0x0000027d: 03 DW_LNS_advance_line (45)
-0x0000027f: 05 DW_LNS_set_column (23)
-0x00000281: 06 DW_LNS_negate_stmt
-0x00000282: 0a DW_LNS_set_prologue_end
-0x00000283: 00 DW_LNE_end_sequence
- 0x000000000000009d 45 23 1 0 0 end_sequence
-
-0x00000286: 00 DW_LNE_set_address (0x00000000000000a2)
-0x0000028d: 03 DW_LNS_advance_line (44)
-0x0000028f: 05 DW_LNS_set_column (16)
-0x00000291: 0a DW_LNS_set_prologue_end
-0x00000292: 00 DW_LNE_end_sequence
- 0x00000000000000a2 44 16 1 0 0 is_stmt end_sequence
-
-0x00000295: 00 DW_LNE_set_address (0x00000000000000ad)
-0x0000029c: 03 DW_LNS_advance_line (44)
-0x0000029e: 05 DW_LNS_set_column (7)
-0x000002a0: 06 DW_LNS_negate_stmt
-0x000002a1: 0a DW_LNS_set_prologue_end
-0x000002a2: 00 DW_LNE_end_sequence
- 0x00000000000000ad 44 7 1 0 0 end_sequence
-
-0x000002a5: 00 DW_LNE_set_address (0x00000000000000b3)
-0x000002ac: 03 DW_LNS_advance_line (46)
-0x000002ae: 05 DW_LNS_set_column (11)
-0x000002b0: 0a DW_LNS_set_prologue_end
-0x000002b1: 00 DW_LNE_end_sequence
- 0x00000000000000b3 46 11 1 0 0 is_stmt end_sequence
-
-0x000002b4: 00 DW_LNE_set_address (0x00000000000000bf)
-0x000002bb: 03 DW_LNS_advance_line (46)
-0x000002bd: 05 DW_LNS_set_column (28)
-0x000002bf: 06 DW_LNS_negate_stmt
-0x000002c0: 0a DW_LNS_set_prologue_end
-0x000002c1: 00 DW_LNE_end_sequence
- 0x00000000000000bf 46 28 1 0 0 end_sequence
-
-0x000002c4: 00 DW_LNE_set_address (0x00000000000000c4)
-0x000002cb: 03 DW_LNS_advance_line (46)
-0x000002cd: 05 DW_LNS_set_column (41)
-0x000002cf: 06 DW_LNS_negate_stmt
-0x000002d0: 0a DW_LNS_set_prologue_end
-0x000002d1: 00 DW_LNE_end_sequence
- 0x00000000000000c4 46 41 1 0 0 end_sequence
-
-0x000002d4: 00 DW_LNE_set_address (0x00000000000000c9)
-0x000002db: 03 DW_LNS_advance_line (48)
-0x000002dd: 05 DW_LNS_set_column (21)
-0x000002df: 0a DW_LNS_set_prologue_end
-0x000002e0: 00 DW_LNE_end_sequence
- 0x00000000000000c9 48 21 1 0 0 is_stmt end_sequence
-
-0x000002e3: 00 DW_LNE_set_address (0x00000000000000d1)
-0x000002ea: 03 DW_LNS_advance_line (50)
-0x000002ec: 05 DW_LNS_set_column (14)
-0x000002ee: 0a DW_LNS_set_prologue_end
-0x000002ef: 00 DW_LNE_end_sequence
- 0x00000000000000d1 50 14 1 0 0 is_stmt end_sequence
-
-0x000002f2: 00 DW_LNE_set_address (0x00000000000000e4)
-0x000002f9: 03 DW_LNS_advance_line (52)
-0x000002fb: 05 DW_LNS_set_column (38)
-0x000002fd: 0a DW_LNS_set_prologue_end
-0x000002fe: 00 DW_LNE_end_sequence
- 0x00000000000000e4 52 38 1 0 0 is_stmt end_sequence
-
-0x00000301: 00 DW_LNE_set_address (0x00000000000000f8)
-0x00000308: 03 DW_LNS_advance_line (53)
-0x0000030a: 05 DW_LNS_set_column (22)
-0x0000030c: 0a DW_LNS_set_prologue_end
-0x0000030d: 00 DW_LNE_end_sequence
- 0x00000000000000f8 53 22 1 0 0 is_stmt end_sequence
-
-0x00000310: 00 DW_LNE_set_address (0x0000000000000107)
-0x00000317: 03 DW_LNS_advance_line (54)
-0x00000319: 05 DW_LNS_set_column (24)
-0x0000031b: 0a DW_LNS_set_prologue_end
-0x0000031c: 00 DW_LNE_end_sequence
- 0x0000000000000107 54 24 1 0 0 is_stmt end_sequence
-
-0x0000031f: 00 DW_LNE_set_address (0x0000000000000109)
-0x00000326: 03 DW_LNS_advance_line (54)
-0x00000328: 05 DW_LNS_set_column (26)
-0x0000032a: 06 DW_LNS_negate_stmt
-0x0000032b: 0a DW_LNS_set_prologue_end
-0x0000032c: 00 DW_LNE_end_sequence
- 0x0000000000000109 54 26 1 0 0 end_sequence
-
-0x0000032f: 00 DW_LNE_set_address (0x0000000000000116)
-0x00000336: 03 DW_LNS_advance_line (54)
-0x00000338: 05 DW_LNS_set_column (24)
-0x0000033a: 06 DW_LNS_negate_stmt
-0x0000033b: 0a DW_LNS_set_prologue_end
-0x0000033c: 00 DW_LNE_end_sequence
- 0x0000000000000116 54 24 1 0 0 end_sequence
-
-0x0000033f: 00 DW_LNE_set_address (0x0000000000000119)
-0x00000346: 03 DW_LNS_advance_line (55)
-0x00000348: 05 DW_LNS_set_column (24)
-0x0000034a: 0a DW_LNS_set_prologue_end
-0x0000034b: 00 DW_LNE_end_sequence
- 0x0000000000000119 55 24 1 0 0 is_stmt end_sequence
-
-0x0000034e: 00 DW_LNE_set_address (0x0000000000000120)
-0x00000355: 03 DW_LNS_advance_line (52)
-0x00000357: 05 DW_LNS_set_column (44)
-0x00000359: 0a DW_LNS_set_prologue_end
-0x0000035a: 00 DW_LNE_end_sequence
- 0x0000000000000120 52 44 1 0 0 is_stmt end_sequence
-
-0x0000035d: 00 DW_LNE_set_address (0x000000000000012c)
-0x00000364: 03 DW_LNS_advance_line (52)
-0x00000366: 05 DW_LNS_set_column (38)
-0x00000368: 06 DW_LNS_negate_stmt
-0x00000369: 0a DW_LNS_set_prologue_end
-0x0000036a: 00 DW_LNE_end_sequence
- 0x000000000000012c 52 38 1 0 0 end_sequence
-
-0x0000036d: 00 DW_LNE_set_address (0x000000000000012f)
-0x00000374: 03 DW_LNS_advance_line (52)
-0x00000376: 05 DW_LNS_set_column (13)
-0x00000378: 06 DW_LNS_negate_stmt
-0x00000379: 0a DW_LNS_set_prologue_end
-0x0000037a: 00 DW_LNE_end_sequence
- 0x000000000000012f 52 13 1 0 0 end_sequence
-
-0x0000037d: 00 DW_LNE_set_address (0x0000000000000133)
-0x00000384: 03 DW_LNS_advance_line (58)
-0x00000386: 05 DW_LNS_set_column (19)
-0x00000388: 0a DW_LNS_set_prologue_end
-0x00000389: 00 DW_LNE_end_sequence
- 0x0000000000000133 58 19 1 0 0 is_stmt end_sequence
-
-0x0000038c: 00 DW_LNE_set_address (0x0000000000000142)
-0x00000393: 03 DW_LNS_advance_line (59)
-0x00000395: 05 DW_LNS_set_column (21)
-0x00000397: 0a DW_LNS_set_prologue_end
-0x00000398: 00 DW_LNE_end_sequence
- 0x0000000000000142 59 21 1 0 0 is_stmt end_sequence
-
-0x0000039b: 00 DW_LNE_set_address (0x0000000000000149)
-0x000003a2: 03 DW_LNS_advance_line (57)
-0x000003a4: 05 DW_LNS_set_column (18)
-0x000003a6: 0a DW_LNS_set_prologue_end
-0x000003a7: 00 DW_LNE_end_sequence
- 0x0000000000000149 57 18 1 0 0 is_stmt end_sequence
-
-0x000003aa: 00 DW_LNE_set_address (0x0000000000000159)
-0x000003b1: 03 DW_LNS_advance_line (62)
-0x000003b3: 05 DW_LNS_set_column (14)
-0x000003b5: 0a DW_LNS_set_prologue_end
-0x000003b6: 00 DW_LNE_end_sequence
- 0x0000000000000159 62 14 1 0 0 is_stmt end_sequence
-
-0x000003b9: 00 DW_LNE_set_address (0x000000000000015d)
-0x000003c0: 03 DW_LNS_advance_line (62)
-0x000003c2: 05 DW_LNS_set_column (23)
-0x000003c4: 06 DW_LNS_negate_stmt
-0x000003c5: 0a DW_LNS_set_prologue_end
-0x000003c6: 00 DW_LNE_end_sequence
- 0x000000000000015d 62 23 1 0 0 end_sequence
-
-0x000003c9: 00 DW_LNE_set_address (0x0000000000000162)
-0x000003d0: 03 DW_LNS_advance_line (62)
-0x000003d2: 05 DW_LNS_set_column (14)
-0x000003d4: 06 DW_LNS_negate_stmt
-0x000003d5: 0a DW_LNS_set_prologue_end
-0x000003d6: 00 DW_LNE_end_sequence
- 0x0000000000000162 62 14 1 0 0 end_sequence
-
-0x000003d9: 00 DW_LNE_set_address (0x0000000000000166)
-0x000003e0: 03 DW_LNS_advance_line (66)
-0x000003e3: 05 DW_LNS_set_column (16)
-0x000003e5: 0a DW_LNS_set_prologue_end
-0x000003e6: 00 DW_LNE_end_sequence
- 0x0000000000000166 66 16 1 0 0 is_stmt end_sequence
-
-0x000003e9: 00 DW_LNE_set_address (0x0000000000000175)
-0x000003f0: 03 DW_LNS_advance_line (75)
-0x000003f3: 05 DW_LNS_set_column (27)
-0x000003f5: 0a DW_LNS_set_prologue_end
-0x000003f6: 00 DW_LNE_end_sequence
- 0x0000000000000175 75 27 1 0 0 is_stmt end_sequence
-
-0x000003f9: 00 DW_LNE_set_address (0x000000000000017e)
-0x00000400: 03 DW_LNS_advance_line (76)
-0x00000403: 05 DW_LNS_set_column (16)
-0x00000405: 0a DW_LNS_set_prologue_end
-0x00000406: 00 DW_LNE_end_sequence
- 0x000000000000017e 76 16 1 0 0 is_stmt end_sequence
-
-0x00000409: 00 DW_LNE_set_address (0x0000000000000186)
-0x00000410: 03 DW_LNS_advance_line (76)
-0x00000413: 05 DW_LNS_set_column (27)
-0x00000415: 06 DW_LNS_negate_stmt
-0x00000416: 0a DW_LNS_set_prologue_end
-0x00000417: 00 DW_LNE_end_sequence
- 0x0000000000000186 76 27 1 0 0 end_sequence
-
-0x0000041a: 00 DW_LNE_set_address (0x0000000000000188)
-0x00000421: 03 DW_LNS_advance_line (76)
-0x00000424: 05 DW_LNS_set_column (35)
-0x00000426: 06 DW_LNS_negate_stmt
-0x00000427: 0a DW_LNS_set_prologue_end
-0x00000428: 00 DW_LNE_end_sequence
- 0x0000000000000188 76 35 1 0 0 end_sequence
-
-0x0000042b: 00 DW_LNE_set_address (0x0000000000000191)
-0x00000432: 03 DW_LNS_advance_line (76)
-0x00000435: 05 DW_LNS_set_column (27)
-0x00000437: 06 DW_LNS_negate_stmt
-0x00000438: 0a DW_LNS_set_prologue_end
-0x00000439: 00 DW_LNE_end_sequence
- 0x0000000000000191 76 27 1 0 0 end_sequence
-
-0x0000043c: 00 DW_LNE_set_address (0x0000000000000196)
-0x00000443: 03 DW_LNS_advance_line (76)
-0x00000446: 05 DW_LNS_set_column (25)
-0x00000448: 06 DW_LNS_negate_stmt
-0x00000449: 0a DW_LNS_set_prologue_end
-0x0000044a: 00 DW_LNE_end_sequence
- 0x0000000000000196 76 25 1 0 0 end_sequence
-
-0x0000044d: 00 DW_LNE_set_address (0x0000000000000199)
-0x00000454: 03 DW_LNS_advance_line (75)
-0x00000457: 05 DW_LNS_set_column (27)
-0x00000459: 0a DW_LNS_set_prologue_end
-0x0000045a: 00 DW_LNE_end_sequence
- 0x0000000000000199 75 27 1 0 0 is_stmt end_sequence
-
-0x0000045d: 00 DW_LNE_set_address (0x000000000000019e)
-0x00000464: 03 DW_LNS_advance_line (75)
-0x00000467: 05 DW_LNS_set_column (13)
-0x00000469: 06 DW_LNS_negate_stmt
-0x0000046a: 0a DW_LNS_set_prologue_end
-0x0000046b: 00 DW_LNE_end_sequence
- 0x000000000000019e 75 13 1 0 0 end_sequence
-
-0x0000046e: 00 DW_LNE_set_address (0x00000000000001a6)
-0x00000475: 03 DW_LNS_advance_line (77)
-0x00000478: 05 DW_LNS_set_column (13)
-0x0000047a: 0a DW_LNS_set_prologue_end
-0x0000047b: 00 DW_LNE_end_sequence
- 0x00000000000001a6 77 13 1 0 0 is_stmt end_sequence
-
-0x0000047e: 00 DW_LNE_set_address (0x00000000000001ae)
-0x00000485: 03 DW_LNS_advance_line (77)
-0x00000488: 05 DW_LNS_set_column (22)
-0x0000048a: 06 DW_LNS_negate_stmt
-0x0000048b: 0a DW_LNS_set_prologue_end
-0x0000048c: 00 DW_LNE_end_sequence
- 0x00000000000001ae 77 22 1 0 0 end_sequence
-
-0x0000048f: 00 DW_LNE_set_address (0x00000000000001b3)
-0x00000496: 03 DW_LNS_advance_line (79)
-0x00000499: 05 DW_LNS_set_column (16)
-0x0000049b: 0a DW_LNS_set_prologue_end
-0x0000049c: 00 DW_LNE_end_sequence
- 0x00000000000001b3 79 16 1 0 0 is_stmt end_sequence
-
-0x0000049f: 00 DW_LNE_set_address (0x00000000000001bb)
-0x000004a6: 03 DW_LNS_advance_line (79)
-0x000004a9: 05 DW_LNS_set_column (14)
-0x000004ab: 06 DW_LNS_negate_stmt
-0x000004ac: 0a DW_LNS_set_prologue_end
-0x000004ad: 00 DW_LNE_end_sequence
- 0x00000000000001bb 79 14 1 0 0 end_sequence
-
-0x000004b0: 00 DW_LNE_set_address (0x00000000000001ca)
-0x000004b7: 03 DW_LNS_advance_line (79)
-0x000004ba: 05 DW_LNS_set_column (25)
-0x000004bc: 06 DW_LNS_negate_stmt
-0x000004bd: 0a DW_LNS_set_prologue_end
-0x000004be: 00 DW_LNE_end_sequence
- 0x00000000000001ca 79 25 1 0 0 end_sequence
-
-0x000004c1: 00 DW_LNE_set_address (0x00000000000001d1)
-0x000004c8: 03 DW_LNS_advance_line (81)
-0x000004cb: 05 DW_LNS_set_column (11)
-0x000004cd: 0a DW_LNS_set_prologue_end
-0x000004ce: 00 DW_LNE_end_sequence
- 0x00000000000001d1 81 11 1 0 0 is_stmt end_sequence
-
-0x000004d1: 00 DW_LNE_set_address (0x00000000000001d6)
-0x000004d8: 03 DW_LNS_advance_line (66)
-0x000004db: 05 DW_LNS_set_column (16)
-0x000004dd: 0a DW_LNS_set_prologue_end
-0x000004de: 00 DW_LNE_end_sequence
- 0x00000000000001d6 66 16 1 0 0 is_stmt end_sequence
-
-0x000004e1: 00 DW_LNE_set_address (0x00000000000001dd)
-0x000004e8: 03 DW_LNS_advance_line (74)
-0x000004eb: 05 DW_LNS_set_column (22)
-0x000004ed: 0a DW_LNS_set_prologue_end
-0x000004ee: 00 DW_LNE_end_sequence
- 0x00000000000001dd 74 22 1 0 0 is_stmt end_sequence
-
-0x000004f1: 00 DW_LNE_set_address (0x00000000000001e7)
-0x000004f8: 03 DW_LNS_advance_line (37)
-0x000004fa: 05 DW_LNS_set_column (4)
-0x000004fc: 0a DW_LNS_set_prologue_end
-0x000004fd: 00 DW_LNE_end_sequence
- 0x00000000000001e7 37 4 1 0 0 is_stmt end_sequence
-
-0x00000500: 00 DW_LNE_set_address (0x00000000000001ed)
-0x00000507: 03 DW_LNS_advance_line (39)
-0x00000509: 05 DW_LNS_set_column (4)
-0x0000050b: 0a DW_LNS_set_prologue_end
-0x0000050c: 00 DW_LNE_end_sequence
- 0x00000000000001ed 39 4 1 0 0 is_stmt end_sequence
-
-0x0000050f: 00 DW_LNE_set_address (0x00000000000001ef)
-0x00000516: 03 DW_LNS_advance_line (39)
-0x00000518: 05 DW_LNS_set_column (16)
-0x0000051a: 06 DW_LNS_negate_stmt
-0x0000051b: 0a DW_LNS_set_prologue_end
-0x0000051c: 00 DW_LNE_end_sequence
- 0x00000000000001ef 39 16 1 0 0 end_sequence
-
-0x0000051f: 00 DW_LNE_set_address (0x00000000000001f8)
-0x00000526: 03 DW_LNS_advance_line (39)
-0x00000528: 05 DW_LNS_set_column (4)
-0x0000052a: 06 DW_LNS_negate_stmt
-0x0000052b: 0a DW_LNS_set_prologue_end
-0x0000052c: 00 DW_LNE_end_sequence
- 0x00000000000001f8 39 4 1 0 0 end_sequence
-
-0x0000052f: 00 DW_LNE_set_address (0x00000000000001fa)
-0x00000536: 03 DW_LNS_advance_line (39)
-0x00000538: 05 DW_LNS_set_column (23)
-0x0000053a: 06 DW_LNS_negate_stmt
-0x0000053b: 0a DW_LNS_set_prologue_end
-0x0000053c: 00 DW_LNE_end_sequence
- 0x00000000000001fa 39 23 1 0 0 end_sequence
-
-0x0000053f: 00 DW_LNE_set_address (0x00000000000001ff)
-0x00000546: 03 DW_LNS_advance_line (39)
-0x00000548: 05 DW_LNS_set_column (19)
-0x0000054a: 06 DW_LNS_negate_stmt
-0x0000054b: 0a DW_LNS_set_prologue_end
-0x0000054c: 00 DW_LNE_end_sequence
- 0x00000000000001ff 39 19 1 0 0 end_sequence
-
-0x0000054f: 00 DW_LNE_set_address (0x0000000000000204)
-0x00000556: 03 DW_LNS_advance_line (40)
-0x00000558: 05 DW_LNS_set_column (4)
-0x0000055a: 0a DW_LNS_set_prologue_end
-0x0000055b: 00 DW_LNE_end_sequence
- 0x0000000000000204 40 4 1 0 0 is_stmt end_sequence
-
-0x0000055e: 00 DW_LNE_set_address (0x000000000000020c)
-0x00000565: 03 DW_LNS_advance_line (40)
-0x00000567: 05 DW_LNS_set_column (17)
-0x00000569: 06 DW_LNS_negate_stmt
-0x0000056a: 0a DW_LNS_set_prologue_end
-0x0000056b: 00 DW_LNE_end_sequence
- 0x000000000000020c 40 17 1 0 0 end_sequence
-
-0x0000056e: 00 DW_LNE_set_address (0x000000000000021c)
-0x00000575: 03 DW_LNS_advance_line (44)
-0x00000577: 05 DW_LNS_set_column (16)
-0x00000579: 0a DW_LNS_set_prologue_end
-0x0000057a: 00 DW_LNE_end_sequence
- 0x000000000000021c 44 16 1 0 0 is_stmt end_sequence
-
-0x0000057d: 00 DW_LNE_set_address (0x0000000000000225)
-0x00000584: 03 DW_LNS_advance_line (45)
-0x00000586: 05 DW_LNS_set_column (10)
-0x00000588: 0a DW_LNS_set_prologue_end
-0x00000589: 00 DW_LNE_end_sequence
- 0x0000000000000225 45 10 1 0 0 is_stmt end_sequence
-
-0x0000058c: 00 DW_LNE_set_address (0x0000000000000227)
-0x00000593: 03 DW_LNS_advance_line (45)
-0x00000595: 05 DW_LNS_set_column (18)
-0x00000597: 06 DW_LNS_negate_stmt
-0x00000598: 0a DW_LNS_set_prologue_end
-0x00000599: 00 DW_LNE_end_sequence
- 0x0000000000000227 45 18 1 0 0 end_sequence
-
-0x0000059c: 00 DW_LNE_set_address (0x0000000000000230)
-0x000005a3: 03 DW_LNS_advance_line (45)
-0x000005a5: 05 DW_LNS_set_column (10)
-0x000005a7: 06 DW_LNS_negate_stmt
-0x000005a8: 0a DW_LNS_set_prologue_end
-0x000005a9: 00 DW_LNE_end_sequence
- 0x0000000000000230 45 10 1 0 0 end_sequence
-
-0x000005ac: 00 DW_LNE_set_address (0x0000000000000232)
-0x000005b3: 03 DW_LNS_advance_line (45)
-0x000005b5: 05 DW_LNS_set_column (23)
-0x000005b7: 06 DW_LNS_negate_stmt
-0x000005b8: 0a DW_LNS_set_prologue_end
-0x000005b9: 00 DW_LNE_end_sequence
- 0x0000000000000232 45 23 1 0 0 end_sequence
-
-0x000005bc: 00 DW_LNE_set_address (0x0000000000000237)
-0x000005c3: 03 DW_LNS_advance_line (44)
-0x000005c5: 05 DW_LNS_set_column (16)
-0x000005c7: 0a DW_LNS_set_prologue_end
-0x000005c8: 00 DW_LNE_end_sequence
- 0x0000000000000237 44 16 1 0 0 is_stmt end_sequence
-
-0x000005cb: 00 DW_LNE_set_address (0x0000000000000248)
-0x000005d2: 03 DW_LNS_advance_line (46)
-0x000005d4: 05 DW_LNS_set_column (11)
-0x000005d6: 0a DW_LNS_set_prologue_end
-0x000005d7: 00 DW_LNE_end_sequence
- 0x0000000000000248 46 11 1 0 0 is_stmt end_sequence
-
-0x000005da: 00 DW_LNE_set_address (0x0000000000000254)
-0x000005e1: 03 DW_LNS_advance_line (46)
-0x000005e3: 05 DW_LNS_set_column (28)
+0x0000015a: 01 DW_LNS_copy
+ 0x0000000000000040 38 16 1 0 0
+
+
+0x0000015b: 00 DW_LNE_set_address (0x0000000000000045)
+0x00000162: 03 DW_LNS_advance_line (37)
+0x00000168: 05 DW_LNS_set_column (24)
+0x0000016a: 06 DW_LNS_negate_stmt
+0x0000016b: 01 DW_LNS_copy
+ 0x0000000000000045 37 24 1 0 0 is_stmt
+
+
+0x0000016c: 00 DW_LNE_set_address (0x000000000000004a)
+0x00000173: 05 DW_LNS_set_column (18)
+0x00000175: 06 DW_LNS_negate_stmt
+0x00000176: 01 DW_LNS_copy
+ 0x000000000000004a 37 18 1 0 0
+
+
+0x00000177: 00 DW_LNE_set_address (0x000000000000004f)
+0x0000017e: 05 DW_LNS_set_column (4)
+0x00000180: 01 DW_LNS_copy
+ 0x000000000000004f 37 4 1 0 0
+
+
+0x00000181: 00 DW_LNE_set_address (0x0000000000000052)
+0x00000188: 03 DW_LNS_advance_line (39)
+0x0000018a: 06 DW_LNS_negate_stmt
+0x0000018b: 01 DW_LNS_copy
+ 0x0000000000000052 39 4 1 0 0 is_stmt
+
+
+0x0000018c: 00 DW_LNE_set_address (0x0000000000000054)
+0x00000193: 05 DW_LNS_set_column (16)
+0x00000195: 06 DW_LNS_negate_stmt
+0x00000196: 01 DW_LNS_copy
+ 0x0000000000000054 39 16 1 0 0
+
+
+0x00000197: 00 DW_LNE_set_address (0x000000000000005d)
+0x0000019e: 05 DW_LNS_set_column (4)
+0x000001a0: 01 DW_LNS_copy
+ 0x000000000000005d 39 4 1 0 0
+
+
+0x000001a1: 00 DW_LNE_set_address (0x000000000000005f)
+0x000001a8: 05 DW_LNS_set_column (23)
+0x000001aa: 01 DW_LNS_copy
+ 0x000000000000005f 39 23 1 0 0
+
+
+0x000001ab: 00 DW_LNE_set_address (0x0000000000000064)
+0x000001b2: 05 DW_LNS_set_column (19)
+0x000001b4: 01 DW_LNS_copy
+ 0x0000000000000064 39 19 1 0 0
+
+
+0x000001b5: 00 DW_LNE_set_address (0x0000000000000069)
+0x000001bc: 03 DW_LNS_advance_line (40)
+0x000001be: 05 DW_LNS_set_column (4)
+0x000001c0: 06 DW_LNS_negate_stmt
+0x000001c1: 01 DW_LNS_copy
+ 0x0000000000000069 40 4 1 0 0 is_stmt
+
+
+0x000001c2: 00 DW_LNE_set_address (0x0000000000000071)
+0x000001c9: 05 DW_LNS_set_column (17)
+0x000001cb: 06 DW_LNS_negate_stmt
+0x000001cc: 01 DW_LNS_copy
+ 0x0000000000000071 40 17 1 0 0
+
+
+0x000001cd: 00 DW_LNE_set_address (0x000000000000007c)
+0x000001d4: 03 DW_LNS_advance_line (37)
+0x000001da: 05 DW_LNS_set_column (18)
+0x000001dc: 06 DW_LNS_negate_stmt
+0x000001dd: 01 DW_LNS_copy
+ 0x000000000000007c 37 18 1 0 0 is_stmt
+
+
+0x000001de: 00 DW_LNE_set_address (0x0000000000000081)
+0x000001e5: 03 DW_LNS_advance_line (43)
+0x000001e7: 05 DW_LNS_set_column (4)
+0x000001e9: 01 DW_LNS_copy
+ 0x0000000000000081 43 4 1 0 0 is_stmt
+
+
+0x000001ea: 00 DW_LNE_set_address (0x0000000000000087)
+0x000001f1: 03 DW_LNS_advance_line (44)
+0x000001f3: 05 DW_LNS_set_column (16)
+0x000001f5: 01 DW_LNS_copy
+ 0x0000000000000087 44 16 1 0 0 is_stmt
+
+
+0x000001f6: 00 DW_LNE_set_address (0x0000000000000090)
+0x000001fd: 03 DW_LNS_advance_line (45)
+0x000001ff: 05 DW_LNS_set_column (10)
+0x00000201: 01 DW_LNS_copy
+ 0x0000000000000090 45 10 1 0 0 is_stmt
+
+
+0x00000202: 00 DW_LNE_set_address (0x0000000000000092)
+0x00000209: 05 DW_LNS_set_column (18)
+0x0000020b: 06 DW_LNS_negate_stmt
+0x0000020c: 01 DW_LNS_copy
+ 0x0000000000000092 45 18 1 0 0
+
+
+0x0000020d: 00 DW_LNE_set_address (0x000000000000009b)
+0x00000214: 05 DW_LNS_set_column (10)
+0x00000216: 01 DW_LNS_copy
+ 0x000000000000009b 45 10 1 0 0
+
+
+0x00000217: 00 DW_LNE_set_address (0x000000000000009d)
+0x0000021e: 05 DW_LNS_set_column (23)
+0x00000220: 01 DW_LNS_copy
+ 0x000000000000009d 45 23 1 0 0
+
+
+0x00000221: 00 DW_LNE_set_address (0x00000000000000a2)
+0x00000228: 03 DW_LNS_advance_line (44)
+0x0000022e: 05 DW_LNS_set_column (16)
+0x00000230: 06 DW_LNS_negate_stmt
+0x00000231: 01 DW_LNS_copy
+ 0x00000000000000a2 44 16 1 0 0 is_stmt
+
+
+0x00000232: 00 DW_LNE_set_address (0x00000000000000ad)
+0x00000239: 05 DW_LNS_set_column (7)
+0x0000023b: 06 DW_LNS_negate_stmt
+0x0000023c: 01 DW_LNS_copy
+ 0x00000000000000ad 44 7 1 0 0
+
+
+0x0000023d: 00 DW_LNE_set_address (0x00000000000000b3)
+0x00000244: 03 DW_LNS_advance_line (46)
+0x00000246: 05 DW_LNS_set_column (11)
+0x00000248: 06 DW_LNS_negate_stmt
+0x00000249: 01 DW_LNS_copy
+ 0x00000000000000b3 46 11 1 0 0 is_stmt
+
+
+0x0000024a: 00 DW_LNE_set_address (0x00000000000000bf)
+0x00000251: 05 DW_LNS_set_column (28)
+0x00000253: 06 DW_LNS_negate_stmt
+0x00000254: 01 DW_LNS_copy
+ 0x00000000000000bf 46 28 1 0 0
+
+
+0x00000255: 00 DW_LNE_set_address (0x00000000000000c4)
+0x0000025c: 05 DW_LNS_set_column (41)
+0x0000025e: 01 DW_LNS_copy
+ 0x00000000000000c4 46 41 1 0 0
+
+
+0x0000025f: 00 DW_LNE_set_address (0x00000000000000c9)
+0x00000266: 03 DW_LNS_advance_line (48)
+0x00000268: 05 DW_LNS_set_column (21)
+0x0000026a: 06 DW_LNS_negate_stmt
+0x0000026b: 01 DW_LNS_copy
+ 0x00000000000000c9 48 21 1 0 0 is_stmt
+
+
+0x0000026c: 00 DW_LNE_set_address (0x00000000000000d1)
+0x00000273: 03 DW_LNS_advance_line (50)
+0x00000275: 05 DW_LNS_set_column (14)
+0x00000277: 01 DW_LNS_copy
+ 0x00000000000000d1 50 14 1 0 0 is_stmt
+
+
+0x00000278: 00 DW_LNE_set_address (0x00000000000000e4)
+0x0000027f: 03 DW_LNS_advance_line (52)
+0x00000281: 05 DW_LNS_set_column (38)
+0x00000283: 01 DW_LNS_copy
+ 0x00000000000000e4 52 38 1 0 0 is_stmt
+
+
+0x00000284: 00 DW_LNE_set_address (0x00000000000000f8)
+0x0000028b: 03 DW_LNS_advance_line (53)
+0x0000028d: 05 DW_LNS_set_column (22)
+0x0000028f: 01 DW_LNS_copy
+ 0x00000000000000f8 53 22 1 0 0 is_stmt
+
+
+0x00000290: 00 DW_LNE_set_address (0x0000000000000107)
+0x00000297: 03 DW_LNS_advance_line (54)
+0x00000299: 05 DW_LNS_set_column (24)
+0x0000029b: 01 DW_LNS_copy
+ 0x0000000000000107 54 24 1 0 0 is_stmt
+
+
+0x0000029c: 00 DW_LNE_set_address (0x0000000000000109)
+0x000002a3: 05 DW_LNS_set_column (26)
+0x000002a5: 06 DW_LNS_negate_stmt
+0x000002a6: 01 DW_LNS_copy
+ 0x0000000000000109 54 26 1 0 0
+
+
+0x000002a7: 00 DW_LNE_set_address (0x0000000000000116)
+0x000002ae: 05 DW_LNS_set_column (24)
+0x000002b0: 01 DW_LNS_copy
+ 0x0000000000000116 54 24 1 0 0
+
+
+0x000002b1: 00 DW_LNE_set_address (0x0000000000000119)
+0x000002b8: 03 DW_LNS_advance_line (55)
+0x000002ba: 06 DW_LNS_negate_stmt
+0x000002bb: 01 DW_LNS_copy
+ 0x0000000000000119 55 24 1 0 0 is_stmt
+
+
+0x000002bc: 00 DW_LNE_set_address (0x0000000000000120)
+0x000002c3: 03 DW_LNS_advance_line (52)
+0x000002c9: 05 DW_LNS_set_column (44)
+0x000002cb: 01 DW_LNS_copy
+ 0x0000000000000120 52 44 1 0 0 is_stmt
+
+
+0x000002cc: 00 DW_LNE_set_address (0x000000000000012c)
+0x000002d3: 05 DW_LNS_set_column (38)
+0x000002d5: 06 DW_LNS_negate_stmt
+0x000002d6: 01 DW_LNS_copy
+ 0x000000000000012c 52 38 1 0 0
+
+
+0x000002d7: 00 DW_LNE_set_address (0x000000000000012f)
+0x000002de: 05 DW_LNS_set_column (13)
+0x000002e0: 01 DW_LNS_copy
+ 0x000000000000012f 52 13 1 0 0
+
+
+0x000002e1: 00 DW_LNE_set_address (0x0000000000000133)
+0x000002e8: 03 DW_LNS_advance_line (58)
+0x000002ea: 05 DW_LNS_set_column (19)
+0x000002ec: 06 DW_LNS_negate_stmt
+0x000002ed: 01 DW_LNS_copy
+ 0x0000000000000133 58 19 1 0 0 is_stmt
+
+
+0x000002ee: 00 DW_LNE_set_address (0x0000000000000142)
+0x000002f5: 03 DW_LNS_advance_line (59)
+0x000002f7: 05 DW_LNS_set_column (21)
+0x000002f9: 01 DW_LNS_copy
+ 0x0000000000000142 59 21 1 0 0 is_stmt
+
+
+0x000002fa: 00 DW_LNE_set_address (0x0000000000000149)
+0x00000301: 03 DW_LNS_advance_line (57)
+0x00000307: 05 DW_LNS_set_column (18)
+0x00000309: 01 DW_LNS_copy
+ 0x0000000000000149 57 18 1 0 0 is_stmt
+
+
+0x0000030a: 00 DW_LNE_set_address (0x0000000000000159)
+0x00000311: 03 DW_LNS_advance_line (62)
+0x00000313: 05 DW_LNS_set_column (14)
+0x00000315: 01 DW_LNS_copy
+ 0x0000000000000159 62 14 1 0 0 is_stmt
+
+
+0x00000316: 00 DW_LNE_set_address (0x000000000000015d)
+0x0000031d: 05 DW_LNS_set_column (23)
+0x0000031f: 06 DW_LNS_negate_stmt
+0x00000320: 01 DW_LNS_copy
+ 0x000000000000015d 62 23 1 0 0
+
+
+0x00000321: 00 DW_LNE_set_address (0x0000000000000162)
+0x00000328: 05 DW_LNS_set_column (14)
+0x0000032a: 01 DW_LNS_copy
+ 0x0000000000000162 62 14 1 0 0
+
+
+0x0000032b: 00 DW_LNE_set_address (0x0000000000000166)
+0x00000332: 03 DW_LNS_advance_line (66)
+0x00000334: 05 DW_LNS_set_column (16)
+0x00000336: 06 DW_LNS_negate_stmt
+0x00000337: 01 DW_LNS_copy
+ 0x0000000000000166 66 16 1 0 0 is_stmt
+
+
+0x00000338: 00 DW_LNE_set_address (0x0000000000000175)
+0x0000033f: 03 DW_LNS_advance_line (75)
+0x00000341: 05 DW_LNS_set_column (27)
+0x00000343: 01 DW_LNS_copy
+ 0x0000000000000175 75 27 1 0 0 is_stmt
+
+
+0x00000344: 00 DW_LNE_set_address (0x000000000000017e)
+0x0000034b: 03 DW_LNS_advance_line (76)
+0x0000034d: 05 DW_LNS_set_column (16)
+0x0000034f: 01 DW_LNS_copy
+ 0x000000000000017e 76 16 1 0 0 is_stmt
+
+
+0x00000350: 00 DW_LNE_set_address (0x0000000000000186)
+0x00000357: 05 DW_LNS_set_column (27)
+0x00000359: 06 DW_LNS_negate_stmt
+0x0000035a: 01 DW_LNS_copy
+ 0x0000000000000186 76 27 1 0 0
+
+
+0x0000035b: 00 DW_LNE_set_address (0x0000000000000188)
+0x00000362: 05 DW_LNS_set_column (35)
+0x00000364: 01 DW_LNS_copy
+ 0x0000000000000188 76 35 1 0 0
+
+
+0x00000365: 00 DW_LNE_set_address (0x0000000000000191)
+0x0000036c: 05 DW_LNS_set_column (27)
+0x0000036e: 01 DW_LNS_copy
+ 0x0000000000000191 76 27 1 0 0
+
+
+0x0000036f: 00 DW_LNE_set_address (0x0000000000000196)
+0x00000376: 05 DW_LNS_set_column (25)
+0x00000378: 01 DW_LNS_copy
+ 0x0000000000000196 76 25 1 0 0
+
+
+0x00000379: 00 DW_LNE_set_address (0x0000000000000199)
+0x00000380: 03 DW_LNS_advance_line (75)
+0x00000386: 05 DW_LNS_set_column (27)
+0x00000388: 06 DW_LNS_negate_stmt
+0x00000389: 01 DW_LNS_copy
+ 0x0000000000000199 75 27 1 0 0 is_stmt
+
+
+0x0000038a: 00 DW_LNE_set_address (0x000000000000019e)
+0x00000391: 05 DW_LNS_set_column (13)
+0x00000393: 06 DW_LNS_negate_stmt
+0x00000394: 01 DW_LNS_copy
+ 0x000000000000019e 75 13 1 0 0
+
+
+0x00000395: 00 DW_LNE_set_address (0x00000000000001a6)
+0x0000039c: 03 DW_LNS_advance_line (77)
+0x0000039e: 06 DW_LNS_negate_stmt
+0x0000039f: 01 DW_LNS_copy
+ 0x00000000000001a6 77 13 1 0 0 is_stmt
+
+
+0x000003a0: 00 DW_LNE_set_address (0x00000000000001ae)
+0x000003a7: 05 DW_LNS_set_column (22)
+0x000003a9: 06 DW_LNS_negate_stmt
+0x000003aa: 01 DW_LNS_copy
+ 0x00000000000001ae 77 22 1 0 0
+
+
+0x000003ab: 00 DW_LNE_set_address (0x00000000000001b3)
+0x000003b2: 03 DW_LNS_advance_line (79)
+0x000003b4: 05 DW_LNS_set_column (16)
+0x000003b6: 06 DW_LNS_negate_stmt
+0x000003b7: 01 DW_LNS_copy
+ 0x00000000000001b3 79 16 1 0 0 is_stmt
+
+
+0x000003b8: 00 DW_LNE_set_address (0x00000000000001bb)
+0x000003bf: 05 DW_LNS_set_column (14)
+0x000003c1: 06 DW_LNS_negate_stmt
+0x000003c2: 01 DW_LNS_copy
+ 0x00000000000001bb 79 14 1 0 0
+
+
+0x000003c3: 00 DW_LNE_set_address (0x00000000000001ca)
+0x000003ca: 05 DW_LNS_set_column (25)
+0x000003cc: 01 DW_LNS_copy
+ 0x00000000000001ca 79 25 1 0 0
+
+
+0x000003cd: 00 DW_LNE_set_address (0x00000000000001d1)
+0x000003d4: 03 DW_LNS_advance_line (81)
+0x000003d6: 05 DW_LNS_set_column (11)
+0x000003d8: 06 DW_LNS_negate_stmt
+0x000003d9: 01 DW_LNS_copy
+ 0x00000000000001d1 81 11 1 0 0 is_stmt
+
+
+0x000003da: 00 DW_LNE_set_address (0x00000000000001d6)
+0x000003e1: 03 DW_LNS_advance_line (66)
+0x000003e7: 05 DW_LNS_set_column (16)
+0x000003e9: 01 DW_LNS_copy
+ 0x00000000000001d6 66 16 1 0 0 is_stmt
+
+
+0x000003ea: 00 DW_LNE_set_address (0x00000000000001dd)
+0x000003f1: 03 DW_LNS_advance_line (74)
+0x000003f3: 05 DW_LNS_set_column (22)
+0x000003f5: 01 DW_LNS_copy
+ 0x00000000000001dd 74 22 1 0 0 is_stmt
+
+
+0x000003f6: 00 DW_LNE_set_address (0x00000000000001e7)
+0x000003fd: 03 DW_LNS_advance_line (37)
+0x00000403: 05 DW_LNS_set_column (4)
+0x00000405: 01 DW_LNS_copy
+ 0x00000000000001e7 37 4 1 0 0 is_stmt
+
+
+0x00000406: 00 DW_LNE_set_address (0x00000000000001ed)
+0x0000040d: 03 DW_LNS_advance_line (39)
+0x0000040f: 01 DW_LNS_copy
+ 0x00000000000001ed 39 4 1 0 0 is_stmt
+
+
+0x00000410: 00 DW_LNE_set_address (0x00000000000001ef)
+0x00000417: 05 DW_LNS_set_column (16)
+0x00000419: 06 DW_LNS_negate_stmt
+0x0000041a: 01 DW_LNS_copy
+ 0x00000000000001ef 39 16 1 0 0
+
+
+0x0000041b: 00 DW_LNE_set_address (0x00000000000001f8)
+0x00000422: 05 DW_LNS_set_column (4)
+0x00000424: 01 DW_LNS_copy
+ 0x00000000000001f8 39 4 1 0 0
+
+
+0x00000425: 00 DW_LNE_set_address (0x00000000000001fa)
+0x0000042c: 05 DW_LNS_set_column (23)
+0x0000042e: 01 DW_LNS_copy
+ 0x00000000000001fa 39 23 1 0 0
+
+
+0x0000042f: 00 DW_LNE_set_address (0x00000000000001ff)
+0x00000436: 05 DW_LNS_set_column (19)
+0x00000438: 01 DW_LNS_copy
+ 0x00000000000001ff 39 19 1 0 0
+
+
+0x00000439: 00 DW_LNE_set_address (0x0000000000000204)
+0x00000440: 03 DW_LNS_advance_line (40)
+0x00000442: 05 DW_LNS_set_column (4)
+0x00000444: 06 DW_LNS_negate_stmt
+0x00000445: 01 DW_LNS_copy
+ 0x0000000000000204 40 4 1 0 0 is_stmt
+
+
+0x00000446: 00 DW_LNE_set_address (0x000000000000020c)
+0x0000044d: 05 DW_LNS_set_column (17)
+0x0000044f: 06 DW_LNS_negate_stmt
+0x00000450: 01 DW_LNS_copy
+ 0x000000000000020c 40 17 1 0 0
+
+
+0x00000451: 00 DW_LNE_set_address (0x000000000000021c)
+0x00000458: 03 DW_LNS_advance_line (44)
+0x0000045a: 05 DW_LNS_set_column (16)
+0x0000045c: 06 DW_LNS_negate_stmt
+0x0000045d: 01 DW_LNS_copy
+ 0x000000000000021c 44 16 1 0 0 is_stmt
+
+
+0x0000045e: 00 DW_LNE_set_address (0x0000000000000225)
+0x00000465: 03 DW_LNS_advance_line (45)
+0x00000467: 05 DW_LNS_set_column (10)
+0x00000469: 01 DW_LNS_copy
+ 0x0000000000000225 45 10 1 0 0 is_stmt
+
+
+0x0000046a: 00 DW_LNE_set_address (0x0000000000000227)
+0x00000471: 05 DW_LNS_set_column (18)
+0x00000473: 06 DW_LNS_negate_stmt
+0x00000474: 01 DW_LNS_copy
+ 0x0000000000000227 45 18 1 0 0
+
+
+0x00000475: 00 DW_LNE_set_address (0x0000000000000230)
+0x0000047c: 05 DW_LNS_set_column (10)
+0x0000047e: 01 DW_LNS_copy
+ 0x0000000000000230 45 10 1 0 0
+
+
+0x0000047f: 00 DW_LNE_set_address (0x0000000000000232)
+0x00000486: 05 DW_LNS_set_column (23)
+0x00000488: 01 DW_LNS_copy
+ 0x0000000000000232 45 23 1 0 0
+
+
+0x00000489: 00 DW_LNE_set_address (0x0000000000000237)
+0x00000490: 03 DW_LNS_advance_line (44)
+0x00000496: 05 DW_LNS_set_column (16)
+0x00000498: 06 DW_LNS_negate_stmt
+0x00000499: 01 DW_LNS_copy
+ 0x0000000000000237 44 16 1 0 0 is_stmt
+
+
+0x0000049a: 00 DW_LNE_set_address (0x0000000000000248)
+0x000004a1: 03 DW_LNS_advance_line (46)
+0x000004a3: 05 DW_LNS_set_column (11)
+0x000004a5: 01 DW_LNS_copy
+ 0x0000000000000248 46 11 1 0 0 is_stmt
+
+
+0x000004a6: 00 DW_LNE_set_address (0x0000000000000254)
+0x000004ad: 05 DW_LNS_set_column (28)
+0x000004af: 06 DW_LNS_negate_stmt
+0x000004b0: 01 DW_LNS_copy
+ 0x0000000000000254 46 28 1 0 0
+
+
+0x000004b1: 00 DW_LNE_set_address (0x0000000000000259)
+0x000004b8: 05 DW_LNS_set_column (41)
+0x000004ba: 01 DW_LNS_copy
+ 0x0000000000000259 46 41 1 0 0
+
+
+0x000004bb: 00 DW_LNE_set_address (0x000000000000025e)
+0x000004c2: 03 DW_LNS_advance_line (50)
+0x000004c4: 05 DW_LNS_set_column (14)
+0x000004c6: 06 DW_LNS_negate_stmt
+0x000004c7: 01 DW_LNS_copy
+ 0x000000000000025e 50 14 1 0 0 is_stmt
+
+
+0x000004c8: 00 DW_LNE_set_address (0x0000000000000271)
+0x000004cf: 03 DW_LNS_advance_line (52)
+0x000004d1: 05 DW_LNS_set_column (38)
+0x000004d3: 01 DW_LNS_copy
+ 0x0000000000000271 52 38 1 0 0 is_stmt
+
+
+0x000004d4: 00 DW_LNE_set_address (0x0000000000000285)
+0x000004db: 03 DW_LNS_advance_line (53)
+0x000004dd: 05 DW_LNS_set_column (22)
+0x000004df: 01 DW_LNS_copy
+ 0x0000000000000285 53 22 1 0 0 is_stmt
+
+
+0x000004e0: 00 DW_LNE_set_address (0x0000000000000294)
+0x000004e7: 03 DW_LNS_advance_line (54)
+0x000004e9: 05 DW_LNS_set_column (24)
+0x000004eb: 01 DW_LNS_copy
+ 0x0000000000000294 54 24 1 0 0 is_stmt
+
+
+0x000004ec: 00 DW_LNE_set_address (0x0000000000000296)
+0x000004f3: 05 DW_LNS_set_column (26)
+0x000004f5: 06 DW_LNS_negate_stmt
+0x000004f6: 01 DW_LNS_copy
+ 0x0000000000000296 54 26 1 0 0
+
+
+0x000004f7: 00 DW_LNE_set_address (0x00000000000002a3)
+0x000004fe: 05 DW_LNS_set_column (24)
+0x00000500: 01 DW_LNS_copy
+ 0x00000000000002a3 54 24 1 0 0
+
+
+0x00000501: 00 DW_LNE_set_address (0x00000000000002a6)
+0x00000508: 03 DW_LNS_advance_line (55)
+0x0000050a: 06 DW_LNS_negate_stmt
+0x0000050b: 01 DW_LNS_copy
+ 0x00000000000002a6 55 24 1 0 0 is_stmt
+
+
+0x0000050c: 00 DW_LNE_set_address (0x00000000000002ad)
+0x00000513: 03 DW_LNS_advance_line (52)
+0x00000519: 05 DW_LNS_set_column (44)
+0x0000051b: 01 DW_LNS_copy
+ 0x00000000000002ad 52 44 1 0 0 is_stmt
+
+
+0x0000051c: 00 DW_LNE_set_address (0x00000000000002b9)
+0x00000523: 05 DW_LNS_set_column (38)
+0x00000525: 06 DW_LNS_negate_stmt
+0x00000526: 01 DW_LNS_copy
+ 0x00000000000002b9 52 38 1 0 0
+
+
+0x00000527: 00 DW_LNE_set_address (0x00000000000002c0)
+0x0000052e: 03 DW_LNS_advance_line (58)
+0x00000530: 05 DW_LNS_set_column (19)
+0x00000532: 06 DW_LNS_negate_stmt
+0x00000533: 01 DW_LNS_copy
+ 0x00000000000002c0 58 19 1 0 0 is_stmt
+
+
+0x00000534: 00 DW_LNE_set_address (0x00000000000002cf)
+0x0000053b: 03 DW_LNS_advance_line (59)
+0x0000053d: 05 DW_LNS_set_column (21)
+0x0000053f: 01 DW_LNS_copy
+ 0x00000000000002cf 59 21 1 0 0 is_stmt
+
+
+0x00000540: 00 DW_LNE_set_address (0x00000000000002d6)
+0x00000547: 03 DW_LNS_advance_line (57)
+0x0000054d: 05 DW_LNS_set_column (18)
+0x0000054f: 01 DW_LNS_copy
+ 0x00000000000002d6 57 18 1 0 0 is_stmt
+
+
+0x00000550: 00 DW_LNE_set_address (0x00000000000002e6)
+0x00000557: 03 DW_LNS_advance_line (62)
+0x00000559: 05 DW_LNS_set_column (14)
+0x0000055b: 01 DW_LNS_copy
+ 0x00000000000002e6 62 14 1 0 0 is_stmt
+
+
+0x0000055c: 00 DW_LNE_set_address (0x00000000000002ea)
+0x00000563: 05 DW_LNS_set_column (23)
+0x00000565: 06 DW_LNS_negate_stmt
+0x00000566: 01 DW_LNS_copy
+ 0x00000000000002ea 62 23 1 0 0
+
+
+0x00000567: 00 DW_LNE_set_address (0x00000000000002ef)
+0x0000056e: 05 DW_LNS_set_column (14)
+0x00000570: 01 DW_LNS_copy
+ 0x00000000000002ef 62 14 1 0 0
+
+
+0x00000571: 00 DW_LNE_set_address (0x00000000000002f3)
+0x00000578: 03 DW_LNS_advance_line (66)
+0x0000057a: 05 DW_LNS_set_column (16)
+0x0000057c: 06 DW_LNS_negate_stmt
+0x0000057d: 01 DW_LNS_copy
+ 0x00000000000002f3 66 16 1 0 0 is_stmt
+
+
+0x0000057e: 00 DW_LNE_set_address (0x0000000000000302)
+0x00000585: 03 DW_LNS_advance_line (75)
+0x00000587: 05 DW_LNS_set_column (27)
+0x00000589: 01 DW_LNS_copy
+ 0x0000000000000302 75 27 1 0 0 is_stmt
+
+
+0x0000058a: 00 DW_LNE_set_address (0x000000000000030b)
+0x00000591: 03 DW_LNS_advance_line (76)
+0x00000593: 05 DW_LNS_set_column (16)
+0x00000595: 01 DW_LNS_copy
+ 0x000000000000030b 76 16 1 0 0 is_stmt
+
+
+0x00000596: 00 DW_LNE_set_address (0x0000000000000313)
+0x0000059d: 05 DW_LNS_set_column (27)
+0x0000059f: 06 DW_LNS_negate_stmt
+0x000005a0: 01 DW_LNS_copy
+ 0x0000000000000313 76 27 1 0 0
+
+
+0x000005a1: 00 DW_LNE_set_address (0x0000000000000315)
+0x000005a8: 05 DW_LNS_set_column (35)
+0x000005aa: 01 DW_LNS_copy
+ 0x0000000000000315 76 35 1 0 0
+
+
+0x000005ab: 00 DW_LNE_set_address (0x000000000000031e)
+0x000005b2: 05 DW_LNS_set_column (27)
+0x000005b4: 01 DW_LNS_copy
+ 0x000000000000031e 76 27 1 0 0
+
+
+0x000005b5: 00 DW_LNE_set_address (0x0000000000000323)
+0x000005bc: 05 DW_LNS_set_column (25)
+0x000005be: 01 DW_LNS_copy
+ 0x0000000000000323 76 25 1 0 0
+
+
+0x000005bf: 00 DW_LNE_set_address (0x0000000000000326)
+0x000005c6: 03 DW_LNS_advance_line (75)
+0x000005cc: 05 DW_LNS_set_column (27)
+0x000005ce: 06 DW_LNS_negate_stmt
+0x000005cf: 01 DW_LNS_copy
+ 0x0000000000000326 75 27 1 0 0 is_stmt
+
+
+0x000005d0: 00 DW_LNE_set_address (0x0000000000000333)
+0x000005d7: 03 DW_LNS_advance_line (77)
+0x000005d9: 05 DW_LNS_set_column (13)
+0x000005db: 01 DW_LNS_copy
+ 0x0000000000000333 77 13 1 0 0 is_stmt
+
+
+0x000005dc: 00 DW_LNE_set_address (0x000000000000033b)
+0x000005e3: 05 DW_LNS_set_column (22)
0x000005e5: 06 DW_LNS_negate_stmt
-0x000005e6: 0a DW_LNS_set_prologue_end
-0x000005e7: 00 DW_LNE_end_sequence
- 0x0000000000000254 46 28 1 0 0 end_sequence
-
-0x000005ea: 00 DW_LNE_set_address (0x0000000000000259)
-0x000005f1: 03 DW_LNS_advance_line (46)
-0x000005f3: 05 DW_LNS_set_column (41)
-0x000005f5: 06 DW_LNS_negate_stmt
-0x000005f6: 0a DW_LNS_set_prologue_end
-0x000005f7: 00 DW_LNE_end_sequence
- 0x0000000000000259 46 41 1 0 0 end_sequence
-
-0x000005fa: 00 DW_LNE_set_address (0x000000000000025e)
-0x00000601: 03 DW_LNS_advance_line (50)
-0x00000603: 05 DW_LNS_set_column (14)
-0x00000605: 0a DW_LNS_set_prologue_end
-0x00000606: 00 DW_LNE_end_sequence
- 0x000000000000025e 50 14 1 0 0 is_stmt end_sequence
-
-0x00000609: 00 DW_LNE_set_address (0x0000000000000271)
-0x00000610: 03 DW_LNS_advance_line (52)
-0x00000612: 05 DW_LNS_set_column (38)
-0x00000614: 0a DW_LNS_set_prologue_end
-0x00000615: 00 DW_LNE_end_sequence
- 0x0000000000000271 52 38 1 0 0 is_stmt end_sequence
-
-0x00000618: 00 DW_LNE_set_address (0x0000000000000285)
-0x0000061f: 03 DW_LNS_advance_line (53)
-0x00000621: 05 DW_LNS_set_column (22)
-0x00000623: 0a DW_LNS_set_prologue_end
-0x00000624: 00 DW_LNE_end_sequence
- 0x0000000000000285 53 22 1 0 0 is_stmt end_sequence
-
-0x00000627: 00 DW_LNE_set_address (0x0000000000000294)
-0x0000062e: 03 DW_LNS_advance_line (54)
-0x00000630: 05 DW_LNS_set_column (24)
-0x00000632: 0a DW_LNS_set_prologue_end
-0x00000633: 00 DW_LNE_end_sequence
- 0x0000000000000294 54 24 1 0 0 is_stmt end_sequence
-
-0x00000636: 00 DW_LNE_set_address (0x0000000000000296)
-0x0000063d: 03 DW_LNS_advance_line (54)
-0x0000063f: 05 DW_LNS_set_column (26)
-0x00000641: 06 DW_LNS_negate_stmt
-0x00000642: 0a DW_LNS_set_prologue_end
-0x00000643: 00 DW_LNE_end_sequence
- 0x0000000000000296 54 26 1 0 0 end_sequence
-
-0x00000646: 00 DW_LNE_set_address (0x00000000000002a3)
-0x0000064d: 03 DW_LNS_advance_line (54)
-0x0000064f: 05 DW_LNS_set_column (24)
-0x00000651: 06 DW_LNS_negate_stmt
-0x00000652: 0a DW_LNS_set_prologue_end
-0x00000653: 00 DW_LNE_end_sequence
- 0x00000000000002a3 54 24 1 0 0 end_sequence
-
-0x00000656: 00 DW_LNE_set_address (0x00000000000002a6)
-0x0000065d: 03 DW_LNS_advance_line (55)
-0x0000065f: 05 DW_LNS_set_column (24)
-0x00000661: 0a DW_LNS_set_prologue_end
-0x00000662: 00 DW_LNE_end_sequence
- 0x00000000000002a6 55 24 1 0 0 is_stmt end_sequence
-
-0x00000665: 00 DW_LNE_set_address (0x00000000000002ad)
-0x0000066c: 03 DW_LNS_advance_line (52)
-0x0000066e: 05 DW_LNS_set_column (44)
-0x00000670: 0a DW_LNS_set_prologue_end
-0x00000671: 00 DW_LNE_end_sequence
- 0x00000000000002ad 52 44 1 0 0 is_stmt end_sequence
-
-0x00000674: 00 DW_LNE_set_address (0x00000000000002b9)
-0x0000067b: 03 DW_LNS_advance_line (52)
-0x0000067d: 05 DW_LNS_set_column (38)
-0x0000067f: 06 DW_LNS_negate_stmt
+0x000005e6: 01 DW_LNS_copy
+ 0x000000000000033b 77 22 1 0 0
+
+
+0x000005e7: 00 DW_LNE_set_address (0x0000000000000340)
+0x000005ee: 03 DW_LNS_advance_line (79)
+0x000005f0: 05 DW_LNS_set_column (16)
+0x000005f2: 06 DW_LNS_negate_stmt
+0x000005f3: 01 DW_LNS_copy
+ 0x0000000000000340 79 16 1 0 0 is_stmt
+
+
+0x000005f4: 00 DW_LNE_set_address (0x0000000000000348)
+0x000005fb: 05 DW_LNS_set_column (14)
+0x000005fd: 06 DW_LNS_negate_stmt
+0x000005fe: 01 DW_LNS_copy
+ 0x0000000000000348 79 14 1 0 0
+
+
+0x000005ff: 00 DW_LNE_set_address (0x0000000000000357)
+0x00000606: 05 DW_LNS_set_column (25)
+0x00000608: 01 DW_LNS_copy
+ 0x0000000000000357 79 25 1 0 0
+
+
+0x00000609: 00 DW_LNE_set_address (0x000000000000035e)
+0x00000610: 03 DW_LNS_advance_line (81)
+0x00000612: 05 DW_LNS_set_column (11)
+0x00000614: 06 DW_LNS_negate_stmt
+0x00000615: 01 DW_LNS_copy
+ 0x000000000000035e 81 11 1 0 0 is_stmt
+
+
+0x00000616: 00 DW_LNE_set_address (0x0000000000000363)
+0x0000061d: 03 DW_LNS_advance_line (66)
+0x00000623: 05 DW_LNS_set_column (16)
+0x00000625: 01 DW_LNS_copy
+ 0x0000000000000363 66 16 1 0 0 is_stmt
+
+
+0x00000626: 00 DW_LNE_set_address (0x000000000000036a)
+0x0000062d: 03 DW_LNS_advance_line (74)
+0x0000062f: 05 DW_LNS_set_column (22)
+0x00000631: 01 DW_LNS_copy
+ 0x000000000000036a 74 22 1 0 0 is_stmt
+
+
+0x00000632: 00 DW_LNE_set_address (0x000000000000037a)
+0x00000639: 03 DW_LNS_advance_line (67)
+0x0000063f: 05 DW_LNS_set_column (13)
+0x00000641: 01 DW_LNS_copy
+ 0x000000000000037a 67 13 1 0 0 is_stmt
+
+
+0x00000642: 00 DW_LNE_set_address (0x000000000000037e)
+0x00000649: 03 DW_LNS_advance_line (68)
+0x0000064b: 01 DW_LNS_copy
+ 0x000000000000037e 68 13 1 0 0 is_stmt
+
+
+0x0000064c: 00 DW_LNE_set_address (0x0000000000000382)
+0x00000653: 03 DW_LNS_advance_line (69)
+0x00000655: 01 DW_LNS_copy
+ 0x0000000000000382 69 13 1 0 0 is_stmt
+
+
+0x00000656: 00 DW_LNE_set_address (0x0000000000000386)
+0x0000065d: 03 DW_LNS_advance_line (70)
+0x0000065f: 01 DW_LNS_copy
+ 0x0000000000000386 70 13 1 0 0 is_stmt
+
+
+0x00000660: 00 DW_LNE_set_address (0x0000000000000389)
+0x00000667: 00 DW_LNE_end_sequence
+ 0x0000000000000389 70 13 1 0 0 is_stmt end_sequence
+
+0x0000066a: 00 DW_LNE_set_address (0x000000000000038b)
+0x00000671: 03 DW_LNS_advance_line (152)
+0x00000674: 01 DW_LNS_copy
+ 0x000000000000038b 152 0 1 0 0 is_stmt
+
+
+0x00000675: 00 DW_LNE_set_address (0x000000000000039d)
+0x0000067c: 03 DW_LNS_advance_line (153)
+0x0000067e: 05 DW_LNS_set_column (17)
0x00000680: 0a DW_LNS_set_prologue_end
-0x00000681: 00 DW_LNE_end_sequence
- 0x00000000000002b9 52 38 1 0 0 end_sequence
-
-0x00000684: 00 DW_LNE_set_address (0x00000000000002c0)
-0x0000068b: 03 DW_LNS_advance_line (58)
-0x0000068d: 05 DW_LNS_set_column (19)
-0x0000068f: 0a DW_LNS_set_prologue_end
-0x00000690: 00 DW_LNE_end_sequence
- 0x00000000000002c0 58 19 1 0 0 is_stmt end_sequence
-
-0x00000693: 00 DW_LNE_set_address (0x00000000000002cf)
-0x0000069a: 03 DW_LNS_advance_line (59)
-0x0000069c: 05 DW_LNS_set_column (21)
-0x0000069e: 0a DW_LNS_set_prologue_end
-0x0000069f: 00 DW_LNE_end_sequence
- 0x00000000000002cf 59 21 1 0 0 is_stmt end_sequence
-
-0x000006a2: 00 DW_LNE_set_address (0x00000000000002d6)
-0x000006a9: 03 DW_LNS_advance_line (57)
-0x000006ab: 05 DW_LNS_set_column (18)
-0x000006ad: 0a DW_LNS_set_prologue_end
-0x000006ae: 00 DW_LNE_end_sequence
- 0x00000000000002d6 57 18 1 0 0 is_stmt end_sequence
-
-0x000006b1: 00 DW_LNE_set_address (0x00000000000002e6)
-0x000006b8: 03 DW_LNS_advance_line (62)
-0x000006ba: 05 DW_LNS_set_column (14)
-0x000006bc: 0a DW_LNS_set_prologue_end
-0x000006bd: 00 DW_LNE_end_sequence
- 0x00000000000002e6 62 14 1 0 0 is_stmt end_sequence
-
-0x000006c0: 00 DW_LNE_set_address (0x00000000000002ea)
-0x000006c7: 03 DW_LNS_advance_line (62)
-0x000006c9: 05 DW_LNS_set_column (23)
-0x000006cb: 06 DW_LNS_negate_stmt
-0x000006cc: 0a DW_LNS_set_prologue_end
-0x000006cd: 00 DW_LNE_end_sequence
- 0x00000000000002ea 62 23 1 0 0 end_sequence
-
-0x000006d0: 00 DW_LNE_set_address (0x00000000000002ef)
-0x000006d7: 03 DW_LNS_advance_line (62)
-0x000006d9: 05 DW_LNS_set_column (14)
-0x000006db: 06 DW_LNS_negate_stmt
-0x000006dc: 0a DW_LNS_set_prologue_end
-0x000006dd: 00 DW_LNE_end_sequence
- 0x00000000000002ef 62 14 1 0 0 end_sequence
-
-0x000006e0: 00 DW_LNE_set_address (0x00000000000002f3)
-0x000006e7: 03 DW_LNS_advance_line (66)
-0x000006ea: 05 DW_LNS_set_column (16)
-0x000006ec: 0a DW_LNS_set_prologue_end
-0x000006ed: 00 DW_LNE_end_sequence
- 0x00000000000002f3 66 16 1 0 0 is_stmt end_sequence
-
-0x000006f0: 00 DW_LNE_set_address (0x0000000000000302)
-0x000006f7: 03 DW_LNS_advance_line (75)
-0x000006fa: 05 DW_LNS_set_column (27)
-0x000006fc: 0a DW_LNS_set_prologue_end
-0x000006fd: 00 DW_LNE_end_sequence
- 0x0000000000000302 75 27 1 0 0 is_stmt end_sequence
-
-0x00000700: 00 DW_LNE_set_address (0x000000000000030b)
-0x00000707: 03 DW_LNS_advance_line (76)
-0x0000070a: 05 DW_LNS_set_column (16)
-0x0000070c: 0a DW_LNS_set_prologue_end
-0x0000070d: 00 DW_LNE_end_sequence
- 0x000000000000030b 76 16 1 0 0 is_stmt end_sequence
-
-0x00000710: 00 DW_LNE_set_address (0x0000000000000313)
-0x00000717: 03 DW_LNS_advance_line (76)
-0x0000071a: 05 DW_LNS_set_column (27)
-0x0000071c: 06 DW_LNS_negate_stmt
-0x0000071d: 0a DW_LNS_set_prologue_end
-0x0000071e: 00 DW_LNE_end_sequence
- 0x0000000000000313 76 27 1 0 0 end_sequence
-
-0x00000721: 00 DW_LNE_set_address (0x0000000000000315)
-0x00000728: 03 DW_LNS_advance_line (76)
-0x0000072b: 05 DW_LNS_set_column (35)
-0x0000072d: 06 DW_LNS_negate_stmt
-0x0000072e: 0a DW_LNS_set_prologue_end
-0x0000072f: 00 DW_LNE_end_sequence
- 0x0000000000000315 76 35 1 0 0 end_sequence
-
-0x00000732: 00 DW_LNE_set_address (0x000000000000031e)
-0x00000739: 03 DW_LNS_advance_line (76)
-0x0000073c: 05 DW_LNS_set_column (27)
-0x0000073e: 06 DW_LNS_negate_stmt
-0x0000073f: 0a DW_LNS_set_prologue_end
-0x00000740: 00 DW_LNE_end_sequence
- 0x000000000000031e 76 27 1 0 0 end_sequence
-
-0x00000743: 00 DW_LNE_set_address (0x0000000000000323)
-0x0000074a: 03 DW_LNS_advance_line (76)
-0x0000074d: 05 DW_LNS_set_column (25)
-0x0000074f: 06 DW_LNS_negate_stmt
-0x00000750: 0a DW_LNS_set_prologue_end
-0x00000751: 00 DW_LNE_end_sequence
- 0x0000000000000323 76 25 1 0 0 end_sequence
-
-0x00000754: 00 DW_LNE_set_address (0x0000000000000326)
-0x0000075b: 03 DW_LNS_advance_line (75)
-0x0000075e: 05 DW_LNS_set_column (27)
-0x00000760: 0a DW_LNS_set_prologue_end
-0x00000761: 00 DW_LNE_end_sequence
- 0x0000000000000326 75 27 1 0 0 is_stmt end_sequence
-
-0x00000764: 00 DW_LNE_set_address (0x0000000000000333)
-0x0000076b: 03 DW_LNS_advance_line (77)
-0x0000076e: 05 DW_LNS_set_column (13)
-0x00000770: 0a DW_LNS_set_prologue_end
-0x00000771: 00 DW_LNE_end_sequence
- 0x0000000000000333 77 13 1 0 0 is_stmt end_sequence
-
-0x00000774: 00 DW_LNE_set_address (0x000000000000033b)
-0x0000077b: 03 DW_LNS_advance_line (77)
-0x0000077e: 05 DW_LNS_set_column (22)
+0x00000681: 01 DW_LNS_copy
+ 0x000000000000039d 153 17 1 0 0 is_stmt prologue_end
+
+
+0x00000682: 00 DW_LNE_set_address (0x00000000000003a2)
+0x00000689: 05 DW_LNS_set_column (12)
+0x0000068b: 06 DW_LNS_negate_stmt
+0x0000068c: 01 DW_LNS_copy
+ 0x00000000000003a2 153 12 1 0 0
+
+
+0x0000068d: 00 DW_LNE_set_address (0x00000000000003a8)
+0x00000694: 05 DW_LNS_set_column (28)
+0x00000696: 01 DW_LNS_copy
+ 0x00000000000003a8 153 28 1 0 0
+
+
+0x00000697: 00 DW_LNE_set_address (0x00000000000003ad)
+0x0000069e: 05 DW_LNS_set_column (23)
+0x000006a0: 01 DW_LNS_copy
+ 0x00000000000003ad 153 23 1 0 0
+
+
+0x000006a1: 00 DW_LNE_set_address (0x00000000000003b3)
+0x000006a8: 03 DW_LNS_advance_line (155)
+0x000006aa: 05 DW_LNS_set_column (10)
+0x000006ac: 06 DW_LNS_negate_stmt
+0x000006ad: 01 DW_LNS_copy
+ 0x00000000000003b3 155 10 1 0 0 is_stmt
+
+
+0x000006ae: 00 DW_LNE_set_address (0x00000000000003b4)
+0x000006b5: 05 DW_LNS_set_column (8)
+0x000006b7: 06 DW_LNS_negate_stmt
+0x000006b8: 01 DW_LNS_copy
+ 0x00000000000003b4 155 8 1 0 0
+
+
+0x000006b9: 00 DW_LNE_set_address (0x00000000000003b7)
+0x000006c0: 03 DW_LNS_advance_line (156)
+0x000006c2: 05 DW_LNS_set_column (7)
+0x000006c4: 06 DW_LNS_negate_stmt
+0x000006c5: 01 DW_LNS_copy
+ 0x00000000000003b7 156 7 1 0 0 is_stmt
+
+
+0x000006c6: 00 DW_LNE_set_address (0x00000000000003c6)
+0x000006cd: 03 DW_LNS_advance_line (94)
+0x000006d3: 05 DW_LNS_set_column (18)
+0x000006d5: 01 DW_LNS_copy
+ 0x00000000000003c6 94 18 1 0 0 is_stmt
+
+
+0x000006d6: 00 DW_LNE_set_address (0x00000000000003cb)
+0x000006dd: 05 DW_LNS_set_column (4)
+0x000006df: 06 DW_LNS_negate_stmt
+0x000006e0: 01 DW_LNS_copy
+ 0x00000000000003cb 94 4 1 0 0
+
+
+0x000006e1: 00 DW_LNE_set_address (0x00000000000003e0)
+0x000006e8: 03 DW_LNS_advance_line (95)
+0x000006ea: 05 DW_LNS_set_column (29)
+0x000006ec: 06 DW_LNS_negate_stmt
+0x000006ed: 01 DW_LNS_copy
+ 0x00000000000003e0 95 29 1 0 0 is_stmt
+
+
+0x000006ee: 00 DW_LNE_set_address (0x00000000000003e2)
+0x000006f5: 03 DW_LNS_advance_line (98)
+0x000006f7: 05 DW_LNS_set_column (19)
+0x000006f9: 01 DW_LNS_copy
+ 0x00000000000003e2 98 19 1 0 0 is_stmt
+
+
+0x000006fa: 00 DW_LNE_set_address (0x00000000000003e9)
+0x00000701: 03 DW_LNS_advance_line (97)
+0x00000707: 05 DW_LNS_set_column (16)
+0x00000709: 01 DW_LNS_copy
+ 0x00000000000003e9 97 16 1 0 0 is_stmt
+
+
+0x0000070a: 00 DW_LNE_set_address (0x00000000000003f0)
+0x00000711: 03 DW_LNS_advance_line (96)
+0x00000717: 01 DW_LNS_copy
+ 0x00000000000003f0 96 16 1 0 0 is_stmt
+
+
+0x00000718: 00 DW_LNE_set_address (0x00000000000003fb)
+0x0000071f: 03 DW_LNS_advance_line (94)
+0x00000725: 05 DW_LNS_set_column (28)
+0x00000727: 01 DW_LNS_copy
+ 0x00000000000003fb 94 28 1 0 0 is_stmt
+
+
+0x00000728: 00 DW_LNE_set_address (0x0000000000000400)
+0x0000072f: 05 DW_LNS_set_column (18)
+0x00000731: 06 DW_LNS_negate_stmt
+0x00000732: 01 DW_LNS_copy
+ 0x0000000000000400 94 18 1 0 0
+
+
+0x00000733: 00 DW_LNE_set_address (0x0000000000000405)
+0x0000073a: 05 DW_LNS_set_column (4)
+0x0000073c: 01 DW_LNS_copy
+ 0x0000000000000405 94 4 1 0 0
+
+
+0x0000073d: 00 DW_LNE_set_address (0x000000000000040d)
+0x00000744: 03 DW_LNS_advance_line (102)
+0x00000746: 05 DW_LNS_set_column (27)
+0x00000748: 06 DW_LNS_negate_stmt
+0x00000749: 01 DW_LNS_copy
+ 0x000000000000040d 102 27 1 0 0 is_stmt
+
+
+0x0000074a: 00 DW_LNE_set_address (0x0000000000000412)
+0x00000751: 05 DW_LNS_set_column (18)
+0x00000753: 06 DW_LNS_negate_stmt
+0x00000754: 01 DW_LNS_copy
+ 0x0000000000000412 102 18 1 0 0
+
+
+0x00000755: 00 DW_LNE_set_address (0x0000000000000418)
+0x0000075c: 03 DW_LNS_advance_line (103)
+0x0000075e: 06 DW_LNS_negate_stmt
+0x0000075f: 01 DW_LNS_copy
+ 0x0000000000000418 103 18 1 0 0 is_stmt
+
+
+0x00000760: 00 DW_LNE_set_address (0x0000000000000426)
+0x00000767: 03 DW_LNS_advance_line (105)
+0x00000769: 01 DW_LNS_copy
+ 0x0000000000000426 105 18 1 0 0 is_stmt
+
+
+0x0000076a: 00 DW_LNE_set_address (0x000000000000042b)
+0x00000771: 05 DW_LNS_set_column (4)
+0x00000773: 06 DW_LNS_negate_stmt
+0x00000774: 01 DW_LNS_copy
+ 0x000000000000042b 105 4 1 0 0
+
+
+0x00000775: 00 DW_LNE_set_address (0x000000000000042f)
+0x0000077c: 03 DW_LNS_advance_line (106)
+0x0000077e: 05 DW_LNS_set_column (7)
0x00000780: 06 DW_LNS_negate_stmt
-0x00000781: 0a DW_LNS_set_prologue_end
-0x00000782: 00 DW_LNE_end_sequence
- 0x000000000000033b 77 22 1 0 0 end_sequence
-
-0x00000785: 00 DW_LNE_set_address (0x0000000000000340)
-0x0000078c: 03 DW_LNS_advance_line (79)
-0x0000078f: 05 DW_LNS_set_column (16)
-0x00000791: 0a DW_LNS_set_prologue_end
-0x00000792: 00 DW_LNE_end_sequence
- 0x0000000000000340 79 16 1 0 0 is_stmt end_sequence
-
-0x00000795: 00 DW_LNE_set_address (0x0000000000000348)
-0x0000079c: 03 DW_LNS_advance_line (79)
-0x0000079f: 05 DW_LNS_set_column (14)
-0x000007a1: 06 DW_LNS_negate_stmt
-0x000007a2: 0a DW_LNS_set_prologue_end
-0x000007a3: 00 DW_LNE_end_sequence
- 0x0000000000000348 79 14 1 0 0 end_sequence
-
-0x000007a6: 00 DW_LNE_set_address (0x0000000000000357)
-0x000007ad: 03 DW_LNS_advance_line (79)
-0x000007b0: 05 DW_LNS_set_column (25)
-0x000007b2: 06 DW_LNS_negate_stmt
-0x000007b3: 0a DW_LNS_set_prologue_end
-0x000007b4: 00 DW_LNE_end_sequence
- 0x0000000000000357 79 25 1 0 0 end_sequence
-
-0x000007b7: 00 DW_LNE_set_address (0x000000000000035e)
-0x000007be: 03 DW_LNS_advance_line (81)
-0x000007c1: 05 DW_LNS_set_column (11)
-0x000007c3: 0a DW_LNS_set_prologue_end
-0x000007c4: 00 DW_LNE_end_sequence
- 0x000000000000035e 81 11 1 0 0 is_stmt end_sequence
-
-0x000007c7: 00 DW_LNE_set_address (0x0000000000000363)
-0x000007ce: 03 DW_LNS_advance_line (66)
-0x000007d1: 05 DW_LNS_set_column (16)
-0x000007d3: 0a DW_LNS_set_prologue_end
-0x000007d4: 00 DW_LNE_end_sequence
- 0x0000000000000363 66 16 1 0 0 is_stmt end_sequence
-
-0x000007d7: 00 DW_LNE_set_address (0x000000000000036a)
-0x000007de: 03 DW_LNS_advance_line (74)
-0x000007e1: 05 DW_LNS_set_column (22)
-0x000007e3: 0a DW_LNS_set_prologue_end
-0x000007e4: 00 DW_LNE_end_sequence
- 0x000000000000036a 74 22 1 0 0 is_stmt end_sequence
-
-0x000007e7: 00 DW_LNE_set_address (0x000000000000037a)
-0x000007ee: 03 DW_LNS_advance_line (67)
-0x000007f1: 05 DW_LNS_set_column (13)
-0x000007f3: 0a DW_LNS_set_prologue_end
-0x000007f4: 00 DW_LNE_end_sequence
- 0x000000000000037a 67 13 1 0 0 is_stmt end_sequence
-
-0x000007f7: 00 DW_LNE_set_address (0x000000000000037e)
-0x000007fe: 03 DW_LNS_advance_line (68)
-0x00000801: 05 DW_LNS_set_column (13)
-0x00000803: 0a DW_LNS_set_prologue_end
-0x00000804: 00 DW_LNE_end_sequence
- 0x000000000000037e 68 13 1 0 0 is_stmt end_sequence
-
-0x00000807: 00 DW_LNE_set_address (0x0000000000000382)
-0x0000080e: 03 DW_LNS_advance_line (69)
-0x00000811: 05 DW_LNS_set_column (13)
-0x00000813: 0a DW_LNS_set_prologue_end
-0x00000814: 00 DW_LNE_end_sequence
- 0x0000000000000382 69 13 1 0 0 is_stmt end_sequence
-
-0x00000817: 00 DW_LNE_set_address (0x0000000000000386)
-0x0000081e: 03 DW_LNS_advance_line (70)
-0x00000821: 05 DW_LNS_set_column (13)
-0x00000823: 0a DW_LNS_set_prologue_end
-0x00000824: 00 DW_LNE_end_sequence
- 0x0000000000000386 70 13 1 0 0 is_stmt end_sequence
-
-0x00000827: 00 DW_LNE_set_address (0x0000000000000389)
-0x0000082e: 03 DW_LNS_advance_line (70)
-0x00000831: 05 DW_LNS_set_column (13)
-0x00000833: 0a DW_LNS_set_prologue_end
-0x00000834: 00 DW_LNE_end_sequence
- 0x0000000000000389 70 13 1 0 0 is_stmt end_sequence
+0x00000781: 01 DW_LNS_copy
+ 0x000000000000042f 106 7 1 0 0 is_stmt
+
+
+0x00000782: 00 DW_LNE_set_address (0x0000000000000437)
+0x00000789: 05 DW_LNS_set_column (16)
+0x0000078b: 06 DW_LNS_negate_stmt
+0x0000078c: 01 DW_LNS_copy
+ 0x0000000000000437 106 16 1 0 0
+
+
+0x0000078d: 00 DW_LNE_set_address (0x000000000000043c)
+0x00000794: 03 DW_LNS_advance_line (105)
+0x0000079a: 05 DW_LNS_set_column (24)
+0x0000079c: 06 DW_LNS_negate_stmt
+0x0000079d: 01 DW_LNS_copy
+ 0x000000000000043c 105 24 1 0 0 is_stmt
+
+
+0x0000079e: 00 DW_LNE_set_address (0x0000000000000441)
+0x000007a5: 05 DW_LNS_set_column (18)
+0x000007a7: 06 DW_LNS_negate_stmt
+0x000007a8: 01 DW_LNS_copy
+ 0x0000000000000441 105 18 1 0 0
+
+
+0x000007a9: 00 DW_LNE_set_address (0x0000000000000467)
+0x000007b0: 03 DW_LNS_advance_line (112)
+0x000007b2: 05 DW_LNS_set_column (13)
+0x000007b4: 06 DW_LNS_negate_stmt
+0x000007b5: 01 DW_LNS_copy
+ 0x0000000000000467 112 13 1 0 0 is_stmt
+
+
+0x000007b6: 00 DW_LNE_set_address (0x0000000000000469)
+0x000007bd: 05 DW_LNS_set_column (26)
+0x000007bf: 06 DW_LNS_negate_stmt
+0x000007c0: 01 DW_LNS_copy
+ 0x0000000000000469 112 26 1 0 0
+
+
+0x000007c1: 00 DW_LNE_set_address (0x0000000000000476)
+0x000007c8: 05 DW_LNS_set_column (35)
+0x000007ca: 01 DW_LNS_copy
+ 0x0000000000000476 112 35 1 0 0
+
+
+0x000007cb: 00 DW_LNE_set_address (0x0000000000000477)
+0x000007d2: 05 DW_LNS_set_column (13)
+0x000007d4: 01 DW_LNS_copy
+ 0x0000000000000477 112 13 1 0 0
+
+
+0x000007d5: 00 DW_LNE_set_address (0x0000000000000485)
+0x000007dc: 03 DW_LNS_advance_line (111)
+0x000007e2: 05 DW_LNS_set_column (30)
+0x000007e4: 06 DW_LNS_negate_stmt
+0x000007e5: 01 DW_LNS_copy
+ 0x0000000000000485 111 30 1 0 0 is_stmt
+
+
+0x000007e6: 00 DW_LNE_set_address (0x000000000000048a)
+0x000007ed: 05 DW_LNS_set_column (24)
+0x000007ef: 06 DW_LNS_negate_stmt
+0x000007f0: 01 DW_LNS_copy
+ 0x000000000000048a 111 24 1 0 0
+
+
+0x000007f1: 00 DW_LNE_set_address (0x000000000000048f)
+0x000007f8: 05 DW_LNS_set_column (10)
+0x000007fa: 01 DW_LNS_copy
+ 0x000000000000048f 111 10 1 0 0
+
+
+0x000007fb: 00 DW_LNE_set_address (0x0000000000000494)
+0x00000802: 03 DW_LNS_advance_line (113)
+0x00000804: 06 DW_LNS_negate_stmt
+0x00000805: 01 DW_LNS_copy
+ 0x0000000000000494 113 10 1 0 0 is_stmt
+
+
+0x00000806: 00 DW_LNE_set_address (0x0000000000000499)
+0x0000080d: 03 DW_LNS_advance_line (118)
+0x0000080f: 05 DW_LNS_set_column (16)
+0x00000811: 01 DW_LNS_copy
+ 0x0000000000000499 118 16 1 0 0 is_stmt
+
+
+0x00000812: 00 DW_LNE_set_address (0x000000000000049e)
+0x00000819: 05 DW_LNS_set_column (7)
+0x0000081b: 06 DW_LNS_negate_stmt
+0x0000081c: 01 DW_LNS_copy
+ 0x000000000000049e 118 7 1 0 0
+
+
+0x0000081d: 00 DW_LNE_set_address (0x00000000000004a2)
+0x00000824: 03 DW_LNS_advance_line (119)
+0x00000826: 05 DW_LNS_set_column (10)
+0x00000828: 06 DW_LNS_negate_stmt
+0x00000829: 01 DW_LNS_copy
+ 0x00000000000004a2 119 10 1 0 0 is_stmt
+
+
+0x0000082a: 00 DW_LNE_set_address (0x00000000000004a4)
+0x00000831: 05 DW_LNS_set_column (18)
+0x00000833: 06 DW_LNS_negate_stmt
+0x00000834: 01 DW_LNS_copy
+ 0x00000000000004a4 119 18 1 0 0
+
+
+0x00000835: 00 DW_LNE_set_address (0x00000000000004ad)
+0x0000083c: 05 DW_LNS_set_column (10)
+0x0000083e: 01 DW_LNS_copy
+ 0x00000000000004ad 119 10 1 0 0
+
+
+0x0000083f: 00 DW_LNE_set_address (0x00000000000004af)
+0x00000846: 05 DW_LNS_set_column (23)
+0x00000848: 01 DW_LNS_copy
+ 0x00000000000004af 119 23 1 0 0
+
+
+0x00000849: 00 DW_LNE_set_address (0x00000000000004b4)
+0x00000850: 03 DW_LNS_advance_line (118)
+0x00000856: 05 DW_LNS_set_column (16)
+0x00000858: 06 DW_LNS_negate_stmt
+0x00000859: 01 DW_LNS_copy
+ 0x00000000000004b4 118 16 1 0 0 is_stmt
+
+
+0x0000085a: 00 DW_LNE_set_address (0x00000000000004bf)
+0x00000861: 05 DW_LNS_set_column (7)
+0x00000863: 06 DW_LNS_negate_stmt
+0x00000864: 01 DW_LNS_copy
+ 0x00000000000004bf 118 7 1 0 0
+
+
+0x00000865: 00 DW_LNE_set_address (0x00000000000004c5)
+0x0000086c: 03 DW_LNS_advance_line (122)
+0x0000086e: 05 DW_LNS_set_column (16)
+0x00000870: 06 DW_LNS_negate_stmt
+0x00000871: 01 DW_LNS_copy
+ 0x00000000000004c5 122 16 1 0 0 is_stmt
+
+
+0x00000872: 00 DW_LNE_set_address (0x00000000000004d9)
+0x00000879: 03 DW_LNS_advance_line (125)
+0x0000087b: 05 DW_LNS_set_column (22)
+0x0000087d: 01 DW_LNS_copy
+ 0x00000000000004d9 125 22 1 0 0 is_stmt
+
+
+0x0000087e: 00 DW_LNE_set_address (0x00000000000004e2)
+0x00000885: 03 DW_LNS_advance_line (126)
+0x00000887: 05 DW_LNS_set_column (27)
+0x00000889: 01 DW_LNS_copy
+ 0x00000000000004e2 126 27 1 0 0 is_stmt
+
+
+0x0000088a: 00 DW_LNE_set_address (0x00000000000004e7)
+0x00000891: 05 DW_LNS_set_column (13)
+0x00000893: 06 DW_LNS_negate_stmt
+0x00000894: 01 DW_LNS_copy
+ 0x00000000000004e7 126 13 1 0 0
+
+
+0x00000895: 00 DW_LNE_set_address (0x00000000000004eb)
+0x0000089c: 03 DW_LNS_advance_line (127)
+0x0000089e: 05 DW_LNS_set_column (16)
+0x000008a0: 06 DW_LNS_negate_stmt
+0x000008a1: 01 DW_LNS_copy
+ 0x00000000000004eb 127 16 1 0 0 is_stmt
+
+
+0x000008a2: 00 DW_LNE_set_address (0x00000000000004f3)
+0x000008a9: 05 DW_LNS_set_column (27)
+0x000008ab: 06 DW_LNS_negate_stmt
+0x000008ac: 01 DW_LNS_copy
+ 0x00000000000004f3 127 27 1 0 0
+
+
+0x000008ad: 00 DW_LNE_set_address (0x00000000000004f5)
+0x000008b4: 05 DW_LNS_set_column (35)
+0x000008b6: 01 DW_LNS_copy
+ 0x00000000000004f5 127 35 1 0 0
+
+
+0x000008b7: 00 DW_LNE_set_address (0x00000000000004fe)
+0x000008be: 05 DW_LNS_set_column (27)
+0x000008c0: 01 DW_LNS_copy
+ 0x00000000000004fe 127 27 1 0 0
-0x00000837: 00 DW_LNE_set_address (0x000000000000038b)
-0x0000083e: 03 DW_LNS_advance_line (152)
-0x00000841: 00 DW_LNE_end_sequence
- 0x000000000000038b 152 0 1 0 0 is_stmt end_sequence
-
-0x00000844: 00 DW_LNE_set_address (0x000000000000039d)
-0x0000084b: 03 DW_LNS_advance_line (153)
-0x0000084e: 05 DW_LNS_set_column (17)
-0x00000850: 0a DW_LNS_set_prologue_end
-0x00000851: 00 DW_LNE_end_sequence
- 0x000000000000039d 153 17 1 0 0 is_stmt end_sequence
-
-0x00000854: 00 DW_LNE_set_address (0x00000000000003a2)
-0x0000085b: 03 DW_LNS_advance_line (153)
-0x0000085e: 05 DW_LNS_set_column (12)
-0x00000860: 06 DW_LNS_negate_stmt
-0x00000861: 0a DW_LNS_set_prologue_end
-0x00000862: 00 DW_LNE_end_sequence
- 0x00000000000003a2 153 12 1 0 0 end_sequence
-
-0x00000865: 00 DW_LNE_set_address (0x00000000000003a8)
-0x0000086c: 03 DW_LNS_advance_line (153)
-0x0000086f: 05 DW_LNS_set_column (28)
-0x00000871: 06 DW_LNS_negate_stmt
-0x00000872: 0a DW_LNS_set_prologue_end
-0x00000873: 00 DW_LNE_end_sequence
- 0x00000000000003a8 153 28 1 0 0 end_sequence
-
-0x00000876: 00 DW_LNE_set_address (0x00000000000003ad)
-0x0000087d: 03 DW_LNS_advance_line (153)
-0x00000880: 05 DW_LNS_set_column (23)
-0x00000882: 06 DW_LNS_negate_stmt
-0x00000883: 0a DW_LNS_set_prologue_end
-0x00000884: 00 DW_LNE_end_sequence
- 0x00000000000003ad 153 23 1 0 0 end_sequence
-
-0x00000887: 00 DW_LNE_set_address (0x00000000000003b3)
-0x0000088e: 03 DW_LNS_advance_line (155)
-0x00000891: 05 DW_LNS_set_column (10)
-0x00000893: 0a DW_LNS_set_prologue_end
-0x00000894: 00 DW_LNE_end_sequence
- 0x00000000000003b3 155 10 1 0 0 is_stmt end_sequence
-
-0x00000897: 00 DW_LNE_set_address (0x00000000000003b4)
-0x0000089e: 03 DW_LNS_advance_line (155)
-0x000008a1: 05 DW_LNS_set_column (8)
-0x000008a3: 06 DW_LNS_negate_stmt
-0x000008a4: 0a DW_LNS_set_prologue_end
-0x000008a5: 00 DW_LNE_end_sequence
- 0x00000000000003b4 155 8 1 0 0 end_sequence
-
-0x000008a8: 00 DW_LNE_set_address (0x00000000000003b7)
-0x000008af: 03 DW_LNS_advance_line (156)
-0x000008b2: 05 DW_LNS_set_column (7)
-0x000008b4: 0a DW_LNS_set_prologue_end
-0x000008b5: 00 DW_LNE_end_sequence
- 0x00000000000003b7 156 7 1 0 0 is_stmt end_sequence
-
-0x000008b8: 00 DW_LNE_set_address (0x00000000000003c6)
-0x000008bf: 03 DW_LNS_advance_line (94)
-0x000008c2: 05 DW_LNS_set_column (18)
-0x000008c4: 0a DW_LNS_set_prologue_end
-0x000008c5: 00 DW_LNE_end_sequence
- 0x00000000000003c6 94 18 1 0 0 is_stmt end_sequence
-
-0x000008c8: 00 DW_LNE_set_address (0x00000000000003cb)
-0x000008cf: 03 DW_LNS_advance_line (94)
-0x000008d2: 05 DW_LNS_set_column (4)
-0x000008d4: 06 DW_LNS_negate_stmt
-0x000008d5: 0a DW_LNS_set_prologue_end
-0x000008d6: 00 DW_LNE_end_sequence
- 0x00000000000003cb 94 4 1 0 0 end_sequence
-
-0x000008d9: 00 DW_LNE_set_address (0x00000000000003e0)
-0x000008e0: 03 DW_LNS_advance_line (95)
-0x000008e3: 05 DW_LNS_set_column (29)
-0x000008e5: 0a DW_LNS_set_prologue_end
-0x000008e6: 00 DW_LNE_end_sequence
- 0x00000000000003e0 95 29 1 0 0 is_stmt end_sequence
-
-0x000008e9: 00 DW_LNE_set_address (0x00000000000003e2)
-0x000008f0: 03 DW_LNS_advance_line (98)
-0x000008f3: 05 DW_LNS_set_column (19)
-0x000008f5: 0a DW_LNS_set_prologue_end
-0x000008f6: 00 DW_LNE_end_sequence
- 0x00000000000003e2 98 19 1 0 0 is_stmt end_sequence
-
-0x000008f9: 00 DW_LNE_set_address (0x00000000000003e9)
-0x00000900: 03 DW_LNS_advance_line (97)
-0x00000903: 05 DW_LNS_set_column (16)
-0x00000905: 0a DW_LNS_set_prologue_end
-0x00000906: 00 DW_LNE_end_sequence
- 0x00000000000003e9 97 16 1 0 0 is_stmt end_sequence
-
-0x00000909: 00 DW_LNE_set_address (0x00000000000003f0)
-0x00000910: 03 DW_LNS_advance_line (96)
-0x00000913: 05 DW_LNS_set_column (16)
-0x00000915: 0a DW_LNS_set_prologue_end
-0x00000916: 00 DW_LNE_end_sequence
- 0x00000000000003f0 96 16 1 0 0 is_stmt end_sequence
-
-0x00000919: 00 DW_LNE_set_address (0x00000000000003fb)
-0x00000920: 03 DW_LNS_advance_line (94)
-0x00000923: 05 DW_LNS_set_column (28)
-0x00000925: 0a DW_LNS_set_prologue_end
-0x00000926: 00 DW_LNE_end_sequence
- 0x00000000000003fb 94 28 1 0 0 is_stmt end_sequence
-
-0x00000929: 00 DW_LNE_set_address (0x0000000000000400)
-0x00000930: 03 DW_LNS_advance_line (94)
-0x00000933: 05 DW_LNS_set_column (18)
-0x00000935: 06 DW_LNS_negate_stmt
-0x00000936: 0a DW_LNS_set_prologue_end
-0x00000937: 00 DW_LNE_end_sequence
- 0x0000000000000400 94 18 1 0 0 end_sequence
-
-0x0000093a: 00 DW_LNE_set_address (0x0000000000000405)
-0x00000941: 03 DW_LNS_advance_line (94)
-0x00000944: 05 DW_LNS_set_column (4)
-0x00000946: 06 DW_LNS_negate_stmt
-0x00000947: 0a DW_LNS_set_prologue_end
-0x00000948: 00 DW_LNE_end_sequence
- 0x0000000000000405 94 4 1 0 0 end_sequence
-
-0x0000094b: 00 DW_LNE_set_address (0x000000000000040d)
-0x00000952: 03 DW_LNS_advance_line (102)
-0x00000955: 05 DW_LNS_set_column (27)
-0x00000957: 0a DW_LNS_set_prologue_end
-0x00000958: 00 DW_LNE_end_sequence
- 0x000000000000040d 102 27 1 0 0 is_stmt end_sequence
-
-0x0000095b: 00 DW_LNE_set_address (0x0000000000000412)
-0x00000962: 03 DW_LNS_advance_line (102)
-0x00000965: 05 DW_LNS_set_column (18)
-0x00000967: 06 DW_LNS_negate_stmt
-0x00000968: 0a DW_LNS_set_prologue_end
-0x00000969: 00 DW_LNE_end_sequence
- 0x0000000000000412 102 18 1 0 0 end_sequence
-
-0x0000096c: 00 DW_LNE_set_address (0x0000000000000418)
-0x00000973: 03 DW_LNS_advance_line (103)
-0x00000976: 05 DW_LNS_set_column (18)
-0x00000978: 0a DW_LNS_set_prologue_end
-0x00000979: 00 DW_LNE_end_sequence
- 0x0000000000000418 103 18 1 0 0 is_stmt end_sequence
-
-0x0000097c: 00 DW_LNE_set_address (0x0000000000000426)
-0x00000983: 03 DW_LNS_advance_line (105)
-0x00000986: 05 DW_LNS_set_column (18)
-0x00000988: 0a DW_LNS_set_prologue_end
-0x00000989: 00 DW_LNE_end_sequence
- 0x0000000000000426 105 18 1 0 0 is_stmt end_sequence
-
-0x0000098c: 00 DW_LNE_set_address (0x000000000000042b)
-0x00000993: 03 DW_LNS_advance_line (105)
-0x00000996: 05 DW_LNS_set_column (4)
-0x00000998: 06 DW_LNS_negate_stmt
-0x00000999: 0a DW_LNS_set_prologue_end
-0x0000099a: 00 DW_LNE_end_sequence
- 0x000000000000042b 105 4 1 0 0 end_sequence
-
-0x0000099d: 00 DW_LNE_set_address (0x000000000000042f)
-0x000009a4: 03 DW_LNS_advance_line (106)
-0x000009a7: 05 DW_LNS_set_column (7)
-0x000009a9: 0a DW_LNS_set_prologue_end
-0x000009aa: 00 DW_LNE_end_sequence
- 0x000000000000042f 106 7 1 0 0 is_stmt end_sequence
-
-0x000009ad: 00 DW_LNE_set_address (0x0000000000000437)
-0x000009b4: 03 DW_LNS_advance_line (106)
-0x000009b7: 05 DW_LNS_set_column (16)
-0x000009b9: 06 DW_LNS_negate_stmt
-0x000009ba: 0a DW_LNS_set_prologue_end
-0x000009bb: 00 DW_LNE_end_sequence
- 0x0000000000000437 106 16 1 0 0 end_sequence
-
-0x000009be: 00 DW_LNE_set_address (0x000000000000043c)
-0x000009c5: 03 DW_LNS_advance_line (105)
-0x000009c8: 05 DW_LNS_set_column (24)
-0x000009ca: 0a DW_LNS_set_prologue_end
-0x000009cb: 00 DW_LNE_end_sequence
- 0x000000000000043c 105 24 1 0 0 is_stmt end_sequence
-
-0x000009ce: 00 DW_LNE_set_address (0x0000000000000441)
-0x000009d5: 03 DW_LNS_advance_line (105)
-0x000009d8: 05 DW_LNS_set_column (18)
-0x000009da: 06 DW_LNS_negate_stmt
-0x000009db: 0a DW_LNS_set_prologue_end
-0x000009dc: 00 DW_LNE_end_sequence
- 0x0000000000000441 105 18 1 0 0 end_sequence
-
-0x000009df: 00 DW_LNE_set_address (0x0000000000000467)
-0x000009e6: 03 DW_LNS_advance_line (112)
-0x000009e9: 05 DW_LNS_set_column (13)
-0x000009eb: 0a DW_LNS_set_prologue_end
-0x000009ec: 00 DW_LNE_end_sequence
- 0x0000000000000467 112 13 1 0 0 is_stmt end_sequence
-
-0x000009ef: 00 DW_LNE_set_address (0x0000000000000469)
-0x000009f6: 03 DW_LNS_advance_line (112)
-0x000009f9: 05 DW_LNS_set_column (26)
-0x000009fb: 06 DW_LNS_negate_stmt
-0x000009fc: 0a DW_LNS_set_prologue_end
-0x000009fd: 00 DW_LNE_end_sequence
- 0x0000000000000469 112 26 1 0 0 end_sequence
-
-0x00000a00: 00 DW_LNE_set_address (0x0000000000000476)
-0x00000a07: 03 DW_LNS_advance_line (112)
-0x00000a0a: 05 DW_LNS_set_column (35)
-0x00000a0c: 06 DW_LNS_negate_stmt
-0x00000a0d: 0a DW_LNS_set_prologue_end
-0x00000a0e: 00 DW_LNE_end_sequence
- 0x0000000000000476 112 35 1 0 0 end_sequence
-
-0x00000a11: 00 DW_LNE_set_address (0x0000000000000477)
-0x00000a18: 03 DW_LNS_advance_line (112)
-0x00000a1b: 05 DW_LNS_set_column (13)
-0x00000a1d: 06 DW_LNS_negate_stmt
-0x00000a1e: 0a DW_LNS_set_prologue_end
-0x00000a1f: 00 DW_LNE_end_sequence
- 0x0000000000000477 112 13 1 0 0 end_sequence
-
-0x00000a22: 00 DW_LNE_set_address (0x0000000000000485)
-0x00000a29: 03 DW_LNS_advance_line (111)
-0x00000a2c: 05 DW_LNS_set_column (30)
-0x00000a2e: 0a DW_LNS_set_prologue_end
-0x00000a2f: 00 DW_LNE_end_sequence
- 0x0000000000000485 111 30 1 0 0 is_stmt end_sequence
-
-0x00000a32: 00 DW_LNE_set_address (0x000000000000048a)
-0x00000a39: 03 DW_LNS_advance_line (111)
-0x00000a3c: 05 DW_LNS_set_column (24)
-0x00000a3e: 06 DW_LNS_negate_stmt
-0x00000a3f: 0a DW_LNS_set_prologue_end
-0x00000a40: 00 DW_LNE_end_sequence
- 0x000000000000048a 111 24 1 0 0 end_sequence
-
-0x00000a43: 00 DW_LNE_set_address (0x000000000000048f)
-0x00000a4a: 03 DW_LNS_advance_line (111)
-0x00000a4d: 05 DW_LNS_set_column (10)
-0x00000a4f: 06 DW_LNS_negate_stmt
-0x00000a50: 0a DW_LNS_set_prologue_end
-0x00000a51: 00 DW_LNE_end_sequence
- 0x000000000000048f 111 10 1 0 0 end_sequence
-
-0x00000a54: 00 DW_LNE_set_address (0x0000000000000494)
-0x00000a5b: 03 DW_LNS_advance_line (113)
-0x00000a5e: 05 DW_LNS_set_column (10)
-0x00000a60: 0a DW_LNS_set_prologue_end
-0x00000a61: 00 DW_LNE_end_sequence
- 0x0000000000000494 113 10 1 0 0 is_stmt end_sequence
-
-0x00000a64: 00 DW_LNE_set_address (0x0000000000000499)
-0x00000a6b: 03 DW_LNS_advance_line (118)
-0x00000a6e: 05 DW_LNS_set_column (16)
-0x00000a70: 0a DW_LNS_set_prologue_end
-0x00000a71: 00 DW_LNE_end_sequence
- 0x0000000000000499 118 16 1 0 0 is_stmt end_sequence
-
-0x00000a74: 00 DW_LNE_set_address (0x000000000000049e)
-0x00000a7b: 03 DW_LNS_advance_line (118)
-0x00000a7e: 05 DW_LNS_set_column (7)
-0x00000a80: 06 DW_LNS_negate_stmt
-0x00000a81: 0a DW_LNS_set_prologue_end
-0x00000a82: 00 DW_LNE_end_sequence
- 0x000000000000049e 118 7 1 0 0 end_sequence
-
-0x00000a85: 00 DW_LNE_set_address (0x00000000000004a2)
-0x00000a8c: 03 DW_LNS_advance_line (119)
-0x00000a8f: 05 DW_LNS_set_column (10)
-0x00000a91: 0a DW_LNS_set_prologue_end
-0x00000a92: 00 DW_LNE_end_sequence
- 0x00000000000004a2 119 10 1 0 0 is_stmt end_sequence
-
-0x00000a95: 00 DW_LNE_set_address (0x00000000000004a4)
-0x00000a9c: 03 DW_LNS_advance_line (119)
-0x00000a9f: 05 DW_LNS_set_column (18)
-0x00000aa1: 06 DW_LNS_negate_stmt
-0x00000aa2: 0a DW_LNS_set_prologue_end
-0x00000aa3: 00 DW_LNE_end_sequence
- 0x00000000000004a4 119 18 1 0 0 end_sequence
-
-0x00000aa6: 00 DW_LNE_set_address (0x00000000000004ad)
-0x00000aad: 03 DW_LNS_advance_line (119)
-0x00000ab0: 05 DW_LNS_set_column (10)
+
+0x000008c1: 00 DW_LNE_set_address (0x0000000000000503)
+0x000008c8: 05 DW_LNS_set_column (25)
+0x000008ca: 01 DW_LNS_copy
+ 0x0000000000000503 127 25 1 0 0
+
+
+0x000008cb: 00 DW_LNE_set_address (0x0000000000000506)
+0x000008d2: 03 DW_LNS_advance_line (126)
+0x000008d8: 05 DW_LNS_set_column (27)
+0x000008da: 06 DW_LNS_negate_stmt
+0x000008db: 01 DW_LNS_copy
+ 0x0000000000000506 126 27 1 0 0 is_stmt
+
+
+0x000008dc: 00 DW_LNE_set_address (0x000000000000050b)
+0x000008e3: 05 DW_LNS_set_column (13)
+0x000008e5: 06 DW_LNS_negate_stmt
+0x000008e6: 01 DW_LNS_copy
+ 0x000000000000050b 126 13 1 0 0
+
+
+0x000008e7: 00 DW_LNE_set_address (0x0000000000000513)
+0x000008ee: 03 DW_LNS_advance_line (128)
+0x000008f0: 06 DW_LNS_negate_stmt
+0x000008f1: 01 DW_LNS_copy
+ 0x0000000000000513 128 13 1 0 0 is_stmt
+
+
+0x000008f2: 00 DW_LNE_set_address (0x000000000000051b)
+0x000008f9: 05 DW_LNS_set_column (22)
+0x000008fb: 06 DW_LNS_negate_stmt
+0x000008fc: 01 DW_LNS_copy
+ 0x000000000000051b 128 22 1 0 0
+
+
+0x000008fd: 00 DW_LNE_set_address (0x0000000000000520)
+0x00000904: 03 DW_LNS_advance_line (130)
+0x00000906: 05 DW_LNS_set_column (16)
+0x00000908: 06 DW_LNS_negate_stmt
+0x00000909: 01 DW_LNS_copy
+ 0x0000000000000520 130 16 1 0 0 is_stmt
+
+
+0x0000090a: 00 DW_LNE_set_address (0x0000000000000528)
+0x00000911: 05 DW_LNS_set_column (14)
+0x00000913: 06 DW_LNS_negate_stmt
+0x00000914: 01 DW_LNS_copy
+ 0x0000000000000528 130 14 1 0 0
+
+
+0x00000915: 00 DW_LNE_set_address (0x0000000000000539)
+0x0000091c: 05 DW_LNS_set_column (25)
+0x0000091e: 01 DW_LNS_copy
+ 0x0000000000000539 130 25 1 0 0
+
+
+0x0000091f: 00 DW_LNE_set_address (0x000000000000053e)
+0x00000926: 05 DW_LNS_set_column (14)
+0x00000928: 01 DW_LNS_copy
+ 0x000000000000053e 130 14 1 0 0
+
+
+0x00000929: 00 DW_LNE_set_address (0x0000000000000540)
+0x00000930: 03 DW_LNS_advance_line (133)
+0x00000932: 05 DW_LNS_set_column (11)
+0x00000934: 06 DW_LNS_negate_stmt
+0x00000935: 01 DW_LNS_copy
+ 0x0000000000000540 133 11 1 0 0 is_stmt
+
+
+0x00000936: 00 DW_LNE_set_address (0x0000000000000545)
+0x0000093d: 03 DW_LNS_advance_line (122)
+0x00000943: 05 DW_LNS_set_column (16)
+0x00000945: 01 DW_LNS_copy
+ 0x0000000000000545 122 16 1 0 0 is_stmt
+
+
+0x00000946: 00 DW_LNE_set_address (0x000000000000054a)
+0x0000094d: 05 DW_LNS_set_column (14)
+0x0000094f: 06 DW_LNS_negate_stmt
+0x00000950: 01 DW_LNS_copy
+ 0x000000000000054a 122 14 1 0 0
+
+
+0x00000951: 00 DW_LNE_set_address (0x000000000000054f)
+0x00000958: 03 DW_LNS_advance_line (130)
+0x0000095a: 06 DW_LNS_negate_stmt
+0x0000095b: 01 DW_LNS_copy
+ 0x000000000000054f 130 14 1 0 0 is_stmt
+
+
+0x0000095c: 00 DW_LNE_set_address (0x0000000000000550)
+0x00000963: 03 DW_LNS_advance_line (110)
+0x00000969: 05 DW_LNS_set_column (11)
+0x0000096b: 01 DW_LNS_copy
+ 0x0000000000000550 110 11 1 0 0 is_stmt
+
+
+0x0000096c: 00 DW_LNE_set_address (0x000000000000055f)
+0x00000973: 03 DW_LNS_advance_line (113)
+0x00000975: 05 DW_LNS_set_column (10)
+0x00000977: 01 DW_LNS_copy
+ 0x000000000000055f 113 10 1 0 0 is_stmt
+
+
+0x00000978: 00 DW_LNE_set_address (0x0000000000000564)
+0x0000097f: 03 DW_LNS_advance_line (118)
+0x00000981: 05 DW_LNS_set_column (16)
+0x00000983: 01 DW_LNS_copy
+ 0x0000000000000564 118 16 1 0 0 is_stmt
+
+
+0x00000984: 00 DW_LNE_set_address (0x0000000000000569)
+0x0000098b: 05 DW_LNS_set_column (7)
+0x0000098d: 06 DW_LNS_negate_stmt
+0x0000098e: 01 DW_LNS_copy
+ 0x0000000000000569 118 7 1 0 0
+
+
+0x0000098f: 00 DW_LNE_set_address (0x000000000000056d)
+0x00000996: 03 DW_LNS_advance_line (119)
+0x00000998: 05 DW_LNS_set_column (10)
+0x0000099a: 06 DW_LNS_negate_stmt
+0x0000099b: 01 DW_LNS_copy
+ 0x000000000000056d 119 10 1 0 0 is_stmt
+
+
+0x0000099c: 00 DW_LNE_set_address (0x000000000000056f)
+0x000009a3: 05 DW_LNS_set_column (18)
+0x000009a5: 06 DW_LNS_negate_stmt
+0x000009a6: 01 DW_LNS_copy
+ 0x000000000000056f 119 18 1 0 0
+
+
+0x000009a7: 00 DW_LNE_set_address (0x0000000000000578)
+0x000009ae: 05 DW_LNS_set_column (10)
+0x000009b0: 01 DW_LNS_copy
+ 0x0000000000000578 119 10 1 0 0
+
+
+0x000009b1: 00 DW_LNE_set_address (0x000000000000057a)
+0x000009b8: 05 DW_LNS_set_column (23)
+0x000009ba: 01 DW_LNS_copy
+ 0x000000000000057a 119 23 1 0 0
+
+
+0x000009bb: 00 DW_LNE_set_address (0x000000000000057f)
+0x000009c2: 03 DW_LNS_advance_line (118)
+0x000009c8: 05 DW_LNS_set_column (16)
+0x000009ca: 06 DW_LNS_negate_stmt
+0x000009cb: 01 DW_LNS_copy
+ 0x000000000000057f 118 16 1 0 0 is_stmt
+
+
+0x000009cc: 00 DW_LNE_set_address (0x000000000000058a)
+0x000009d3: 05 DW_LNS_set_column (7)
+0x000009d5: 06 DW_LNS_negate_stmt
+0x000009d6: 01 DW_LNS_copy
+ 0x000000000000058a 118 7 1 0 0
+
+
+0x000009d7: 00 DW_LNE_set_address (0x0000000000000590)
+0x000009de: 03 DW_LNS_advance_line (122)
+0x000009e0: 05 DW_LNS_set_column (16)
+0x000009e2: 06 DW_LNS_negate_stmt
+0x000009e3: 01 DW_LNS_copy
+ 0x0000000000000590 122 16 1 0 0 is_stmt
+
+
+0x000009e4: 00 DW_LNE_set_address (0x0000000000000595)
+0x000009eb: 05 DW_LNS_set_column (14)
+0x000009ed: 06 DW_LNS_negate_stmt
+0x000009ee: 01 DW_LNS_copy
+ 0x0000000000000595 122 14 1 0 0
+
+
+0x000009ef: 00 DW_LNE_set_address (0x000000000000059e)
+0x000009f6: 03 DW_LNS_advance_line (125)
+0x000009f8: 05 DW_LNS_set_column (22)
+0x000009fa: 06 DW_LNS_negate_stmt
+0x000009fb: 01 DW_LNS_copy
+ 0x000000000000059e 125 22 1 0 0 is_stmt
+
+
+0x000009fc: 00 DW_LNE_set_address (0x00000000000005ad)
+0x00000a03: 03 DW_LNS_advance_line (126)
+0x00000a05: 05 DW_LNS_set_column (27)
+0x00000a07: 01 DW_LNS_copy
+ 0x00000000000005ad 126 27 1 0 0 is_stmt
+
+
+0x00000a08: 00 DW_LNE_set_address (0x00000000000005b2)
+0x00000a0f: 05 DW_LNS_set_column (13)
+0x00000a11: 06 DW_LNS_negate_stmt
+0x00000a12: 01 DW_LNS_copy
+ 0x00000000000005b2 126 13 1 0 0
+
+
+0x00000a13: 00 DW_LNE_set_address (0x00000000000005b6)
+0x00000a1a: 03 DW_LNS_advance_line (127)
+0x00000a1c: 05 DW_LNS_set_column (16)
+0x00000a1e: 06 DW_LNS_negate_stmt
+0x00000a1f: 01 DW_LNS_copy
+ 0x00000000000005b6 127 16 1 0 0 is_stmt
+
+
+0x00000a20: 00 DW_LNE_set_address (0x00000000000005be)
+0x00000a27: 05 DW_LNS_set_column (27)
+0x00000a29: 06 DW_LNS_negate_stmt
+0x00000a2a: 01 DW_LNS_copy
+ 0x00000000000005be 127 27 1 0 0
+
+
+0x00000a2b: 00 DW_LNE_set_address (0x00000000000005c0)
+0x00000a32: 05 DW_LNS_set_column (35)
+0x00000a34: 01 DW_LNS_copy
+ 0x00000000000005c0 127 35 1 0 0
+
+
+0x00000a35: 00 DW_LNE_set_address (0x00000000000005c9)
+0x00000a3c: 05 DW_LNS_set_column (27)
+0x00000a3e: 01 DW_LNS_copy
+ 0x00000000000005c9 127 27 1 0 0
+
+
+0x00000a3f: 00 DW_LNE_set_address (0x00000000000005ce)
+0x00000a46: 05 DW_LNS_set_column (25)
+0x00000a48: 01 DW_LNS_copy
+ 0x00000000000005ce 127 25 1 0 0
+
+
+0x00000a49: 00 DW_LNE_set_address (0x00000000000005d1)
+0x00000a50: 03 DW_LNS_advance_line (126)
+0x00000a56: 05 DW_LNS_set_column (27)
+0x00000a58: 06 DW_LNS_negate_stmt
+0x00000a59: 01 DW_LNS_copy
+ 0x00000000000005d1 126 27 1 0 0 is_stmt
+
+
+0x00000a5a: 00 DW_LNE_set_address (0x00000000000005d6)
+0x00000a61: 05 DW_LNS_set_column (13)
+0x00000a63: 06 DW_LNS_negate_stmt
+0x00000a64: 01 DW_LNS_copy
+ 0x00000000000005d6 126 13 1 0 0
+
+
+0x00000a65: 00 DW_LNE_set_address (0x00000000000005de)
+0x00000a6c: 03 DW_LNS_advance_line (128)
+0x00000a6e: 06 DW_LNS_negate_stmt
+0x00000a6f: 01 DW_LNS_copy
+ 0x00000000000005de 128 13 1 0 0 is_stmt
+
+
+0x00000a70: 00 DW_LNE_set_address (0x00000000000005e6)
+0x00000a77: 05 DW_LNS_set_column (22)
+0x00000a79: 06 DW_LNS_negate_stmt
+0x00000a7a: 01 DW_LNS_copy
+ 0x00000000000005e6 128 22 1 0 0
+
+
+0x00000a7b: 00 DW_LNE_set_address (0x00000000000005eb)
+0x00000a82: 03 DW_LNS_advance_line (130)
+0x00000a84: 05 DW_LNS_set_column (16)
+0x00000a86: 06 DW_LNS_negate_stmt
+0x00000a87: 01 DW_LNS_copy
+ 0x00000000000005eb 130 16 1 0 0 is_stmt
+
+
+0x00000a88: 00 DW_LNE_set_address (0x00000000000005f3)
+0x00000a8f: 05 DW_LNS_set_column (14)
+0x00000a91: 06 DW_LNS_negate_stmt
+0x00000a92: 01 DW_LNS_copy
+ 0x00000000000005f3 130 14 1 0 0
+
+
+0x00000a93: 00 DW_LNE_set_address (0x0000000000000604)
+0x00000a9a: 05 DW_LNS_set_column (25)
+0x00000a9c: 01 DW_LNS_copy
+ 0x0000000000000604 130 25 1 0 0
+
+
+0x00000a9d: 00 DW_LNE_set_address (0x0000000000000609)
+0x00000aa4: 05 DW_LNS_set_column (14)
+0x00000aa6: 01 DW_LNS_copy
+ 0x0000000000000609 130 14 1 0 0
+
+
+0x00000aa7: 00 DW_LNE_set_address (0x000000000000060b)
+0x00000aae: 03 DW_LNS_advance_line (133)
+0x00000ab0: 05 DW_LNS_set_column (11)
0x00000ab2: 06 DW_LNS_negate_stmt
-0x00000ab3: 0a DW_LNS_set_prologue_end
-0x00000ab4: 00 DW_LNE_end_sequence
- 0x00000000000004ad 119 10 1 0 0 end_sequence
-
-0x00000ab7: 00 DW_LNE_set_address (0x00000000000004af)
-0x00000abe: 03 DW_LNS_advance_line (119)
-0x00000ac1: 05 DW_LNS_set_column (23)
-0x00000ac3: 06 DW_LNS_negate_stmt
-0x00000ac4: 0a DW_LNS_set_prologue_end
-0x00000ac5: 00 DW_LNE_end_sequence
- 0x00000000000004af 119 23 1 0 0 end_sequence
-
-0x00000ac8: 00 DW_LNE_set_address (0x00000000000004b4)
-0x00000acf: 03 DW_LNS_advance_line (118)
-0x00000ad2: 05 DW_LNS_set_column (16)
-0x00000ad4: 0a DW_LNS_set_prologue_end
-0x00000ad5: 00 DW_LNE_end_sequence
- 0x00000000000004b4 118 16 1 0 0 is_stmt end_sequence
-
-0x00000ad8: 00 DW_LNE_set_address (0x00000000000004bf)
-0x00000adf: 03 DW_LNS_advance_line (118)
-0x00000ae2: 05 DW_LNS_set_column (7)
-0x00000ae4: 06 DW_LNS_negate_stmt
-0x00000ae5: 0a DW_LNS_set_prologue_end
-0x00000ae6: 00 DW_LNE_end_sequence
- 0x00000000000004bf 118 7 1 0 0 end_sequence
-
-0x00000ae9: 00 DW_LNE_set_address (0x00000000000004c5)
-0x00000af0: 03 DW_LNS_advance_line (122)
-0x00000af3: 05 DW_LNS_set_column (16)
-0x00000af5: 0a DW_LNS_set_prologue_end
-0x00000af6: 00 DW_LNE_end_sequence
- 0x00000000000004c5 122 16 1 0 0 is_stmt end_sequence
-
-0x00000af9: 00 DW_LNE_set_address (0x00000000000004d9)
-0x00000b00: 03 DW_LNS_advance_line (125)
-0x00000b03: 05 DW_LNS_set_column (22)
-0x00000b05: 0a DW_LNS_set_prologue_end
-0x00000b06: 00 DW_LNE_end_sequence
- 0x00000000000004d9 125 22 1 0 0 is_stmt end_sequence
-
-0x00000b09: 00 DW_LNE_set_address (0x00000000000004e2)
-0x00000b10: 03 DW_LNS_advance_line (126)
-0x00000b13: 05 DW_LNS_set_column (27)
-0x00000b15: 0a DW_LNS_set_prologue_end
-0x00000b16: 00 DW_LNE_end_sequence
- 0x00000000000004e2 126 27 1 0 0 is_stmt end_sequence
-
-0x00000b19: 00 DW_LNE_set_address (0x00000000000004e7)
-0x00000b20: 03 DW_LNS_advance_line (126)
-0x00000b23: 05 DW_LNS_set_column (13)
-0x00000b25: 06 DW_LNS_negate_stmt
-0x00000b26: 0a DW_LNS_set_prologue_end
-0x00000b27: 00 DW_LNE_end_sequence
- 0x00000000000004e7 126 13 1 0 0 end_sequence
-
-0x00000b2a: 00 DW_LNE_set_address (0x00000000000004eb)
-0x00000b31: 03 DW_LNS_advance_line (127)
-0x00000b34: 05 DW_LNS_set_column (16)
-0x00000b36: 0a DW_LNS_set_prologue_end
-0x00000b37: 00 DW_LNE_end_sequence
- 0x00000000000004eb 127 16 1 0 0 is_stmt end_sequence
-
-0x00000b3a: 00 DW_LNE_set_address (0x00000000000004f3)
-0x00000b41: 03 DW_LNS_advance_line (127)
-0x00000b44: 05 DW_LNS_set_column (27)
-0x00000b46: 06 DW_LNS_negate_stmt
-0x00000b47: 0a DW_LNS_set_prologue_end
-0x00000b48: 00 DW_LNE_end_sequence
- 0x00000000000004f3 127 27 1 0 0 end_sequence
-
-0x00000b4b: 00 DW_LNE_set_address (0x00000000000004f5)
-0x00000b52: 03 DW_LNS_advance_line (127)
-0x00000b55: 05 DW_LNS_set_column (35)
-0x00000b57: 06 DW_LNS_negate_stmt
-0x00000b58: 0a DW_LNS_set_prologue_end
-0x00000b59: 00 DW_LNE_end_sequence
- 0x00000000000004f5 127 35 1 0 0 end_sequence
-
-0x00000b5c: 00 DW_LNE_set_address (0x00000000000004fe)
-0x00000b63: 03 DW_LNS_advance_line (127)
-0x00000b66: 05 DW_LNS_set_column (27)
-0x00000b68: 06 DW_LNS_negate_stmt
-0x00000b69: 0a DW_LNS_set_prologue_end
-0x00000b6a: 00 DW_LNE_end_sequence
- 0x00000000000004fe 127 27 1 0 0 end_sequence
-
-0x00000b6d: 00 DW_LNE_set_address (0x0000000000000503)
-0x00000b74: 03 DW_LNS_advance_line (127)
-0x00000b77: 05 DW_LNS_set_column (25)
-0x00000b79: 06 DW_LNS_negate_stmt
-0x00000b7a: 0a DW_LNS_set_prologue_end
-0x00000b7b: 00 DW_LNE_end_sequence
- 0x0000000000000503 127 25 1 0 0 end_sequence
-
-0x00000b7e: 00 DW_LNE_set_address (0x0000000000000506)
-0x00000b85: 03 DW_LNS_advance_line (126)
-0x00000b88: 05 DW_LNS_set_column (27)
-0x00000b8a: 0a DW_LNS_set_prologue_end
-0x00000b8b: 00 DW_LNE_end_sequence
- 0x0000000000000506 126 27 1 0 0 is_stmt end_sequence
-
-0x00000b8e: 00 DW_LNE_set_address (0x000000000000050b)
-0x00000b95: 03 DW_LNS_advance_line (126)
-0x00000b98: 05 DW_LNS_set_column (13)
-0x00000b9a: 06 DW_LNS_negate_stmt
-0x00000b9b: 0a DW_LNS_set_prologue_end
-0x00000b9c: 00 DW_LNE_end_sequence
- 0x000000000000050b 126 13 1 0 0 end_sequence
-
-0x00000b9f: 00 DW_LNE_set_address (0x0000000000000513)
-0x00000ba6: 03 DW_LNS_advance_line (128)
-0x00000ba9: 05 DW_LNS_set_column (13)
-0x00000bab: 0a DW_LNS_set_prologue_end
-0x00000bac: 00 DW_LNE_end_sequence
- 0x0000000000000513 128 13 1 0 0 is_stmt end_sequence
-
-0x00000baf: 00 DW_LNE_set_address (0x000000000000051b)
-0x00000bb6: 03 DW_LNS_advance_line (128)
-0x00000bb9: 05 DW_LNS_set_column (22)
-0x00000bbb: 06 DW_LNS_negate_stmt
-0x00000bbc: 0a DW_LNS_set_prologue_end
-0x00000bbd: 00 DW_LNE_end_sequence
- 0x000000000000051b 128 22 1 0 0 end_sequence
-
-0x00000bc0: 00 DW_LNE_set_address (0x0000000000000520)
-0x00000bc7: 03 DW_LNS_advance_line (130)
-0x00000bca: 05 DW_LNS_set_column (16)
-0x00000bcc: 0a DW_LNS_set_prologue_end
-0x00000bcd: 00 DW_LNE_end_sequence
- 0x0000000000000520 130 16 1 0 0 is_stmt end_sequence
-
-0x00000bd0: 00 DW_LNE_set_address (0x0000000000000528)
-0x00000bd7: 03 DW_LNS_advance_line (130)
-0x00000bda: 05 DW_LNS_set_column (14)
-0x00000bdc: 06 DW_LNS_negate_stmt
-0x00000bdd: 0a DW_LNS_set_prologue_end
-0x00000bde: 00 DW_LNE_end_sequence
- 0x0000000000000528 130 14 1 0 0 end_sequence
-
-0x00000be1: 00 DW_LNE_set_address (0x0000000000000539)
-0x00000be8: 03 DW_LNS_advance_line (130)
-0x00000beb: 05 DW_LNS_set_column (25)
-0x00000bed: 06 DW_LNS_negate_stmt
-0x00000bee: 0a DW_LNS_set_prologue_end
-0x00000bef: 00 DW_LNE_end_sequence
- 0x0000000000000539 130 25 1 0 0 end_sequence
-
-0x00000bf2: 00 DW_LNE_set_address (0x000000000000053e)
-0x00000bf9: 03 DW_LNS_advance_line (130)
-0x00000bfc: 05 DW_LNS_set_column (14)
-0x00000bfe: 06 DW_LNS_negate_stmt
-0x00000bff: 0a DW_LNS_set_prologue_end
-0x00000c00: 00 DW_LNE_end_sequence
- 0x000000000000053e 130 14 1 0 0 end_sequence
-
-0x00000c03: 00 DW_LNE_set_address (0x0000000000000540)
-0x00000c0a: 03 DW_LNS_advance_line (133)
-0x00000c0d: 05 DW_LNS_set_column (11)
-0x00000c0f: 0a DW_LNS_set_prologue_end
-0x00000c10: 00 DW_LNE_end_sequence
- 0x0000000000000540 133 11 1 0 0 is_stmt end_sequence
-
-0x00000c13: 00 DW_LNE_set_address (0x0000000000000545)
-0x00000c1a: 03 DW_LNS_advance_line (122)
-0x00000c1d: 05 DW_LNS_set_column (16)
-0x00000c1f: 0a DW_LNS_set_prologue_end
-0x00000c20: 00 DW_LNE_end_sequence
- 0x0000000000000545 122 16 1 0 0 is_stmt end_sequence
-
-0x00000c23: 00 DW_LNE_set_address (0x000000000000054a)
-0x00000c2a: 03 DW_LNS_advance_line (122)
-0x00000c2d: 05 DW_LNS_set_column (14)
-0x00000c2f: 06 DW_LNS_negate_stmt
-0x00000c30: 0a DW_LNS_set_prologue_end
-0x00000c31: 00 DW_LNE_end_sequence
- 0x000000000000054a 122 14 1 0 0 end_sequence
-
-0x00000c34: 00 DW_LNE_set_address (0x000000000000054f)
-0x00000c3b: 03 DW_LNS_advance_line (130)
-0x00000c3e: 05 DW_LNS_set_column (14)
-0x00000c40: 0a DW_LNS_set_prologue_end
-0x00000c41: 00 DW_LNE_end_sequence
- 0x000000000000054f 130 14 1 0 0 is_stmt end_sequence
-
-0x00000c44: 00 DW_LNE_set_address (0x0000000000000550)
-0x00000c4b: 03 DW_LNS_advance_line (110)
-0x00000c4e: 05 DW_LNS_set_column (11)
-0x00000c50: 0a DW_LNS_set_prologue_end
-0x00000c51: 00 DW_LNE_end_sequence
- 0x0000000000000550 110 11 1 0 0 is_stmt end_sequence
-
-0x00000c54: 00 DW_LNE_set_address (0x000000000000055f)
-0x00000c5b: 03 DW_LNS_advance_line (113)
-0x00000c5e: 05 DW_LNS_set_column (10)
-0x00000c60: 0a DW_LNS_set_prologue_end
-0x00000c61: 00 DW_LNE_end_sequence
- 0x000000000000055f 113 10 1 0 0 is_stmt end_sequence
-
-0x00000c64: 00 DW_LNE_set_address (0x0000000000000564)
-0x00000c6b: 03 DW_LNS_advance_line (118)
-0x00000c6e: 05 DW_LNS_set_column (16)
-0x00000c70: 0a DW_LNS_set_prologue_end
-0x00000c71: 00 DW_LNE_end_sequence
- 0x0000000000000564 118 16 1 0 0 is_stmt end_sequence
-
-0x00000c74: 00 DW_LNE_set_address (0x0000000000000569)
-0x00000c7b: 03 DW_LNS_advance_line (118)
-0x00000c7e: 05 DW_LNS_set_column (7)
-0x00000c80: 06 DW_LNS_negate_stmt
-0x00000c81: 0a DW_LNS_set_prologue_end
-0x00000c82: 00 DW_LNE_end_sequence
- 0x0000000000000569 118 7 1 0 0 end_sequence
-
-0x00000c85: 00 DW_LNE_set_address (0x000000000000056d)
-0x00000c8c: 03 DW_LNS_advance_line (119)
-0x00000c8f: 05 DW_LNS_set_column (10)
-0x00000c91: 0a DW_LNS_set_prologue_end
-0x00000c92: 00 DW_LNE_end_sequence
- 0x000000000000056d 119 10 1 0 0 is_stmt end_sequence
-
-0x00000c95: 00 DW_LNE_set_address (0x000000000000056f)
-0x00000c9c: 03 DW_LNS_advance_line (119)
-0x00000c9f: 05 DW_LNS_set_column (18)
-0x00000ca1: 06 DW_LNS_negate_stmt
-0x00000ca2: 0a DW_LNS_set_prologue_end
-0x00000ca3: 00 DW_LNE_end_sequence
- 0x000000000000056f 119 18 1 0 0 end_sequence
-
-0x00000ca6: 00 DW_LNE_set_address (0x0000000000000578)
-0x00000cad: 03 DW_LNS_advance_line (119)
-0x00000cb0: 05 DW_LNS_set_column (10)
-0x00000cb2: 06 DW_LNS_negate_stmt
-0x00000cb3: 0a DW_LNS_set_prologue_end
-0x00000cb4: 00 DW_LNE_end_sequence
- 0x0000000000000578 119 10 1 0 0 end_sequence
-
-0x00000cb7: 00 DW_LNE_set_address (0x000000000000057a)
-0x00000cbe: 03 DW_LNS_advance_line (119)
-0x00000cc1: 05 DW_LNS_set_column (23)
-0x00000cc3: 06 DW_LNS_negate_stmt
-0x00000cc4: 0a DW_LNS_set_prologue_end
-0x00000cc5: 00 DW_LNE_end_sequence
- 0x000000000000057a 119 23 1 0 0 end_sequence
-
-0x00000cc8: 00 DW_LNE_set_address (0x000000000000057f)
-0x00000ccf: 03 DW_LNS_advance_line (118)
-0x00000cd2: 05 DW_LNS_set_column (16)
-0x00000cd4: 0a DW_LNS_set_prologue_end
-0x00000cd5: 00 DW_LNE_end_sequence
- 0x000000000000057f 118 16 1 0 0 is_stmt end_sequence
-
-0x00000cd8: 00 DW_LNE_set_address (0x000000000000058a)
-0x00000cdf: 03 DW_LNS_advance_line (118)
-0x00000ce2: 05 DW_LNS_set_column (7)
-0x00000ce4: 06 DW_LNS_negate_stmt
-0x00000ce5: 0a DW_LNS_set_prologue_end
-0x00000ce6: 00 DW_LNE_end_sequence
- 0x000000000000058a 118 7 1 0 0 end_sequence
-
-0x00000ce9: 00 DW_LNE_set_address (0x0000000000000590)
-0x00000cf0: 03 DW_LNS_advance_line (122)
-0x00000cf3: 05 DW_LNS_set_column (16)
-0x00000cf5: 0a DW_LNS_set_prologue_end
-0x00000cf6: 00 DW_LNE_end_sequence
- 0x0000000000000590 122 16 1 0 0 is_stmt end_sequence
-
-0x00000cf9: 00 DW_LNE_set_address (0x0000000000000595)
-0x00000d00: 03 DW_LNS_advance_line (122)
-0x00000d03: 05 DW_LNS_set_column (14)
-0x00000d05: 06 DW_LNS_negate_stmt
-0x00000d06: 0a DW_LNS_set_prologue_end
-0x00000d07: 00 DW_LNE_end_sequence
- 0x0000000000000595 122 14 1 0 0 end_sequence
-
-0x00000d0a: 00 DW_LNE_set_address (0x000000000000059e)
-0x00000d11: 03 DW_LNS_advance_line (125)
-0x00000d14: 05 DW_LNS_set_column (22)
-0x00000d16: 0a DW_LNS_set_prologue_end
-0x00000d17: 00 DW_LNE_end_sequence
- 0x000000000000059e 125 22 1 0 0 is_stmt end_sequence
-
-0x00000d1a: 00 DW_LNE_set_address (0x00000000000005ad)
-0x00000d21: 03 DW_LNS_advance_line (126)
-0x00000d24: 05 DW_LNS_set_column (27)
-0x00000d26: 0a DW_LNS_set_prologue_end
-0x00000d27: 00 DW_LNE_end_sequence
- 0x00000000000005ad 126 27 1 0 0 is_stmt end_sequence
-
-0x00000d2a: 00 DW_LNE_set_address (0x00000000000005b2)
-0x00000d31: 03 DW_LNS_advance_line (126)
-0x00000d34: 05 DW_LNS_set_column (13)
-0x00000d36: 06 DW_LNS_negate_stmt
-0x00000d37: 0a DW_LNS_set_prologue_end
-0x00000d38: 00 DW_LNE_end_sequence
- 0x00000000000005b2 126 13 1 0 0 end_sequence
-
-0x00000d3b: 00 DW_LNE_set_address (0x00000000000005b6)
-0x00000d42: 03 DW_LNS_advance_line (127)
-0x00000d45: 05 DW_LNS_set_column (16)
-0x00000d47: 0a DW_LNS_set_prologue_end
-0x00000d48: 00 DW_LNE_end_sequence
- 0x00000000000005b6 127 16 1 0 0 is_stmt end_sequence
-
-0x00000d4b: 00 DW_LNE_set_address (0x00000000000005be)
-0x00000d52: 03 DW_LNS_advance_line (127)
-0x00000d55: 05 DW_LNS_set_column (27)
-0x00000d57: 06 DW_LNS_negate_stmt
-0x00000d58: 0a DW_LNS_set_prologue_end
-0x00000d59: 00 DW_LNE_end_sequence
- 0x00000000000005be 127 27 1 0 0 end_sequence
-
-0x00000d5c: 00 DW_LNE_set_address (0x00000000000005c0)
-0x00000d63: 03 DW_LNS_advance_line (127)
-0x00000d66: 05 DW_LNS_set_column (35)
-0x00000d68: 06 DW_LNS_negate_stmt
-0x00000d69: 0a DW_LNS_set_prologue_end
-0x00000d6a: 00 DW_LNE_end_sequence
- 0x00000000000005c0 127 35 1 0 0 end_sequence
-
-0x00000d6d: 00 DW_LNE_set_address (0x00000000000005c9)
-0x00000d74: 03 DW_LNS_advance_line (127)
-0x00000d77: 05 DW_LNS_set_column (27)
-0x00000d79: 06 DW_LNS_negate_stmt
-0x00000d7a: 0a DW_LNS_set_prologue_end
-0x00000d7b: 00 DW_LNE_end_sequence
- 0x00000000000005c9 127 27 1 0 0 end_sequence
-
-0x00000d7e: 00 DW_LNE_set_address (0x00000000000005ce)
-0x00000d85: 03 DW_LNS_advance_line (127)
-0x00000d88: 05 DW_LNS_set_column (25)
-0x00000d8a: 06 DW_LNS_negate_stmt
-0x00000d8b: 0a DW_LNS_set_prologue_end
-0x00000d8c: 00 DW_LNE_end_sequence
- 0x00000000000005ce 127 25 1 0 0 end_sequence
-
-0x00000d8f: 00 DW_LNE_set_address (0x00000000000005d1)
-0x00000d96: 03 DW_LNS_advance_line (126)
-0x00000d99: 05 DW_LNS_set_column (27)
-0x00000d9b: 0a DW_LNS_set_prologue_end
-0x00000d9c: 00 DW_LNE_end_sequence
- 0x00000000000005d1 126 27 1 0 0 is_stmt end_sequence
-
-0x00000d9f: 00 DW_LNE_set_address (0x00000000000005d6)
-0x00000da6: 03 DW_LNS_advance_line (126)
-0x00000da9: 05 DW_LNS_set_column (13)
-0x00000dab: 06 DW_LNS_negate_stmt
-0x00000dac: 0a DW_LNS_set_prologue_end
-0x00000dad: 00 DW_LNE_end_sequence
- 0x00000000000005d6 126 13 1 0 0 end_sequence
-
-0x00000db0: 00 DW_LNE_set_address (0x00000000000005de)
-0x00000db7: 03 DW_LNS_advance_line (128)
-0x00000dba: 05 DW_LNS_set_column (13)
-0x00000dbc: 0a DW_LNS_set_prologue_end
-0x00000dbd: 00 DW_LNE_end_sequence
- 0x00000000000005de 128 13 1 0 0 is_stmt end_sequence
-
-0x00000dc0: 00 DW_LNE_set_address (0x00000000000005e6)
-0x00000dc7: 03 DW_LNS_advance_line (128)
-0x00000dca: 05 DW_LNS_set_column (22)
-0x00000dcc: 06 DW_LNS_negate_stmt
-0x00000dcd: 0a DW_LNS_set_prologue_end
-0x00000dce: 00 DW_LNE_end_sequence
- 0x00000000000005e6 128 22 1 0 0 end_sequence
-
-0x00000dd1: 00 DW_LNE_set_address (0x00000000000005eb)
-0x00000dd8: 03 DW_LNS_advance_line (130)
-0x00000ddb: 05 DW_LNS_set_column (16)
-0x00000ddd: 0a DW_LNS_set_prologue_end
-0x00000dde: 00 DW_LNE_end_sequence
- 0x00000000000005eb 130 16 1 0 0 is_stmt end_sequence
-
-0x00000de1: 00 DW_LNE_set_address (0x00000000000005f3)
-0x00000de8: 03 DW_LNS_advance_line (130)
-0x00000deb: 05 DW_LNS_set_column (14)
-0x00000ded: 06 DW_LNS_negate_stmt
-0x00000dee: 0a DW_LNS_set_prologue_end
-0x00000def: 00 DW_LNE_end_sequence
- 0x00000000000005f3 130 14 1 0 0 end_sequence
-
-0x00000df2: 00 DW_LNE_set_address (0x0000000000000604)
-0x00000df9: 03 DW_LNS_advance_line (130)
-0x00000dfc: 05 DW_LNS_set_column (25)
-0x00000dfe: 06 DW_LNS_negate_stmt
-0x00000dff: 0a DW_LNS_set_prologue_end
-0x00000e00: 00 DW_LNE_end_sequence
- 0x0000000000000604 130 25 1 0 0 end_sequence
-
-0x00000e03: 00 DW_LNE_set_address (0x0000000000000609)
-0x00000e0a: 03 DW_LNS_advance_line (130)
-0x00000e0d: 05 DW_LNS_set_column (14)
-0x00000e0f: 06 DW_LNS_negate_stmt
-0x00000e10: 0a DW_LNS_set_prologue_end
-0x00000e11: 00 DW_LNE_end_sequence
- 0x0000000000000609 130 14 1 0 0 end_sequence
-
-0x00000e14: 00 DW_LNE_set_address (0x000000000000060b)
-0x00000e1b: 03 DW_LNS_advance_line (133)
-0x00000e1e: 05 DW_LNS_set_column (11)
-0x00000e20: 0a DW_LNS_set_prologue_end
-0x00000e21: 00 DW_LNE_end_sequence
- 0x000000000000060b 133 11 1 0 0 is_stmt end_sequence
-
-0x00000e24: 00 DW_LNE_set_address (0x0000000000000610)
-0x00000e2b: 03 DW_LNS_advance_line (122)
-0x00000e2e: 05 DW_LNS_set_column (16)
-0x00000e30: 0a DW_LNS_set_prologue_end
-0x00000e31: 00 DW_LNE_end_sequence
- 0x0000000000000610 122 16 1 0 0 is_stmt end_sequence
-
-0x00000e34: 00 DW_LNE_set_address (0x0000000000000615)
-0x00000e3b: 03 DW_LNS_advance_line (122)
-0x00000e3e: 05 DW_LNS_set_column (14)
-0x00000e40: 06 DW_LNS_negate_stmt
-0x00000e41: 0a DW_LNS_set_prologue_end
-0x00000e42: 00 DW_LNE_end_sequence
- 0x0000000000000615 122 14 1 0 0 end_sequence
-
-0x00000e45: 00 DW_LNE_set_address (0x000000000000061a)
-0x00000e4c: 03 DW_LNS_advance_line (130)
-0x00000e4f: 05 DW_LNS_set_column (14)
-0x00000e51: 0a DW_LNS_set_prologue_end
-0x00000e52: 00 DW_LNE_end_sequence
- 0x000000000000061a 130 14 1 0 0 is_stmt end_sequence
-
-0x00000e55: 00 DW_LNE_set_address (0x000000000000061b)
-0x00000e5c: 03 DW_LNS_advance_line (110)
-0x00000e5f: 05 DW_LNS_set_column (11)
-0x00000e61: 0a DW_LNS_set_prologue_end
-0x00000e62: 00 DW_LNE_end_sequence
- 0x000000000000061b 110 11 1 0 0 is_stmt end_sequence
-
-0x00000e65: 00 DW_LNE_set_address (0x0000000000000621)
-0x00000e6c: 03 DW_LNS_advance_line (138)
-0x00000e6f: 05 DW_LNS_set_column (4)
-0x00000e71: 0a DW_LNS_set_prologue_end
-0x00000e72: 00 DW_LNE_end_sequence
- 0x0000000000000621 138 4 1 0 0 is_stmt end_sequence
-
-0x00000e75: 00 DW_LNE_set_address (0x0000000000000625)
-0x00000e7c: 03 DW_LNS_advance_line (139)
-0x00000e7f: 05 DW_LNS_set_column (4)
-0x00000e81: 0a DW_LNS_set_prologue_end
-0x00000e82: 00 DW_LNE_end_sequence
- 0x0000000000000625 139 4 1 0 0 is_stmt end_sequence
-
-0x00000e85: 00 DW_LNE_set_address (0x0000000000000631)
-0x00000e8c: 03 DW_LNS_advance_line (141)
-0x00000e8f: 05 DW_LNS_set_column (4)
-0x00000e91: 0a DW_LNS_set_prologue_end
-0x00000e92: 00 DW_LNE_end_sequence
- 0x0000000000000631 141 4 1 0 0 is_stmt end_sequence
-
-0x00000e95: 00 DW_LNE_set_address (0x000000000000063c)
-0x00000e9c: 03 DW_LNS_advance_line (142)
-0x00000e9f: 05 DW_LNS_set_column (20)
-0x00000ea1: 0a DW_LNS_set_prologue_end
-0x00000ea2: 00 DW_LNE_end_sequence
- 0x000000000000063c 142 20 1 0 0 is_stmt end_sequence
-
-0x00000ea5: 00 DW_LNE_set_address (0x0000000000000644)
-0x00000eac: 03 DW_LNS_advance_line (146)
-0x00000eaf: 05 DW_LNS_set_column (20)
-0x00000eb1: 0a DW_LNS_set_prologue_end
-0x00000eb2: 00 DW_LNE_end_sequence
- 0x0000000000000644 146 20 1 0 0 is_stmt end_sequence
-
-0x00000eb5: 00 DW_LNE_set_address (0x000000000000064b)
-0x00000ebc: 03 DW_LNS_advance_line (147)
-0x00000ebf: 05 DW_LNS_set_column (7)
-0x00000ec1: 0a DW_LNS_set_prologue_end
-0x00000ec2: 00 DW_LNE_end_sequence
- 0x000000000000064b 147 7 1 0 0 is_stmt end_sequence
-
-0x00000ec5: 00 DW_LNE_set_address (0x000000000000064f)
-0x00000ecc: 03 DW_LNS_advance_line (143)
-0x00000ecf: 05 DW_LNS_set_column (11)
-0x00000ed1: 0a DW_LNS_set_prologue_end
-0x00000ed2: 00 DW_LNE_end_sequence
- 0x000000000000064f 143 11 1 0 0 is_stmt end_sequence
-
-0x00000ed5: 00 DW_LNE_set_address (0x0000000000000653)
-0x00000edc: 03 DW_LNS_advance_line (143)
-0x00000edf: 05 DW_LNS_set_column (20)
-0x00000ee1: 06 DW_LNS_negate_stmt
-0x00000ee2: 0a DW_LNS_set_prologue_end
-0x00000ee3: 00 DW_LNE_end_sequence
- 0x0000000000000653 143 20 1 0 0 end_sequence
-
-0x00000ee6: 00 DW_LNE_set_address (0x0000000000000658)
-0x00000eed: 03 DW_LNS_advance_line (143)
-0x00000ef0: 05 DW_LNS_set_column (11)
-0x00000ef2: 06 DW_LNS_negate_stmt
-0x00000ef3: 0a DW_LNS_set_prologue_end
-0x00000ef4: 00 DW_LNE_end_sequence
- 0x0000000000000658 143 11 1 0 0 end_sequence
-
-0x00000ef7: 00 DW_LNE_set_address (0x000000000000065f)
-0x00000efe: 03 DW_LNS_advance_line (141)
-0x00000f01: 05 DW_LNS_set_column (4)
-0x00000f03: 0a DW_LNS_set_prologue_end
-0x00000f04: 00 DW_LNE_end_sequence
- 0x000000000000065f 141 4 1 0 0 is_stmt end_sequence
-
-0x00000f07: 00 DW_LNE_set_address (0x0000000000000665)
-0x00000f0e: 03 DW_LNS_advance_line (159)
-0x00000f11: 05 DW_LNS_set_column (4)
-0x00000f13: 0a DW_LNS_set_prologue_end
-0x00000f14: 00 DW_LNE_end_sequence
- 0x0000000000000665 159 4 1 0 0 is_stmt end_sequence
-
-0x00000f17: 00 DW_LNE_set_address (0x000000000000067c)
-0x00000f1e: 03 DW_LNS_advance_line (161)
-0x00000f21: 05 DW_LNS_set_column (1)
-0x00000f23: 0a DW_LNS_set_prologue_end
-0x00000f24: 00 DW_LNE_end_sequence
- 0x000000000000067c 161 1 1 0 0 is_stmt end_sequence
-
-0x00000f27: 00 DW_LNE_set_address (0x0000000000000686)
-0x00000f2e: 03 DW_LNS_advance_line (161)
-0x00000f31: 05 DW_LNS_set_column (1)
-0x00000f33: 0a DW_LNS_set_prologue_end
-0x00000f34: 00 DW_LNE_end_sequence
+0x00000ab3: 01 DW_LNS_copy
+ 0x000000000000060b 133 11 1 0 0 is_stmt
+
+
+0x00000ab4: 00 DW_LNE_set_address (0x0000000000000610)
+0x00000abb: 03 DW_LNS_advance_line (122)
+0x00000ac1: 05 DW_LNS_set_column (16)
+0x00000ac3: 01 DW_LNS_copy
+ 0x0000000000000610 122 16 1 0 0 is_stmt
+
+
+0x00000ac4: 00 DW_LNE_set_address (0x0000000000000615)
+0x00000acb: 05 DW_LNS_set_column (14)
+0x00000acd: 06 DW_LNS_negate_stmt
+0x00000ace: 01 DW_LNS_copy
+ 0x0000000000000615 122 14 1 0 0
+
+
+0x00000acf: 00 DW_LNE_set_address (0x000000000000061a)
+0x00000ad6: 03 DW_LNS_advance_line (130)
+0x00000ad8: 06 DW_LNS_negate_stmt
+0x00000ad9: 01 DW_LNS_copy
+ 0x000000000000061a 130 14 1 0 0 is_stmt
+
+
+0x00000ada: 00 DW_LNE_set_address (0x000000000000061b)
+0x00000ae1: 03 DW_LNS_advance_line (110)
+0x00000ae7: 05 DW_LNS_set_column (11)
+0x00000ae9: 01 DW_LNS_copy
+ 0x000000000000061b 110 11 1 0 0 is_stmt
+
+
+0x00000aea: 00 DW_LNE_set_address (0x0000000000000621)
+0x00000af1: 03 DW_LNS_advance_line (138)
+0x00000af3: 05 DW_LNS_set_column (4)
+0x00000af5: 01 DW_LNS_copy
+ 0x0000000000000621 138 4 1 0 0 is_stmt
+
+
+0x00000af6: 00 DW_LNE_set_address (0x0000000000000625)
+0x00000afd: 03 DW_LNS_advance_line (139)
+0x00000aff: 01 DW_LNS_copy
+ 0x0000000000000625 139 4 1 0 0 is_stmt
+
+
+0x00000b00: 00 DW_LNE_set_address (0x0000000000000631)
+0x00000b07: 03 DW_LNS_advance_line (141)
+0x00000b09: 01 DW_LNS_copy
+ 0x0000000000000631 141 4 1 0 0 is_stmt
+
+
+0x00000b0a: 00 DW_LNE_set_address (0x000000000000063c)
+0x00000b11: 03 DW_LNS_advance_line (142)
+0x00000b13: 05 DW_LNS_set_column (20)
+0x00000b15: 01 DW_LNS_copy
+ 0x000000000000063c 142 20 1 0 0 is_stmt
+
+
+0x00000b16: 00 DW_LNE_set_address (0x0000000000000644)
+0x00000b1d: 03 DW_LNS_advance_line (146)
+0x00000b1f: 01 DW_LNS_copy
+ 0x0000000000000644 146 20 1 0 0 is_stmt
+
+
+0x00000b20: 00 DW_LNE_set_address (0x000000000000064b)
+0x00000b27: 03 DW_LNS_advance_line (147)
+0x00000b29: 05 DW_LNS_set_column (7)
+0x00000b2b: 01 DW_LNS_copy
+ 0x000000000000064b 147 7 1 0 0 is_stmt
+
+
+0x00000b2c: 00 DW_LNE_set_address (0x000000000000064f)
+0x00000b33: 03 DW_LNS_advance_line (143)
+0x00000b39: 05 DW_LNS_set_column (11)
+0x00000b3b: 01 DW_LNS_copy
+ 0x000000000000064f 143 11 1 0 0 is_stmt
+
+
+0x00000b3c: 00 DW_LNE_set_address (0x0000000000000653)
+0x00000b43: 05 DW_LNS_set_column (20)
+0x00000b45: 06 DW_LNS_negate_stmt
+0x00000b46: 01 DW_LNS_copy
+ 0x0000000000000653 143 20 1 0 0
+
+
+0x00000b47: 00 DW_LNE_set_address (0x0000000000000658)
+0x00000b4e: 05 DW_LNS_set_column (11)
+0x00000b50: 01 DW_LNS_copy
+ 0x0000000000000658 143 11 1 0 0
+
+
+0x00000b51: 00 DW_LNE_set_address (0x000000000000065f)
+0x00000b58: 03 DW_LNS_advance_line (141)
+0x00000b5e: 05 DW_LNS_set_column (4)
+0x00000b60: 06 DW_LNS_negate_stmt
+0x00000b61: 01 DW_LNS_copy
+ 0x000000000000065f 141 4 1 0 0 is_stmt
+
+
+0x00000b62: 00 DW_LNE_set_address (0x0000000000000665)
+0x00000b69: 03 DW_LNS_advance_line (159)
+0x00000b6b: 01 DW_LNS_copy
+ 0x0000000000000665 159 4 1 0 0 is_stmt
+
+
+0x00000b6c: 00 DW_LNE_set_address (0x000000000000067c)
+0x00000b73: 03 DW_LNS_advance_line (161)
+0x00000b75: 05 DW_LNS_set_column (1)
+0x00000b77: 01 DW_LNS_copy
+ 0x000000000000067c 161 1 1 0 0 is_stmt
+
+
+0x00000b78: 00 DW_LNE_set_address (0x0000000000000686)
+0x00000b7f: 00 DW_LNE_end_sequence
0x0000000000000686 161 1 1 0 0 is_stmt end_sequence
@@ -7114,7 +6997,7 @@ file_names[ 4]:
;; custom section ".debug_loc", size 1073
;; custom section ".debug_ranges", size 88
;; custom section ".debug_abbrev", size 333
- ;; custom section ".debug_line", size 3895
+ ;; custom section ".debug_line", size 2946
;; custom section ".debug_str", size 434
;; custom section "producers", size 135
)
diff --git a/test/passes/fannkuch3_manyopts.bin.txt b/test/passes/fannkuch3_manyopts.bin.txt
index 316f4adb0..897efd7cd 100644
--- a/test/passes/fannkuch3_manyopts.bin.txt
+++ b/test/passes/fannkuch3_manyopts.bin.txt
@@ -2303,7 +2303,7 @@ Contains section .debug_info (851 bytes)
Contains section .debug_loc (1073 bytes)
Contains section .debug_ranges (88 bytes)
Contains section .debug_abbrev (333 bytes)
-Contains section .debug_line (1417 bytes)
+Contains section .debug_line (1146 bytes)
Contains section .debug_str (434 bytes)
.debug_abbrev contents:
@@ -3119,7 +3119,7 @@ Abbrev table for offset: 0x00000000
.debug_line contents:
debug_line[0x00000000]
Line table prologue:
- total_length: 0x00000585
+ total_length: 0x00000476
version: 4
prologue_length: 0x000000dd
min_inst_length: 1
@@ -3163,558 +3163,515 @@ file_names[ 4]:
length: 0x00000000
0x000000e7: 00 DW_LNE_set_address (0x0000000000000007)
0x000000ee: 03 DW_LNS_advance_line (27)
-0x000000f0: 00 DW_LNE_end_sequence
- 0x0000000000000007 27 0 1 0 0 is_stmt end_sequence
-
-0x000000f3: 00 DW_LNE_set_address (0x0000000000000013)
-0x000000fa: 03 DW_LNS_advance_line (34)
-0x000000fc: 05 DW_LNS_set_column (27)
-0x000000fe: 0a DW_LNS_set_prologue_end
-0x000000ff: 00 DW_LNE_end_sequence
- 0x0000000000000013 34 27 1 0 0 is_stmt end_sequence
-
-0x00000102: 00 DW_LNE_set_address (0x0000000000000014)
-0x00000109: 03 DW_LNS_advance_line (34)
-0x0000010b: 05 DW_LNS_set_column (18)
-0x0000010d: 06 DW_LNS_negate_stmt
-0x0000010e: 0a DW_LNS_set_prologue_end
-0x0000010f: 00 DW_LNE_end_sequence
- 0x0000000000000014 34 18 1 0 0 end_sequence
-
-0x00000112: 00 DW_LNE_set_address (0x0000000000000047)
-0x00000119: 03 DW_LNS_advance_line (37)
-0x0000011b: 05 DW_LNS_set_column (18)
-0x0000011d: 06 DW_LNS_negate_stmt
-0x0000011e: 0a DW_LNS_set_prologue_end
-0x0000011f: 00 DW_LNE_end_sequence
- 0x0000000000000047 37 18 1 0 0 end_sequence
-
-0x00000122: 00 DW_LNE_set_address (0x000000000000004a)
-0x00000129: 03 DW_LNS_advance_line (37)
-0x0000012b: 05 DW_LNS_set_column (4)
-0x0000012d: 06 DW_LNS_negate_stmt
-0x0000012e: 0a DW_LNS_set_prologue_end
-0x0000012f: 00 DW_LNE_end_sequence
- 0x000000000000004a 37 4 1 0 0 end_sequence
-
-0x00000132: 00 DW_LNE_set_address (0x0000000000000056)
-0x00000139: 03 DW_LNS_advance_line (39)
-0x0000013b: 05 DW_LNS_set_column (4)
-0x0000013d: 06 DW_LNS_negate_stmt
-0x0000013e: 0a DW_LNS_set_prologue_end
-0x0000013f: 00 DW_LNE_end_sequence
- 0x0000000000000056 39 4 1 0 0 end_sequence
-
-0x00000142: 00 DW_LNE_set_address (0x000000000000005f)
-0x00000149: 03 DW_LNS_advance_line (39)
-0x0000014b: 05 DW_LNS_set_column (19)
-0x0000014d: 06 DW_LNS_negate_stmt
-0x0000014e: 0a DW_LNS_set_prologue_end
-0x0000014f: 00 DW_LNE_end_sequence
- 0x000000000000005f 39 19 1 0 0 end_sequence
-
-0x00000152: 00 DW_LNE_set_address (0x000000000000006c)
-0x00000159: 03 DW_LNS_advance_line (40)
-0x0000015b: 05 DW_LNS_set_column (17)
-0x0000015d: 06 DW_LNS_negate_stmt
-0x0000015e: 0a DW_LNS_set_prologue_end
-0x0000015f: 00 DW_LNE_end_sequence
- 0x000000000000006c 40 17 1 0 0 end_sequence
-
-0x00000162: 00 DW_LNE_set_address (0x0000000000000078)
-0x00000169: 03 DW_LNS_advance_line (43)
-0x0000016b: 05 DW_LNS_set_column (4)
-0x0000016d: 0a DW_LNS_set_prologue_end
-0x0000016e: 00 DW_LNE_end_sequence
- 0x0000000000000078 43 4 1 0 0 is_stmt end_sequence
-
-0x00000171: 00 DW_LNE_set_address (0x000000000000008e)
-0x00000178: 03 DW_LNS_advance_line (45)
-0x0000017a: 05 DW_LNS_set_column (10)
-0x0000017c: 06 DW_LNS_negate_stmt
-0x0000017d: 0a DW_LNS_set_prologue_end
-0x0000017e: 00 DW_LNE_end_sequence
- 0x000000000000008e 45 10 1 0 0 end_sequence
-
-0x00000181: 00 DW_LNE_set_address (0x00000000000000a4)
-0x00000188: 03 DW_LNS_advance_line (46)
-0x0000018a: 05 DW_LNS_set_column (11)
-0x0000018c: 0a DW_LNS_set_prologue_end
-0x0000018d: 00 DW_LNE_end_sequence
- 0x00000000000000a4 46 11 1 0 0 is_stmt end_sequence
-
-0x00000190: 00 DW_LNE_set_address (0x00000000000000c2)
-0x00000197: 03 DW_LNS_advance_line (50)
-0x00000199: 05 DW_LNS_set_column (14)
-0x0000019b: 0a DW_LNS_set_prologue_end
-0x0000019c: 00 DW_LNE_end_sequence
- 0x00000000000000c2 50 14 1 0 0 is_stmt end_sequence
-
-0x0000019f: 00 DW_LNE_set_address (0x0000000000000105)
-0x000001a6: 03 DW_LNS_advance_line (54)
-0x000001a8: 05 DW_LNS_set_column (24)
-0x000001aa: 06 DW_LNS_negate_stmt
-0x000001ab: 0a DW_LNS_set_prologue_end
-0x000001ac: 00 DW_LNE_end_sequence
- 0x0000000000000105 54 24 1 0 0 end_sequence
+0x000000f0: 01 DW_LNS_copy
+ 0x0000000000000007 27 0 1 0 0 is_stmt
-0x000001af: 00 DW_LNE_set_address (0x000000000000011b)
-0x000001b6: 03 DW_LNS_advance_line (52)
-0x000001b8: 05 DW_LNS_set_column (38)
-0x000001ba: 06 DW_LNS_negate_stmt
-0x000001bb: 0a DW_LNS_set_prologue_end
-0x000001bc: 00 DW_LNE_end_sequence
- 0x000000000000011b 52 38 1 0 0 end_sequence
-
-0x000001bf: 00 DW_LNE_set_address (0x000000000000011e)
-0x000001c6: 03 DW_LNS_advance_line (52)
-0x000001c8: 05 DW_LNS_set_column (13)
-0x000001ca: 06 DW_LNS_negate_stmt
-0x000001cb: 0a DW_LNS_set_prologue_end
-0x000001cc: 00 DW_LNE_end_sequence
- 0x000000000000011e 52 13 1 0 0 end_sequence
-
-0x000001cf: 00 DW_LNE_set_address (0x000000000000014b)
-0x000001d6: 03 DW_LNS_advance_line (62)
-0x000001d8: 05 DW_LNS_set_column (14)
-0x000001da: 06 DW_LNS_negate_stmt
-0x000001db: 0a DW_LNS_set_prologue_end
-0x000001dc: 00 DW_LNE_end_sequence
- 0x000000000000014b 62 14 1 0 0 end_sequence
-
-0x000001df: 00 DW_LNE_set_address (0x0000000000000176)
-0x000001e6: 03 DW_LNS_advance_line (76)
-0x000001e9: 05 DW_LNS_set_column (27)
-0x000001eb: 06 DW_LNS_negate_stmt
-0x000001ec: 0a DW_LNS_set_prologue_end
-0x000001ed: 00 DW_LNE_end_sequence
- 0x0000000000000176 76 27 1 0 0 end_sequence
-
-0x000001f0: 00 DW_LNE_set_address (0x000000000000017d)
-0x000001f7: 03 DW_LNS_advance_line (76)
-0x000001fa: 05 DW_LNS_set_column (25)
-0x000001fc: 06 DW_LNS_negate_stmt
-0x000001fd: 0a DW_LNS_set_prologue_end
-0x000001fe: 00 DW_LNE_end_sequence
- 0x000000000000017d 76 25 1 0 0 end_sequence
-
-0x00000201: 00 DW_LNE_set_address (0x0000000000000185)
-0x00000208: 03 DW_LNS_advance_line (75)
-0x0000020b: 05 DW_LNS_set_column (13)
-0x0000020d: 06 DW_LNS_negate_stmt
-0x0000020e: 0a DW_LNS_set_prologue_end
-0x0000020f: 00 DW_LNE_end_sequence
- 0x0000000000000185 75 13 1 0 0 end_sequence
-
-0x00000212: 00 DW_LNE_set_address (0x00000000000001a1)
-0x00000219: 03 DW_LNS_advance_line (79)
-0x0000021c: 05 DW_LNS_set_column (14)
-0x0000021e: 06 DW_LNS_negate_stmt
-0x0000021f: 0a DW_LNS_set_prologue_end
-0x00000220: 00 DW_LNE_end_sequence
- 0x00000000000001a1 79 14 1 0 0 end_sequence
-
-0x00000223: 00 DW_LNE_set_address (0x00000000000001c0)
-0x0000022a: 03 DW_LNS_advance_line (66)
-0x0000022d: 05 DW_LNS_set_column (16)
-0x0000022f: 0a DW_LNS_set_prologue_end
-0x00000230: 00 DW_LNE_end_sequence
- 0x00000000000001c0 66 16 1 0 0 is_stmt end_sequence
-
-0x00000233: 00 DW_LNE_set_address (0x00000000000001ce)
-0x0000023a: 03 DW_LNS_advance_line (37)
-0x0000023c: 05 DW_LNS_set_column (4)
-0x0000023e: 0a DW_LNS_set_prologue_end
-0x0000023f: 00 DW_LNE_end_sequence
- 0x00000000000001ce 37 4 1 0 0 is_stmt end_sequence
-0x00000242: 00 DW_LNE_set_address (0x00000000000001dc)
-0x00000249: 03 DW_LNS_advance_line (39)
-0x0000024b: 05 DW_LNS_set_column (4)
-0x0000024d: 06 DW_LNS_negate_stmt
-0x0000024e: 0a DW_LNS_set_prologue_end
-0x0000024f: 00 DW_LNE_end_sequence
- 0x00000000000001dc 39 4 1 0 0 end_sequence
-
-0x00000252: 00 DW_LNE_set_address (0x00000000000001e5)
-0x00000259: 03 DW_LNS_advance_line (39)
-0x0000025b: 05 DW_LNS_set_column (19)
-0x0000025d: 06 DW_LNS_negate_stmt
-0x0000025e: 0a DW_LNS_set_prologue_end
-0x0000025f: 00 DW_LNE_end_sequence
- 0x00000000000001e5 39 19 1 0 0 end_sequence
-
-0x00000262: 00 DW_LNE_set_address (0x00000000000001f2)
-0x00000269: 03 DW_LNS_advance_line (40)
-0x0000026b: 05 DW_LNS_set_column (17)
-0x0000026d: 06 DW_LNS_negate_stmt
-0x0000026e: 0a DW_LNS_set_prologue_end
-0x0000026f: 00 DW_LNE_end_sequence
- 0x00000000000001f2 40 17 1 0 0 end_sequence
-
-0x00000272: 00 DW_LNE_set_address (0x000000000000020e)
-0x00000279: 03 DW_LNS_advance_line (45)
-0x0000027b: 05 DW_LNS_set_column (10)
-0x0000027d: 06 DW_LNS_negate_stmt
-0x0000027e: 0a DW_LNS_set_prologue_end
-0x0000027f: 00 DW_LNE_end_sequence
- 0x000000000000020e 45 10 1 0 0 end_sequence
-
-0x00000282: 00 DW_LNE_set_address (0x0000000000000224)
-0x00000289: 03 DW_LNS_advance_line (46)
-0x0000028b: 05 DW_LNS_set_column (11)
-0x0000028d: 0a DW_LNS_set_prologue_end
-0x0000028e: 00 DW_LNE_end_sequence
- 0x0000000000000224 46 11 1 0 0 is_stmt end_sequence
-
-0x00000291: 00 DW_LNE_set_address (0x000000000000027d)
-0x00000298: 03 DW_LNS_advance_line (54)
-0x0000029a: 05 DW_LNS_set_column (24)
-0x0000029c: 06 DW_LNS_negate_stmt
-0x0000029d: 0a DW_LNS_set_prologue_end
-0x0000029e: 00 DW_LNE_end_sequence
- 0x000000000000027d 54 24 1 0 0 end_sequence
-
-0x000002a1: 00 DW_LNE_set_address (0x0000000000000293)
-0x000002a8: 03 DW_LNS_advance_line (52)
-0x000002aa: 05 DW_LNS_set_column (38)
-0x000002ac: 06 DW_LNS_negate_stmt
-0x000002ad: 0a DW_LNS_set_prologue_end
-0x000002ae: 00 DW_LNE_end_sequence
- 0x0000000000000293 52 38 1 0 0 end_sequence
-
-0x000002b1: 00 DW_LNE_set_address (0x00000000000002c3)
-0x000002b8: 03 DW_LNS_advance_line (62)
-0x000002ba: 05 DW_LNS_set_column (14)
-0x000002bc: 06 DW_LNS_negate_stmt
-0x000002bd: 0a DW_LNS_set_prologue_end
-0x000002be: 00 DW_LNE_end_sequence
- 0x00000000000002c3 62 14 1 0 0 end_sequence
-
-0x000002c1: 00 DW_LNE_set_address (0x00000000000002ee)
-0x000002c8: 03 DW_LNS_advance_line (76)
-0x000002cb: 05 DW_LNS_set_column (27)
-0x000002cd: 06 DW_LNS_negate_stmt
-0x000002ce: 0a DW_LNS_set_prologue_end
-0x000002cf: 00 DW_LNE_end_sequence
- 0x00000000000002ee 76 27 1 0 0 end_sequence
-
-0x000002d2: 00 DW_LNE_set_address (0x00000000000002f5)
-0x000002d9: 03 DW_LNS_advance_line (76)
-0x000002dc: 05 DW_LNS_set_column (25)
-0x000002de: 06 DW_LNS_negate_stmt
-0x000002df: 0a DW_LNS_set_prologue_end
-0x000002e0: 00 DW_LNE_end_sequence
- 0x00000000000002f5 76 25 1 0 0 end_sequence
+0x000000f1: 00 DW_LNE_set_address (0x0000000000000013)
+0x000000f8: 03 DW_LNS_advance_line (34)
+0x000000fa: 05 DW_LNS_set_column (27)
+0x000000fc: 0a DW_LNS_set_prologue_end
+0x000000fd: 01 DW_LNS_copy
+ 0x0000000000000013 34 27 1 0 0 is_stmt prologue_end
-0x000002e3: 00 DW_LNE_set_address (0x0000000000000319)
-0x000002ea: 03 DW_LNS_advance_line (79)
-0x000002ed: 05 DW_LNS_set_column (14)
-0x000002ef: 06 DW_LNS_negate_stmt
-0x000002f0: 0a DW_LNS_set_prologue_end
-0x000002f1: 00 DW_LNE_end_sequence
- 0x0000000000000319 79 14 1 0 0 end_sequence
-
-0x000002f4: 00 DW_LNE_set_address (0x0000000000000338)
-0x000002fb: 03 DW_LNS_advance_line (66)
-0x000002fe: 05 DW_LNS_set_column (16)
-0x00000300: 0a DW_LNS_set_prologue_end
-0x00000301: 00 DW_LNE_end_sequence
- 0x0000000000000338 66 16 1 0 0 is_stmt end_sequence
-
-0x00000304: 00 DW_LNE_set_address (0x000000000000035a)
-0x0000030b: 03 DW_LNS_advance_line (70)
-0x0000030e: 05 DW_LNS_set_column (13)
-0x00000310: 0a DW_LNS_set_prologue_end
-0x00000311: 00 DW_LNE_end_sequence
+
+0x000000fe: 00 DW_LNE_set_address (0x0000000000000014)
+0x00000105: 05 DW_LNS_set_column (18)
+0x00000107: 06 DW_LNS_negate_stmt
+0x00000108: 01 DW_LNS_copy
+ 0x0000000000000014 34 18 1 0 0
+
+
+0x00000109: 00 DW_LNE_set_address (0x0000000000000047)
+0x00000110: 03 DW_LNS_advance_line (37)
+0x00000112: 01 DW_LNS_copy
+ 0x0000000000000047 37 18 1 0 0
+
+
+0x00000113: 00 DW_LNE_set_address (0x000000000000004a)
+0x0000011a: 05 DW_LNS_set_column (4)
+0x0000011c: 01 DW_LNS_copy
+ 0x000000000000004a 37 4 1 0 0
+
+
+0x0000011d: 00 DW_LNE_set_address (0x0000000000000056)
+0x00000124: 03 DW_LNS_advance_line (39)
+0x00000126: 01 DW_LNS_copy
+ 0x0000000000000056 39 4 1 0 0
+
+
+0x00000127: 00 DW_LNE_set_address (0x000000000000005f)
+0x0000012e: 05 DW_LNS_set_column (19)
+0x00000130: 01 DW_LNS_copy
+ 0x000000000000005f 39 19 1 0 0
+
+
+0x00000131: 00 DW_LNE_set_address (0x000000000000006c)
+0x00000138: 03 DW_LNS_advance_line (40)
+0x0000013a: 05 DW_LNS_set_column (17)
+0x0000013c: 01 DW_LNS_copy
+ 0x000000000000006c 40 17 1 0 0
+
+
+0x0000013d: 00 DW_LNE_set_address (0x0000000000000078)
+0x00000144: 03 DW_LNS_advance_line (43)
+0x00000146: 05 DW_LNS_set_column (4)
+0x00000148: 06 DW_LNS_negate_stmt
+0x00000149: 01 DW_LNS_copy
+ 0x0000000000000078 43 4 1 0 0 is_stmt
+
+
+0x0000014a: 00 DW_LNE_set_address (0x000000000000008e)
+0x00000151: 03 DW_LNS_advance_line (45)
+0x00000153: 05 DW_LNS_set_column (10)
+0x00000155: 06 DW_LNS_negate_stmt
+0x00000156: 01 DW_LNS_copy
+ 0x000000000000008e 45 10 1 0 0
+
+
+0x00000157: 00 DW_LNE_set_address (0x00000000000000a4)
+0x0000015e: 03 DW_LNS_advance_line (46)
+0x00000160: 05 DW_LNS_set_column (11)
+0x00000162: 06 DW_LNS_negate_stmt
+0x00000163: 01 DW_LNS_copy
+ 0x00000000000000a4 46 11 1 0 0 is_stmt
+
+
+0x00000164: 00 DW_LNE_set_address (0x00000000000000c2)
+0x0000016b: 03 DW_LNS_advance_line (50)
+0x0000016d: 05 DW_LNS_set_column (14)
+0x0000016f: 01 DW_LNS_copy
+ 0x00000000000000c2 50 14 1 0 0 is_stmt
+
+
+0x00000170: 00 DW_LNE_set_address (0x0000000000000105)
+0x00000177: 03 DW_LNS_advance_line (54)
+0x00000179: 05 DW_LNS_set_column (24)
+0x0000017b: 06 DW_LNS_negate_stmt
+0x0000017c: 01 DW_LNS_copy
+ 0x0000000000000105 54 24 1 0 0
+
+
+0x0000017d: 00 DW_LNE_set_address (0x000000000000011b)
+0x00000184: 03 DW_LNS_advance_line (52)
+0x0000018a: 05 DW_LNS_set_column (38)
+0x0000018c: 01 DW_LNS_copy
+ 0x000000000000011b 52 38 1 0 0
+
+
+0x0000018d: 00 DW_LNE_set_address (0x000000000000011e)
+0x00000194: 05 DW_LNS_set_column (13)
+0x00000196: 01 DW_LNS_copy
+ 0x000000000000011e 52 13 1 0 0
+
+
+0x00000197: 00 DW_LNE_set_address (0x000000000000014b)
+0x0000019e: 03 DW_LNS_advance_line (62)
+0x000001a0: 05 DW_LNS_set_column (14)
+0x000001a2: 01 DW_LNS_copy
+ 0x000000000000014b 62 14 1 0 0
+
+
+0x000001a3: 00 DW_LNE_set_address (0x0000000000000176)
+0x000001aa: 03 DW_LNS_advance_line (76)
+0x000001ac: 05 DW_LNS_set_column (27)
+0x000001ae: 01 DW_LNS_copy
+ 0x0000000000000176 76 27 1 0 0
+
+
+0x000001af: 00 DW_LNE_set_address (0x000000000000017d)
+0x000001b6: 05 DW_LNS_set_column (25)
+0x000001b8: 01 DW_LNS_copy
+ 0x000000000000017d 76 25 1 0 0
+
+
+0x000001b9: 00 DW_LNE_set_address (0x0000000000000185)
+0x000001c0: 03 DW_LNS_advance_line (75)
+0x000001c6: 05 DW_LNS_set_column (13)
+0x000001c8: 01 DW_LNS_copy
+ 0x0000000000000185 75 13 1 0 0
+
+
+0x000001c9: 00 DW_LNE_set_address (0x00000000000001a1)
+0x000001d0: 03 DW_LNS_advance_line (79)
+0x000001d2: 05 DW_LNS_set_column (14)
+0x000001d4: 01 DW_LNS_copy
+ 0x00000000000001a1 79 14 1 0 0
+
+
+0x000001d5: 00 DW_LNE_set_address (0x00000000000001c0)
+0x000001dc: 03 DW_LNS_advance_line (66)
+0x000001e2: 05 DW_LNS_set_column (16)
+0x000001e4: 06 DW_LNS_negate_stmt
+0x000001e5: 01 DW_LNS_copy
+ 0x00000000000001c0 66 16 1 0 0 is_stmt
+
+
+0x000001e6: 00 DW_LNE_set_address (0x00000000000001ce)
+0x000001ed: 03 DW_LNS_advance_line (37)
+0x000001f3: 05 DW_LNS_set_column (4)
+0x000001f5: 01 DW_LNS_copy
+ 0x00000000000001ce 37 4 1 0 0 is_stmt
+
+
+0x000001f6: 00 DW_LNE_set_address (0x00000000000001dc)
+0x000001fd: 03 DW_LNS_advance_line (39)
+0x000001ff: 06 DW_LNS_negate_stmt
+0x00000200: 01 DW_LNS_copy
+ 0x00000000000001dc 39 4 1 0 0
+
+
+0x00000201: 00 DW_LNE_set_address (0x00000000000001e5)
+0x00000208: 05 DW_LNS_set_column (19)
+0x0000020a: 01 DW_LNS_copy
+ 0x00000000000001e5 39 19 1 0 0
+
+
+0x0000020b: 00 DW_LNE_set_address (0x00000000000001f2)
+0x00000212: 03 DW_LNS_advance_line (40)
+0x00000214: 05 DW_LNS_set_column (17)
+0x00000216: 01 DW_LNS_copy
+ 0x00000000000001f2 40 17 1 0 0
+
+
+0x00000217: 00 DW_LNE_set_address (0x000000000000020e)
+0x0000021e: 03 DW_LNS_advance_line (45)
+0x00000220: 05 DW_LNS_set_column (10)
+0x00000222: 01 DW_LNS_copy
+ 0x000000000000020e 45 10 1 0 0
+
+
+0x00000223: 00 DW_LNE_set_address (0x0000000000000224)
+0x0000022a: 03 DW_LNS_advance_line (46)
+0x0000022c: 05 DW_LNS_set_column (11)
+0x0000022e: 06 DW_LNS_negate_stmt
+0x0000022f: 01 DW_LNS_copy
+ 0x0000000000000224 46 11 1 0 0 is_stmt
+
+
+0x00000230: 00 DW_LNE_set_address (0x000000000000027d)
+0x00000237: 03 DW_LNS_advance_line (54)
+0x00000239: 05 DW_LNS_set_column (24)
+0x0000023b: 06 DW_LNS_negate_stmt
+0x0000023c: 01 DW_LNS_copy
+ 0x000000000000027d 54 24 1 0 0
+
+
+0x0000023d: 00 DW_LNE_set_address (0x0000000000000293)
+0x00000244: 03 DW_LNS_advance_line (52)
+0x0000024a: 05 DW_LNS_set_column (38)
+0x0000024c: 01 DW_LNS_copy
+ 0x0000000000000293 52 38 1 0 0
+
+
+0x0000024d: 00 DW_LNE_set_address (0x00000000000002c3)
+0x00000254: 03 DW_LNS_advance_line (62)
+0x00000256: 05 DW_LNS_set_column (14)
+0x00000258: 01 DW_LNS_copy
+ 0x00000000000002c3 62 14 1 0 0
+
+
+0x00000259: 00 DW_LNE_set_address (0x00000000000002ee)
+0x00000260: 03 DW_LNS_advance_line (76)
+0x00000262: 05 DW_LNS_set_column (27)
+0x00000264: 01 DW_LNS_copy
+ 0x00000000000002ee 76 27 1 0 0
+
+
+0x00000265: 00 DW_LNE_set_address (0x00000000000002f5)
+0x0000026c: 05 DW_LNS_set_column (25)
+0x0000026e: 01 DW_LNS_copy
+ 0x00000000000002f5 76 25 1 0 0
+
+
+0x0000026f: 00 DW_LNE_set_address (0x0000000000000319)
+0x00000276: 03 DW_LNS_advance_line (79)
+0x00000278: 05 DW_LNS_set_column (14)
+0x0000027a: 01 DW_LNS_copy
+ 0x0000000000000319 79 14 1 0 0
+
+
+0x0000027b: 00 DW_LNE_set_address (0x0000000000000338)
+0x00000282: 03 DW_LNS_advance_line (66)
+0x00000288: 05 DW_LNS_set_column (16)
+0x0000028a: 06 DW_LNS_negate_stmt
+0x0000028b: 01 DW_LNS_copy
+ 0x0000000000000338 66 16 1 0 0 is_stmt
+
+
+0x0000028c: 00 DW_LNE_set_address (0x000000000000035a)
+0x00000293: 03 DW_LNS_advance_line (70)
+0x00000295: 05 DW_LNS_set_column (13)
+0x00000297: 00 DW_LNE_end_sequence
0x000000000000035a 70 13 1 0 0 is_stmt end_sequence
-0x00000314: 00 DW_LNE_set_address (0x000000000000035c)
-0x0000031b: 03 DW_LNS_advance_line (152)
-0x0000031e: 00 DW_LNE_end_sequence
- 0x000000000000035c 152 0 1 0 0 is_stmt end_sequence
-
-0x00000321: 00 DW_LNE_set_address (0x0000000000000378)
-0x00000328: 03 DW_LNS_advance_line (153)
-0x0000032b: 05 DW_LNS_set_column (23)
-0x0000032d: 06 DW_LNS_negate_stmt
-0x0000032e: 0a DW_LNS_set_prologue_end
-0x0000032f: 00 DW_LNE_end_sequence
- 0x0000000000000378 153 23 1 0 0 end_sequence
-
-0x00000332: 00 DW_LNE_set_address (0x000000000000037e)
-0x00000339: 03 DW_LNS_advance_line (155)
-0x0000033c: 05 DW_LNS_set_column (10)
-0x0000033e: 0a DW_LNS_set_prologue_end
-0x0000033f: 00 DW_LNE_end_sequence
- 0x000000000000037e 155 10 1 0 0 is_stmt end_sequence
-
-0x00000342: 00 DW_LNE_set_address (0x000000000000037f)
-0x00000349: 03 DW_LNS_advance_line (155)
-0x0000034c: 05 DW_LNS_set_column (8)
-0x0000034e: 06 DW_LNS_negate_stmt
-0x0000034f: 0a DW_LNS_set_prologue_end
-0x00000350: 00 DW_LNE_end_sequence
- 0x000000000000037f 155 8 1 0 0 end_sequence
-
-0x00000353: 00 DW_LNE_set_address (0x0000000000000382)
-0x0000035a: 03 DW_LNS_advance_line (156)
-0x0000035d: 05 DW_LNS_set_column (7)
-0x0000035f: 0a DW_LNS_set_prologue_end
-0x00000360: 00 DW_LNE_end_sequence
- 0x0000000000000382 156 7 1 0 0 is_stmt end_sequence
-
-0x00000363: 00 DW_LNE_set_address (0x00000000000003a9)
-0x0000036a: 03 DW_LNS_advance_line (95)
-0x0000036d: 05 DW_LNS_set_column (29)
-0x0000036f: 0a DW_LNS_set_prologue_end
-0x00000370: 00 DW_LNE_end_sequence
- 0x00000000000003a9 95 29 1 0 0 is_stmt end_sequence
-
-0x00000373: 00 DW_LNE_set_address (0x00000000000003ab)
-0x0000037a: 03 DW_LNS_advance_line (98)
-0x0000037d: 05 DW_LNS_set_column (19)
-0x0000037f: 0a DW_LNS_set_prologue_end
-0x00000380: 00 DW_LNE_end_sequence
- 0x00000000000003ab 98 19 1 0 0 is_stmt end_sequence
-
-0x00000383: 00 DW_LNE_set_address (0x00000000000003cb)
-0x0000038a: 03 DW_LNS_advance_line (94)
-0x0000038d: 05 DW_LNS_set_column (18)
-0x0000038f: 06 DW_LNS_negate_stmt
-0x00000390: 0a DW_LNS_set_prologue_end
-0x00000391: 00 DW_LNE_end_sequence
- 0x00000000000003cb 94 18 1 0 0 end_sequence
-
-0x00000394: 00 DW_LNE_set_address (0x00000000000003ce)
-0x0000039b: 03 DW_LNS_advance_line (94)
-0x0000039e: 05 DW_LNS_set_column (4)
-0x000003a0: 06 DW_LNS_negate_stmt
-0x000003a1: 0a DW_LNS_set_prologue_end
-0x000003a2: 00 DW_LNE_end_sequence
- 0x00000000000003ce 94 4 1 0 0 end_sequence
-
-0x000003a5: 00 DW_LNE_set_address (0x00000000000003db)
-0x000003ac: 03 DW_LNS_advance_line (102)
-0x000003af: 05 DW_LNS_set_column (18)
-0x000003b1: 06 DW_LNS_negate_stmt
-0x000003b2: 0a DW_LNS_set_prologue_end
-0x000003b3: 00 DW_LNE_end_sequence
- 0x00000000000003db 102 18 1 0 0 end_sequence
-
-0x000003b6: 00 DW_LNE_set_address (0x000000000000040a)
-0x000003bd: 03 DW_LNS_advance_line (105)
-0x000003c0: 05 DW_LNS_set_column (18)
+0x0000029a: 00 DW_LNE_set_address (0x000000000000035c)
+0x000002a1: 03 DW_LNS_advance_line (152)
+0x000002a4: 01 DW_LNS_copy
+ 0x000000000000035c 152 0 1 0 0 is_stmt
+
+
+0x000002a5: 00 DW_LNE_set_address (0x0000000000000378)
+0x000002ac: 03 DW_LNS_advance_line (153)
+0x000002ae: 05 DW_LNS_set_column (23)
+0x000002b0: 06 DW_LNS_negate_stmt
+0x000002b1: 0a DW_LNS_set_prologue_end
+0x000002b2: 01 DW_LNS_copy
+ 0x0000000000000378 153 23 1 0 0 prologue_end
+
+
+0x000002b3: 00 DW_LNE_set_address (0x000000000000037e)
+0x000002ba: 03 DW_LNS_advance_line (155)
+0x000002bc: 05 DW_LNS_set_column (10)
+0x000002be: 06 DW_LNS_negate_stmt
+0x000002bf: 01 DW_LNS_copy
+ 0x000000000000037e 155 10 1 0 0 is_stmt
+
+
+0x000002c0: 00 DW_LNE_set_address (0x000000000000037f)
+0x000002c7: 05 DW_LNS_set_column (8)
+0x000002c9: 06 DW_LNS_negate_stmt
+0x000002ca: 01 DW_LNS_copy
+ 0x000000000000037f 155 8 1 0 0
+
+
+0x000002cb: 00 DW_LNE_set_address (0x0000000000000382)
+0x000002d2: 03 DW_LNS_advance_line (156)
+0x000002d4: 05 DW_LNS_set_column (7)
+0x000002d6: 06 DW_LNS_negate_stmt
+0x000002d7: 01 DW_LNS_copy
+ 0x0000000000000382 156 7 1 0 0 is_stmt
+
+
+0x000002d8: 00 DW_LNE_set_address (0x00000000000003a9)
+0x000002df: 03 DW_LNS_advance_line (95)
+0x000002e5: 05 DW_LNS_set_column (29)
+0x000002e7: 01 DW_LNS_copy
+ 0x00000000000003a9 95 29 1 0 0 is_stmt
+
+
+0x000002e8: 00 DW_LNE_set_address (0x00000000000003ab)
+0x000002ef: 03 DW_LNS_advance_line (98)
+0x000002f1: 05 DW_LNS_set_column (19)
+0x000002f3: 01 DW_LNS_copy
+ 0x00000000000003ab 98 19 1 0 0 is_stmt
+
+
+0x000002f4: 00 DW_LNE_set_address (0x00000000000003cb)
+0x000002fb: 03 DW_LNS_advance_line (94)
+0x00000301: 05 DW_LNS_set_column (18)
+0x00000303: 06 DW_LNS_negate_stmt
+0x00000304: 01 DW_LNS_copy
+ 0x00000000000003cb 94 18 1 0 0
+
+
+0x00000305: 00 DW_LNE_set_address (0x00000000000003ce)
+0x0000030c: 05 DW_LNS_set_column (4)
+0x0000030e: 01 DW_LNS_copy
+ 0x00000000000003ce 94 4 1 0 0
+
+
+0x0000030f: 00 DW_LNE_set_address (0x00000000000003db)
+0x00000316: 03 DW_LNS_advance_line (102)
+0x00000318: 05 DW_LNS_set_column (18)
+0x0000031a: 01 DW_LNS_copy
+ 0x00000000000003db 102 18 1 0 0
+
+
+0x0000031b: 00 DW_LNE_set_address (0x000000000000040a)
+0x00000322: 03 DW_LNS_advance_line (105)
+0x00000324: 01 DW_LNS_copy
+ 0x000000000000040a 105 18 1 0 0
+
+
+0x00000325: 00 DW_LNE_set_address (0x000000000000043d)
+0x0000032c: 03 DW_LNS_advance_line (112)
+0x0000032e: 05 DW_LNS_set_column (35)
+0x00000330: 01 DW_LNS_copy
+ 0x000000000000043d 112 35 1 0 0
+
+
+0x00000331: 00 DW_LNE_set_address (0x000000000000043e)
+0x00000338: 05 DW_LNS_set_column (13)
+0x0000033a: 01 DW_LNS_copy
+ 0x000000000000043e 112 13 1 0 0
+
+
+0x0000033b: 00 DW_LNE_set_address (0x0000000000000453)
+0x00000342: 03 DW_LNS_advance_line (111)
+0x00000348: 05 DW_LNS_set_column (24)
+0x0000034a: 01 DW_LNS_copy
+ 0x0000000000000453 111 24 1 0 0
+
+
+0x0000034b: 00 DW_LNE_set_address (0x0000000000000456)
+0x00000352: 05 DW_LNS_set_column (10)
+0x00000354: 01 DW_LNS_copy
+ 0x0000000000000456 111 10 1 0 0
+
+
+0x00000355: 00 DW_LNE_set_address (0x000000000000045b)
+0x0000035c: 03 DW_LNS_advance_line (113)
+0x0000035e: 06 DW_LNS_negate_stmt
+0x0000035f: 01 DW_LNS_copy
+ 0x000000000000045b 113 10 1 0 0 is_stmt
+
+
+0x00000360: 00 DW_LNE_set_address (0x0000000000000470)
+0x00000367: 03 DW_LNS_advance_line (119)
+0x00000369: 06 DW_LNS_negate_stmt
+0x0000036a: 01 DW_LNS_copy
+ 0x0000000000000470 119 10 1 0 0
+
+
+0x0000036b: 00 DW_LNE_set_address (0x00000000000004bb)
+0x00000372: 03 DW_LNS_advance_line (127)
+0x00000374: 05 DW_LNS_set_column (27)
+0x00000376: 01 DW_LNS_copy
+ 0x00000000000004bb 127 27 1 0 0
+
+
+0x00000377: 00 DW_LNE_set_address (0x00000000000004c2)
+0x0000037e: 05 DW_LNS_set_column (25)
+0x00000380: 01 DW_LNS_copy
+ 0x00000000000004c2 127 25 1 0 0
+
+
+0x00000381: 00 DW_LNE_set_address (0x00000000000004ca)
+0x00000388: 03 DW_LNS_advance_line (126)
+0x0000038e: 05 DW_LNS_set_column (13)
+0x00000390: 01 DW_LNS_copy
+ 0x00000000000004ca 126 13 1 0 0
+
+
+0x00000391: 00 DW_LNE_set_address (0x00000000000004e6)
+0x00000398: 03 DW_LNS_advance_line (130)
+0x0000039a: 05 DW_LNS_set_column (14)
+0x0000039c: 01 DW_LNS_copy
+ 0x00000000000004e6 130 14 1 0 0
+
+
+0x0000039d: 00 DW_LNE_set_address (0x0000000000000503)
+0x000003a4: 03 DW_LNS_advance_line (122)
+0x000003aa: 05 DW_LNS_set_column (16)
+0x000003ac: 06 DW_LNS_negate_stmt
+0x000003ad: 01 DW_LNS_copy
+ 0x0000000000000503 122 16 1 0 0 is_stmt
+
+
+0x000003ae: 00 DW_LNE_set_address (0x0000000000000508)
+0x000003b5: 05 DW_LNS_set_column (14)
+0x000003b7: 06 DW_LNS_negate_stmt
+0x000003b8: 01 DW_LNS_copy
+ 0x0000000000000508 122 14 1 0 0
+
+
+0x000003b9: 00 DW_LNE_set_address (0x000000000000050d)
+0x000003c0: 03 DW_LNS_advance_line (130)
0x000003c2: 06 DW_LNS_negate_stmt
-0x000003c3: 0a DW_LNS_set_prologue_end
-0x000003c4: 00 DW_LNE_end_sequence
- 0x000000000000040a 105 18 1 0 0 end_sequence
-
-0x000003c7: 00 DW_LNE_set_address (0x000000000000043d)
-0x000003ce: 03 DW_LNS_advance_line (112)
-0x000003d1: 05 DW_LNS_set_column (35)
-0x000003d3: 06 DW_LNS_negate_stmt
-0x000003d4: 0a DW_LNS_set_prologue_end
-0x000003d5: 00 DW_LNE_end_sequence
- 0x000000000000043d 112 35 1 0 0 end_sequence
-
-0x000003d8: 00 DW_LNE_set_address (0x000000000000043e)
-0x000003df: 03 DW_LNS_advance_line (112)
-0x000003e2: 05 DW_LNS_set_column (13)
-0x000003e4: 06 DW_LNS_negate_stmt
-0x000003e5: 0a DW_LNS_set_prologue_end
-0x000003e6: 00 DW_LNE_end_sequence
- 0x000000000000043e 112 13 1 0 0 end_sequence
-
-0x000003e9: 00 DW_LNE_set_address (0x0000000000000453)
-0x000003f0: 03 DW_LNS_advance_line (111)
-0x000003f3: 05 DW_LNS_set_column (24)
-0x000003f5: 06 DW_LNS_negate_stmt
-0x000003f6: 0a DW_LNS_set_prologue_end
-0x000003f7: 00 DW_LNE_end_sequence
- 0x0000000000000453 111 24 1 0 0 end_sequence
-
-0x000003fa: 00 DW_LNE_set_address (0x0000000000000456)
-0x00000401: 03 DW_LNS_advance_line (111)
-0x00000404: 05 DW_LNS_set_column (10)
-0x00000406: 06 DW_LNS_negate_stmt
-0x00000407: 0a DW_LNS_set_prologue_end
-0x00000408: 00 DW_LNE_end_sequence
- 0x0000000000000456 111 10 1 0 0 end_sequence
-
-0x0000040b: 00 DW_LNE_set_address (0x000000000000045b)
-0x00000412: 03 DW_LNS_advance_line (113)
-0x00000415: 05 DW_LNS_set_column (10)
-0x00000417: 0a DW_LNS_set_prologue_end
-0x00000418: 00 DW_LNE_end_sequence
- 0x000000000000045b 113 10 1 0 0 is_stmt end_sequence
-
-0x0000041b: 00 DW_LNE_set_address (0x0000000000000470)
-0x00000422: 03 DW_LNS_advance_line (119)
-0x00000425: 05 DW_LNS_set_column (10)
-0x00000427: 06 DW_LNS_negate_stmt
-0x00000428: 0a DW_LNS_set_prologue_end
-0x00000429: 00 DW_LNE_end_sequence
- 0x0000000000000470 119 10 1 0 0 end_sequence
-
-0x0000042c: 00 DW_LNE_set_address (0x00000000000004bb)
-0x00000433: 03 DW_LNS_advance_line (127)
-0x00000436: 05 DW_LNS_set_column (27)
-0x00000438: 06 DW_LNS_negate_stmt
-0x00000439: 0a DW_LNS_set_prologue_end
-0x0000043a: 00 DW_LNE_end_sequence
- 0x00000000000004bb 127 27 1 0 0 end_sequence
-
-0x0000043d: 00 DW_LNE_set_address (0x00000000000004c2)
-0x00000444: 03 DW_LNS_advance_line (127)
-0x00000447: 05 DW_LNS_set_column (25)
-0x00000449: 06 DW_LNS_negate_stmt
-0x0000044a: 0a DW_LNS_set_prologue_end
-0x0000044b: 00 DW_LNE_end_sequence
- 0x00000000000004c2 127 25 1 0 0 end_sequence
-
-0x0000044e: 00 DW_LNE_set_address (0x00000000000004ca)
-0x00000455: 03 DW_LNS_advance_line (126)
-0x00000458: 05 DW_LNS_set_column (13)
-0x0000045a: 06 DW_LNS_negate_stmt
-0x0000045b: 0a DW_LNS_set_prologue_end
-0x0000045c: 00 DW_LNE_end_sequence
- 0x00000000000004ca 126 13 1 0 0 end_sequence
-
-0x0000045f: 00 DW_LNE_set_address (0x00000000000004e6)
-0x00000466: 03 DW_LNS_advance_line (130)
-0x00000469: 05 DW_LNS_set_column (14)
-0x0000046b: 06 DW_LNS_negate_stmt
-0x0000046c: 0a DW_LNS_set_prologue_end
-0x0000046d: 00 DW_LNE_end_sequence
- 0x00000000000004e6 130 14 1 0 0 end_sequence
-
-0x00000470: 00 DW_LNE_set_address (0x0000000000000503)
-0x00000477: 03 DW_LNS_advance_line (122)
-0x0000047a: 05 DW_LNS_set_column (16)
-0x0000047c: 0a DW_LNS_set_prologue_end
-0x0000047d: 00 DW_LNE_end_sequence
- 0x0000000000000503 122 16 1 0 0 is_stmt end_sequence
-
-0x00000480: 00 DW_LNE_set_address (0x0000000000000508)
-0x00000487: 03 DW_LNS_advance_line (122)
-0x0000048a: 05 DW_LNS_set_column (14)
-0x0000048c: 06 DW_LNS_negate_stmt
-0x0000048d: 0a DW_LNS_set_prologue_end
-0x0000048e: 00 DW_LNE_end_sequence
- 0x0000000000000508 122 14 1 0 0 end_sequence
-
-0x00000491: 00 DW_LNE_set_address (0x000000000000050d)
-0x00000498: 03 DW_LNS_advance_line (130)
-0x0000049b: 05 DW_LNS_set_column (14)
-0x0000049d: 0a DW_LNS_set_prologue_end
-0x0000049e: 00 DW_LNE_end_sequence
- 0x000000000000050d 130 14 1 0 0 is_stmt end_sequence
-
-0x000004a1: 00 DW_LNE_set_address (0x000000000000051a)
-0x000004a8: 03 DW_LNS_advance_line (113)
-0x000004ab: 05 DW_LNS_set_column (10)
-0x000004ad: 0a DW_LNS_set_prologue_end
-0x000004ae: 00 DW_LNE_end_sequence
- 0x000000000000051a 113 10 1 0 0 is_stmt end_sequence
-
-0x000004b1: 00 DW_LNE_set_address (0x000000000000052f)
-0x000004b8: 03 DW_LNS_advance_line (119)
-0x000004bb: 05 DW_LNS_set_column (10)
-0x000004bd: 06 DW_LNS_negate_stmt
-0x000004be: 0a DW_LNS_set_prologue_end
-0x000004bf: 00 DW_LNE_end_sequence
- 0x000000000000052f 119 10 1 0 0 end_sequence
-
-0x000004c2: 00 DW_LNE_set_address (0x000000000000054a)
-0x000004c9: 03 DW_LNS_advance_line (122)
-0x000004cc: 05 DW_LNS_set_column (14)
-0x000004ce: 06 DW_LNS_negate_stmt
-0x000004cf: 0a DW_LNS_set_prologue_end
-0x000004d0: 00 DW_LNE_end_sequence
- 0x000000000000054a 122 14 1 0 0 end_sequence
-
-0x000004d3: 00 DW_LNE_set_address (0x0000000000000553)
-0x000004da: 03 DW_LNS_advance_line (125)
-0x000004dd: 05 DW_LNS_set_column (22)
-0x000004df: 0a DW_LNS_set_prologue_end
-0x000004e0: 00 DW_LNE_end_sequence
- 0x0000000000000553 125 22 1 0 0 is_stmt end_sequence
-
-0x000004e3: 00 DW_LNE_set_address (0x000000000000057a)
-0x000004ea: 03 DW_LNS_advance_line (127)
-0x000004ed: 05 DW_LNS_set_column (27)
-0x000004ef: 06 DW_LNS_negate_stmt
-0x000004f0: 0a DW_LNS_set_prologue_end
-0x000004f1: 00 DW_LNE_end_sequence
- 0x000000000000057a 127 27 1 0 0 end_sequence
-
-0x000004f4: 00 DW_LNE_set_address (0x0000000000000581)
-0x000004fb: 03 DW_LNS_advance_line (127)
-0x000004fe: 05 DW_LNS_set_column (25)
-0x00000500: 06 DW_LNS_negate_stmt
-0x00000501: 0a DW_LNS_set_prologue_end
-0x00000502: 00 DW_LNE_end_sequence
- 0x0000000000000581 127 25 1 0 0 end_sequence
-
-0x00000505: 00 DW_LNE_set_address (0x0000000000000589)
-0x0000050c: 03 DW_LNS_advance_line (126)
-0x0000050f: 05 DW_LNS_set_column (13)
-0x00000511: 06 DW_LNS_negate_stmt
-0x00000512: 0a DW_LNS_set_prologue_end
-0x00000513: 00 DW_LNE_end_sequence
- 0x0000000000000589 126 13 1 0 0 end_sequence
-
-0x00000516: 00 DW_LNE_set_address (0x00000000000005a5)
-0x0000051d: 03 DW_LNS_advance_line (130)
-0x00000520: 05 DW_LNS_set_column (14)
-0x00000522: 06 DW_LNS_negate_stmt
-0x00000523: 0a DW_LNS_set_prologue_end
-0x00000524: 00 DW_LNE_end_sequence
- 0x00000000000005a5 130 14 1 0 0 end_sequence
-
-0x00000527: 00 DW_LNE_set_address (0x00000000000005c2)
-0x0000052e: 03 DW_LNS_advance_line (122)
-0x00000531: 05 DW_LNS_set_column (16)
-0x00000533: 0a DW_LNS_set_prologue_end
-0x00000534: 00 DW_LNE_end_sequence
- 0x00000000000005c2 122 16 1 0 0 is_stmt end_sequence
-
-0x00000537: 00 DW_LNE_set_address (0x00000000000005c7)
-0x0000053e: 03 DW_LNS_advance_line (122)
-0x00000541: 05 DW_LNS_set_column (14)
-0x00000543: 06 DW_LNS_negate_stmt
-0x00000544: 0a DW_LNS_set_prologue_end
-0x00000545: 00 DW_LNE_end_sequence
- 0x00000000000005c7 122 14 1 0 0 end_sequence
-
-0x00000548: 00 DW_LNE_set_address (0x00000000000005cc)
-0x0000054f: 03 DW_LNS_advance_line (130)
-0x00000552: 05 DW_LNS_set_column (14)
-0x00000554: 0a DW_LNS_set_prologue_end
-0x00000555: 00 DW_LNE_end_sequence
- 0x00000000000005cc 130 14 1 0 0 is_stmt end_sequence
-
-0x00000558: 00 DW_LNE_set_address (0x00000000000005e7)
-0x0000055f: 03 DW_LNS_advance_line (142)
-0x00000562: 05 DW_LNS_set_column (20)
-0x00000564: 0a DW_LNS_set_prologue_end
-0x00000565: 00 DW_LNE_end_sequence
- 0x00000000000005e7 142 20 1 0 0 is_stmt end_sequence
-
-0x00000568: 00 DW_LNE_set_address (0x0000000000000601)
-0x0000056f: 03 DW_LNS_advance_line (143)
-0x00000572: 05 DW_LNS_set_column (11)
-0x00000574: 06 DW_LNS_negate_stmt
-0x00000575: 0a DW_LNS_set_prologue_end
-0x00000576: 00 DW_LNE_end_sequence
- 0x0000000000000601 143 11 1 0 0 end_sequence
-
-0x00000579: 00 DW_LNE_set_address (0x000000000000062b)
-0x00000580: 03 DW_LNS_advance_line (161)
-0x00000583: 05 DW_LNS_set_column (1)
-0x00000585: 0a DW_LNS_set_prologue_end
-0x00000586: 00 DW_LNE_end_sequence
+0x000003c3: 01 DW_LNS_copy
+ 0x000000000000050d 130 14 1 0 0 is_stmt
+
+
+0x000003c4: 00 DW_LNE_set_address (0x000000000000051a)
+0x000003cb: 03 DW_LNS_advance_line (113)
+0x000003d1: 05 DW_LNS_set_column (10)
+0x000003d3: 01 DW_LNS_copy
+ 0x000000000000051a 113 10 1 0 0 is_stmt
+
+
+0x000003d4: 00 DW_LNE_set_address (0x000000000000052f)
+0x000003db: 03 DW_LNS_advance_line (119)
+0x000003dd: 06 DW_LNS_negate_stmt
+0x000003de: 01 DW_LNS_copy
+ 0x000000000000052f 119 10 1 0 0
+
+
+0x000003df: 00 DW_LNE_set_address (0x000000000000054a)
+0x000003e6: 03 DW_LNS_advance_line (122)
+0x000003e8: 05 DW_LNS_set_column (14)
+0x000003ea: 01 DW_LNS_copy
+ 0x000000000000054a 122 14 1 0 0
+
+
+0x000003eb: 00 DW_LNE_set_address (0x0000000000000553)
+0x000003f2: 03 DW_LNS_advance_line (125)
+0x000003f4: 05 DW_LNS_set_column (22)
+0x000003f6: 06 DW_LNS_negate_stmt
+0x000003f7: 01 DW_LNS_copy
+ 0x0000000000000553 125 22 1 0 0 is_stmt
+
+
+0x000003f8: 00 DW_LNE_set_address (0x000000000000057a)
+0x000003ff: 03 DW_LNS_advance_line (127)
+0x00000401: 05 DW_LNS_set_column (27)
+0x00000403: 06 DW_LNS_negate_stmt
+0x00000404: 01 DW_LNS_copy
+ 0x000000000000057a 127 27 1 0 0
+
+
+0x00000405: 00 DW_LNE_set_address (0x0000000000000581)
+0x0000040c: 05 DW_LNS_set_column (25)
+0x0000040e: 01 DW_LNS_copy
+ 0x0000000000000581 127 25 1 0 0
+
+
+0x0000040f: 00 DW_LNE_set_address (0x0000000000000589)
+0x00000416: 03 DW_LNS_advance_line (126)
+0x0000041c: 05 DW_LNS_set_column (13)
+0x0000041e: 01 DW_LNS_copy
+ 0x0000000000000589 126 13 1 0 0
+
+
+0x0000041f: 00 DW_LNE_set_address (0x00000000000005a5)
+0x00000426: 03 DW_LNS_advance_line (130)
+0x00000428: 05 DW_LNS_set_column (14)
+0x0000042a: 01 DW_LNS_copy
+ 0x00000000000005a5 130 14 1 0 0
+
+
+0x0000042b: 00 DW_LNE_set_address (0x00000000000005c2)
+0x00000432: 03 DW_LNS_advance_line (122)
+0x00000438: 05 DW_LNS_set_column (16)
+0x0000043a: 06 DW_LNS_negate_stmt
+0x0000043b: 01 DW_LNS_copy
+ 0x00000000000005c2 122 16 1 0 0 is_stmt
+
+
+0x0000043c: 00 DW_LNE_set_address (0x00000000000005c7)
+0x00000443: 05 DW_LNS_set_column (14)
+0x00000445: 06 DW_LNS_negate_stmt
+0x00000446: 01 DW_LNS_copy
+ 0x00000000000005c7 122 14 1 0 0
+
+
+0x00000447: 00 DW_LNE_set_address (0x00000000000005cc)
+0x0000044e: 03 DW_LNS_advance_line (130)
+0x00000450: 06 DW_LNS_negate_stmt
+0x00000451: 01 DW_LNS_copy
+ 0x00000000000005cc 130 14 1 0 0 is_stmt
+
+
+0x00000452: 00 DW_LNE_set_address (0x00000000000005e7)
+0x00000459: 03 DW_LNS_advance_line (142)
+0x0000045b: 05 DW_LNS_set_column (20)
+0x0000045d: 01 DW_LNS_copy
+ 0x00000000000005e7 142 20 1 0 0 is_stmt
+
+
+0x0000045e: 00 DW_LNE_set_address (0x0000000000000601)
+0x00000465: 03 DW_LNS_advance_line (143)
+0x00000467: 05 DW_LNS_set_column (11)
+0x00000469: 06 DW_LNS_negate_stmt
+0x0000046a: 01 DW_LNS_copy
+ 0x0000000000000601 143 11 1 0 0
+
+
+0x0000046b: 00 DW_LNE_set_address (0x000000000000062b)
+0x00000472: 03 DW_LNS_advance_line (161)
+0x00000474: 05 DW_LNS_set_column (1)
+0x00000476: 06 DW_LNS_negate_stmt
+0x00000477: 00 DW_LNE_end_sequence
0x000000000000062b 161 1 1 0 0 is_stmt end_sequence
@@ -5915,7 +5872,7 @@ file_names[ 4]:
;; custom section ".debug_loc", size 1073
;; custom section ".debug_ranges", size 88
;; custom section ".debug_abbrev", size 333
- ;; custom section ".debug_line", size 1417
+ ;; custom section ".debug_line", size 1146
;; custom section ".debug_str", size 434
;; custom section "producers", size 135
)
diff --git a/test/passes/fib2.bin.txt b/test/passes/fib2.bin.txt
index 0c5ce6b96..4341eee8c 100644
--- a/test/passes/fib2.bin.txt
+++ b/test/passes/fib2.bin.txt
@@ -305,7 +305,7 @@ Contains section .debug_info (168 bytes)
Contains section .debug_loc (143 bytes)
Contains section .debug_ranges (24 bytes)
Contains section .debug_abbrev (131 bytes)
-Contains section .debug_line (232 bytes)
+Contains section .debug_line (187 bytes)
Contains section .debug_str (180 bytes)
.debug_abbrev contents:
@@ -484,7 +484,7 @@ Abbrev table for offset: 0x00000000
.debug_line contents:
debug_line[0x00000000]
Line table prologue:
- total_length: 0x000000e4
+ total_length: 0x000000b7
version: 4
prologue_length: 0x0000001e
min_inst_length: 1
@@ -511,94 +511,87 @@ file_names[ 1]:
mod_time: 0x00000000
length: 0x00000000
0x00000028: 00 DW_LNE_set_address (0x0000000000000005)
-0x0000002f: 00 DW_LNE_end_sequence
- 0x0000000000000005 1 0 1 0 0 is_stmt end_sequence
-
-0x00000032: 00 DW_LNE_set_address (0x000000000000000e)
-0x00000039: 03 DW_LNS_advance_line (3)
-0x0000003b: 05 DW_LNS_set_column (17)
-0x0000003d: 0a DW_LNS_set_prologue_end
-0x0000003e: 00 DW_LNE_end_sequence
- 0x000000000000000e 3 17 1 0 0 is_stmt end_sequence
-
-0x00000041: 00 DW_LNE_set_address (0x0000000000000013)
-0x00000048: 03 DW_LNS_advance_line (3)
-0x0000004a: 05 DW_LNS_set_column (3)
-0x0000004c: 06 DW_LNS_negate_stmt
-0x0000004d: 0a DW_LNS_set_prologue_end
-0x0000004e: 00 DW_LNE_end_sequence
- 0x0000000000000013 3 3 1 0 0 end_sequence
-
-0x00000051: 00 DW_LNE_set_address (0x0000000000000021)
-0x00000058: 03 DW_LNS_advance_line (6)
-0x0000005a: 05 DW_LNS_set_column (7)
-0x0000005c: 0a DW_LNS_set_prologue_end
-0x0000005d: 00 DW_LNE_end_sequence
- 0x0000000000000021 6 7 1 0 0 is_stmt end_sequence
-
-0x00000060: 00 DW_LNE_set_address (0x000000000000002c)
-0x00000067: 03 DW_LNS_advance_line (3)
-0x00000069: 05 DW_LNS_set_column (23)
-0x0000006b: 0a DW_LNS_set_prologue_end
-0x0000006c: 00 DW_LNE_end_sequence
- 0x000000000000002c 3 23 1 0 0 is_stmt end_sequence
-
-0x0000006f: 00 DW_LNE_set_address (0x0000000000000031)
-0x00000076: 03 DW_LNS_advance_line (3)
-0x00000078: 05 DW_LNS_set_column (17)
-0x0000007a: 06 DW_LNS_negate_stmt
-0x0000007b: 0a DW_LNS_set_prologue_end
-0x0000007c: 00 DW_LNE_end_sequence
- 0x0000000000000031 3 17 1 0 0 end_sequence
-
-0x0000007f: 00 DW_LNE_set_address (0x0000000000000036)
-0x00000086: 03 DW_LNS_advance_line (3)
-0x00000088: 05 DW_LNS_set_column (3)
-0x0000008a: 06 DW_LNS_negate_stmt
-0x0000008b: 0a DW_LNS_set_prologue_end
+0x0000002f: 01 DW_LNS_copy
+ 0x0000000000000005 1 0 1 0 0 is_stmt
+
+
+0x00000030: 00 DW_LNE_set_address (0x000000000000000e)
+0x00000037: 03 DW_LNS_advance_line (3)
+0x00000039: 05 DW_LNS_set_column (17)
+0x0000003b: 0a DW_LNS_set_prologue_end
+0x0000003c: 01 DW_LNS_copy
+ 0x000000000000000e 3 17 1 0 0 is_stmt prologue_end
+
+
+0x0000003d: 00 DW_LNE_set_address (0x0000000000000013)
+0x00000044: 05 DW_LNS_set_column (3)
+0x00000046: 06 DW_LNS_negate_stmt
+0x00000047: 01 DW_LNS_copy
+ 0x0000000000000013 3 3 1 0 0
+
+
+0x00000048: 00 DW_LNE_set_address (0x0000000000000021)
+0x0000004f: 03 DW_LNS_advance_line (6)
+0x00000051: 05 DW_LNS_set_column (7)
+0x00000053: 06 DW_LNS_negate_stmt
+0x00000054: 01 DW_LNS_copy
+ 0x0000000000000021 6 7 1 0 0 is_stmt
+
+
+0x00000055: 00 DW_LNE_set_address (0x000000000000002c)
+0x0000005c: 03 DW_LNS_advance_line (3)
+0x00000062: 05 DW_LNS_set_column (23)
+0x00000064: 01 DW_LNS_copy
+ 0x000000000000002c 3 23 1 0 0 is_stmt
+
+
+0x00000065: 00 DW_LNE_set_address (0x0000000000000031)
+0x0000006c: 05 DW_LNS_set_column (17)
+0x0000006e: 06 DW_LNS_negate_stmt
+0x0000006f: 01 DW_LNS_copy
+ 0x0000000000000031 3 17 1 0 0
+
+
+0x00000070: 00 DW_LNE_set_address (0x0000000000000036)
+0x00000077: 05 DW_LNS_set_column (3)
+0x00000079: 01 DW_LNS_copy
+ 0x0000000000000036 3 3 1 0 0
+
+
+0x0000007a: 00 DW_LNE_set_address (0x000000000000003a)
+0x00000081: 03 DW_LNS_advance_line (8)
+0x00000083: 06 DW_LNS_negate_stmt
+0x00000084: 01 DW_LNS_copy
+ 0x000000000000003a 8 3 1 0 0 is_stmt
+
+
+0x00000085: 00 DW_LNE_set_address (0x000000000000003d)
0x0000008c: 00 DW_LNE_end_sequence
- 0x0000000000000036 3 3 1 0 0 end_sequence
-
-0x0000008f: 00 DW_LNE_set_address (0x000000000000003a)
-0x00000096: 03 DW_LNS_advance_line (8)
-0x00000098: 05 DW_LNS_set_column (3)
-0x0000009a: 0a DW_LNS_set_prologue_end
-0x0000009b: 00 DW_LNE_end_sequence
- 0x000000000000003a 8 3 1 0 0 is_stmt end_sequence
-
-0x0000009e: 00 DW_LNE_set_address (0x000000000000003d)
-0x000000a5: 03 DW_LNS_advance_line (8)
-0x000000a7: 05 DW_LNS_set_column (3)
-0x000000a9: 0a DW_LNS_set_prologue_end
-0x000000aa: 00 DW_LNE_end_sequence
0x000000000000003d 8 3 1 0 0 is_stmt end_sequence
-0x000000ad: 00 DW_LNE_set_address (0x000000000000003e)
-0x000000b4: 03 DW_LNS_advance_line (11)
-0x000000b6: 00 DW_LNE_end_sequence
- 0x000000000000003e 11 0 1 0 0 is_stmt end_sequence
-
-0x000000b9: 00 DW_LNE_set_address (0x0000000000000041)
-0x000000c0: 03 DW_LNS_advance_line (12)
-0x000000c2: 05 DW_LNS_set_column (10)
-0x000000c4: 0a DW_LNS_set_prologue_end
-0x000000c5: 00 DW_LNE_end_sequence
- 0x0000000000000041 12 10 1 0 0 is_stmt end_sequence
-
-0x000000c8: 00 DW_LNE_set_address (0x0000000000000043)
-0x000000cf: 03 DW_LNS_advance_line (12)
-0x000000d1: 05 DW_LNS_set_column (3)
-0x000000d3: 06 DW_LNS_negate_stmt
-0x000000d4: 0a DW_LNS_set_prologue_end
-0x000000d5: 00 DW_LNE_end_sequence
- 0x0000000000000043 12 3 1 0 0 end_sequence
-
-0x000000d8: 00 DW_LNE_set_address (0x0000000000000044)
-0x000000df: 03 DW_LNS_advance_line (12)
-0x000000e1: 05 DW_LNS_set_column (3)
-0x000000e3: 06 DW_LNS_negate_stmt
-0x000000e4: 0a DW_LNS_set_prologue_end
-0x000000e5: 00 DW_LNE_end_sequence
+0x0000008f: 00 DW_LNE_set_address (0x000000000000003e)
+0x00000096: 03 DW_LNS_advance_line (11)
+0x00000098: 01 DW_LNS_copy
+ 0x000000000000003e 11 0 1 0 0 is_stmt
+
+
+0x00000099: 00 DW_LNE_set_address (0x0000000000000041)
+0x000000a0: 03 DW_LNS_advance_line (12)
+0x000000a2: 05 DW_LNS_set_column (10)
+0x000000a4: 0a DW_LNS_set_prologue_end
+0x000000a5: 01 DW_LNS_copy
+ 0x0000000000000041 12 10 1 0 0 is_stmt prologue_end
+
+
+0x000000a6: 00 DW_LNE_set_address (0x0000000000000043)
+0x000000ad: 05 DW_LNS_set_column (3)
+0x000000af: 06 DW_LNS_negate_stmt
+0x000000b0: 01 DW_LNS_copy
+ 0x0000000000000043 12 3 1 0 0
+
+
+0x000000b1: 00 DW_LNE_set_address (0x0000000000000044)
+0x000000b8: 00 DW_LNE_end_sequence
0x0000000000000044 12 3 1 0 0 end_sequence
@@ -723,7 +716,7 @@ file_names[ 1]:
;; custom section ".debug_loc", size 143
;; custom section ".debug_ranges", size 24
;; custom section ".debug_abbrev", size 131
- ;; custom section ".debug_line", size 232
+ ;; custom section ".debug_line", size 187
;; custom section ".debug_str", size 180
;; custom section "producers", size 127
)
diff --git a/test/passes/ignore_missing_func.bin.txt b/test/passes/ignore_missing_func.bin.txt
index c8afbadbc..4f06c2418 100644
--- a/test/passes/ignore_missing_func.bin.txt
+++ b/test/passes/ignore_missing_func.bin.txt
@@ -551,7 +551,7 @@ DWARF debug info
Contains section .debug_info (175 bytes)
Contains section .debug_ranges (32 bytes)
Contains section .debug_abbrev (117 bytes)
-Contains section .debug_line (219 bytes)
+Contains section .debug_line (169 bytes)
Contains section .debug_str (235 bytes)
.debug_abbrev contents:
@@ -700,7 +700,7 @@ Abbrev table for offset: 0x00000000
.debug_line contents:
debug_line[0x00000000]
Line table prologue:
- total_length: 0x000000d7
+ total_length: 0x000000a5
version: 4
prologue_length: 0x0000001d
min_inst_length: 1
@@ -728,88 +728,77 @@ file_names[ 1]:
length: 0x00000000
0x00000027: 00 DW_LNE_set_address (0x0000000000000005)
0x0000002e: 03 DW_LNS_advance_line (4)
-0x00000030: 00 DW_LNE_end_sequence
- 0x0000000000000005 4 0 1 0 0 is_stmt end_sequence
-
-0x00000033: 00 DW_LNE_set_address (0x000000000000001e)
-0x0000003a: 03 DW_LNS_advance_line (5)
-0x0000003c: 05 DW_LNS_set_column (4)
-0x0000003e: 0a DW_LNS_set_prologue_end
-0x0000003f: 00 DW_LNE_end_sequence
- 0x000000000000001e 5 4 1 0 0 is_stmt end_sequence
-
-0x00000042: 00 DW_LNE_set_address (0x0000000000000037)
-0x00000049: 03 DW_LNS_advance_line (6)
-0x0000004b: 05 DW_LNS_set_column (4)
-0x0000004d: 0a DW_LNS_set_prologue_end
-0x0000004e: 00 DW_LNE_end_sequence
- 0x0000000000000037 6 4 1 0 0 is_stmt end_sequence
-
-0x00000051: 00 DW_LNE_set_address (0x0000000000000050)
-0x00000058: 03 DW_LNS_advance_line (7)
-0x0000005a: 05 DW_LNS_set_column (10)
-0x0000005c: 0a DW_LNS_set_prologue_end
-0x0000005d: 00 DW_LNE_end_sequence
- 0x0000000000000050 7 10 1 0 0 is_stmt end_sequence
-
-0x00000060: 00 DW_LNE_set_address (0x0000000000000057)
-0x00000067: 03 DW_LNS_advance_line (7)
-0x00000069: 05 DW_LNS_set_column (3)
-0x0000006b: 06 DW_LNS_negate_stmt
-0x0000006c: 0a DW_LNS_set_prologue_end
-0x0000006d: 00 DW_LNE_end_sequence
- 0x0000000000000057 7 3 1 0 0 end_sequence
-
-0x00000070: 00 DW_LNE_set_address (0x000000000000005b)
-0x00000077: 03 DW_LNS_advance_line (7)
-0x00000079: 05 DW_LNS_set_column (3)
-0x0000007b: 06 DW_LNS_negate_stmt
-0x0000007c: 0a DW_LNS_set_prologue_end
-0x0000007d: 00 DW_LNE_end_sequence
+0x00000030: 01 DW_LNS_copy
+ 0x0000000000000005 4 0 1 0 0 is_stmt
+
+
+0x00000031: 00 DW_LNE_set_address (0x000000000000001e)
+0x00000038: 03 DW_LNS_advance_line (5)
+0x0000003a: 05 DW_LNS_set_column (4)
+0x0000003c: 0a DW_LNS_set_prologue_end
+0x0000003d: 01 DW_LNS_copy
+ 0x000000000000001e 5 4 1 0 0 is_stmt prologue_end
+
+
+0x0000003e: 00 DW_LNE_set_address (0x0000000000000037)
+0x00000045: 03 DW_LNS_advance_line (6)
+0x00000047: 01 DW_LNS_copy
+ 0x0000000000000037 6 4 1 0 0 is_stmt
+
+
+0x00000048: 00 DW_LNE_set_address (0x0000000000000050)
+0x0000004f: 03 DW_LNS_advance_line (7)
+0x00000051: 05 DW_LNS_set_column (10)
+0x00000053: 01 DW_LNS_copy
+ 0x0000000000000050 7 10 1 0 0 is_stmt
+
+
+0x00000054: 00 DW_LNE_set_address (0x0000000000000057)
+0x0000005b: 05 DW_LNS_set_column (3)
+0x0000005d: 06 DW_LNS_negate_stmt
+0x0000005e: 01 DW_LNS_copy
+ 0x0000000000000057 7 3 1 0 0
+
+
+0x0000005f: 00 DW_LNE_set_address (0x000000000000005b)
+0x00000066: 00 DW_LNE_end_sequence
0x000000000000005b 7 3 1 0 0 end_sequence
-0x00000080: 00 DW_LNE_set_address (0x000000000000005c)
-0x00000087: 03 DW_LNS_advance_line (16)
-0x00000089: 00 DW_LNE_end_sequence
- 0x000000000000005c 16 0 1 0 0 is_stmt end_sequence
-
-0x0000008c: 00 DW_LNE_set_address (0x0000000000000081)
-0x00000093: 03 DW_LNS_advance_line (17)
-0x00000095: 05 DW_LNS_set_column (10)
-0x00000097: 0a DW_LNS_set_prologue_end
-0x00000098: 00 DW_LNE_end_sequence
- 0x0000000000000081 17 10 1 0 0 is_stmt end_sequence
-
-0x0000009b: 00 DW_LNE_set_address (0x0000000000000087)
-0x000000a2: 03 DW_LNS_advance_line (17)
-0x000000a4: 05 DW_LNS_set_column (25)
-0x000000a6: 06 DW_LNS_negate_stmt
-0x000000a7: 0a DW_LNS_set_prologue_end
-0x000000a8: 00 DW_LNE_end_sequence
- 0x0000000000000087 17 25 1 0 0 end_sequence
-
-0x000000ab: 00 DW_LNE_set_address (0x0000000000000093)
-0x000000b2: 03 DW_LNS_advance_line (17)
-0x000000b4: 05 DW_LNS_set_column (19)
-0x000000b6: 06 DW_LNS_negate_stmt
-0x000000b7: 0a DW_LNS_set_prologue_end
-0x000000b8: 00 DW_LNE_end_sequence
- 0x0000000000000093 17 19 1 0 0 end_sequence
-
-0x000000bb: 00 DW_LNE_set_address (0x000000000000009a)
-0x000000c2: 03 DW_LNS_advance_line (17)
-0x000000c4: 05 DW_LNS_set_column (3)
-0x000000c6: 06 DW_LNS_negate_stmt
-0x000000c7: 0a DW_LNS_set_prologue_end
-0x000000c8: 00 DW_LNE_end_sequence
- 0x000000000000009a 17 3 1 0 0 end_sequence
-
-0x000000cb: 00 DW_LNE_set_address (0x00000000000000ad)
-0x000000d2: 03 DW_LNS_advance_line (17)
-0x000000d4: 05 DW_LNS_set_column (3)
-0x000000d6: 06 DW_LNS_negate_stmt
-0x000000d7: 0a DW_LNS_set_prologue_end
-0x000000d8: 00 DW_LNE_end_sequence
+0x00000069: 00 DW_LNE_set_address (0x000000000000005c)
+0x00000070: 03 DW_LNS_advance_line (16)
+0x00000072: 01 DW_LNS_copy
+ 0x000000000000005c 16 0 1 0 0 is_stmt
+
+
+0x00000073: 00 DW_LNE_set_address (0x0000000000000081)
+0x0000007a: 03 DW_LNS_advance_line (17)
+0x0000007c: 05 DW_LNS_set_column (10)
+0x0000007e: 0a DW_LNS_set_prologue_end
+0x0000007f: 01 DW_LNS_copy
+ 0x0000000000000081 17 10 1 0 0 is_stmt prologue_end
+
+
+0x00000080: 00 DW_LNE_set_address (0x0000000000000087)
+0x00000087: 05 DW_LNS_set_column (25)
+0x00000089: 06 DW_LNS_negate_stmt
+0x0000008a: 01 DW_LNS_copy
+ 0x0000000000000087 17 25 1 0 0
+
+
+0x0000008b: 00 DW_LNE_set_address (0x0000000000000093)
+0x00000092: 05 DW_LNS_set_column (19)
+0x00000094: 01 DW_LNS_copy
+ 0x0000000000000093 17 19 1 0 0
+
+
+0x00000095: 00 DW_LNE_set_address (0x000000000000009a)
+0x0000009c: 05 DW_LNS_set_column (3)
+0x0000009e: 01 DW_LNS_copy
+ 0x000000000000009a 17 3 1 0 0
+
+
+0x0000009f: 00 DW_LNE_set_address (0x00000000000000ad)
+0x000000a6: 00 DW_LNE_end_sequence
0x00000000000000ad 17 3 1 0 0 end_sequence
@@ -1087,7 +1076,7 @@ file_names[ 1]:
;; custom section ".debug_info", size 175
;; custom section ".debug_ranges", size 32
;; custom section ".debug_abbrev", size 117
- ;; custom section ".debug_line", size 219
+ ;; custom section ".debug_line", size 169
;; custom section ".debug_str", size 235
;; custom section "producers", size 180
)
diff --git a/test/passes/multi_line_table.bin.txt b/test/passes/multi_line_table.bin.txt
index 66a51254a..5d5f53f8b 100644
--- a/test/passes/multi_line_table.bin.txt
+++ b/test/passes/multi_line_table.bin.txt
@@ -212,7 +212,7 @@ DWARF debug info
Contains section .debug_info (130 bytes)
Contains section .debug_abbrev (99 bytes)
-Contains section .debug_line (159 bytes)
+Contains section .debug_line (145 bytes)
Contains section .debug_str (407 bytes)
.debug_abbrev contents:
@@ -298,7 +298,7 @@ Abbrev table for offset: 0x00000000
.debug_line contents:
debug_line[0x00000000]
Line table prologue:
- total_length: 0x0000004c
+ total_length: 0x00000045
version: 4
prologue_length: 0x00000022
min_inst_length: 1
@@ -325,24 +325,24 @@ file_names[ 1]:
mod_time: 0x00000000
length: 0x00000000
0x0000002c: 00 DW_LNE_set_address (0x000000000000000a)
-0x00000033: 00 DW_LNE_end_sequence
- 0x000000000000000a 1 0 1 0 0 is_stmt end_sequence
-
-0x00000036: 00 DW_LNE_set_address (0x0000000000000011)
-0x0000003d: 05 DW_LNS_set_column (26)
-0x0000003f: 0a DW_LNS_set_prologue_end
-0x00000040: 00 DW_LNE_end_sequence
- 0x0000000000000011 1 26 1 0 0 is_stmt end_sequence
-
-0x00000043: 00 DW_LNE_set_address (0x0000000000000015)
-0x0000004a: 05 DW_LNS_set_column (26)
-0x0000004c: 0a DW_LNS_set_prologue_end
-0x0000004d: 00 DW_LNE_end_sequence
+0x00000033: 01 DW_LNS_copy
+ 0x000000000000000a 1 0 1 0 0 is_stmt
+
+
+0x00000034: 00 DW_LNE_set_address (0x0000000000000011)
+0x0000003b: 05 DW_LNS_set_column (26)
+0x0000003d: 0a DW_LNS_set_prologue_end
+0x0000003e: 01 DW_LNS_copy
+ 0x0000000000000011 1 26 1 0 0 is_stmt prologue_end
+
+
+0x0000003f: 00 DW_LNE_set_address (0x0000000000000015)
+0x00000046: 00 DW_LNE_end_sequence
0x0000000000000015 1 26 1 0 0 is_stmt end_sequence
-debug_line[0x00000050]
+debug_line[0x00000049]
Line table prologue:
- total_length: 0x0000004b
+ total_length: 0x00000044
version: 4
prologue_length: 0x00000021
min_inst_length: 1
@@ -368,20 +368,20 @@ file_names[ 1]:
dir_index: 0
mod_time: 0x00000000
length: 0x00000000
-0x0000007b: 00 DW_LNE_set_address (0x0000000000000016)
-0x00000082: 00 DW_LNE_end_sequence
- 0x0000000000000016 1 0 1 0 0 is_stmt end_sequence
-
-0x00000085: 00 DW_LNE_set_address (0x000000000000001d)
-0x0000008c: 05 DW_LNS_set_column (26)
-0x0000008e: 0a DW_LNS_set_prologue_end
-0x0000008f: 00 DW_LNE_end_sequence
- 0x000000000000001d 1 26 1 0 0 is_stmt end_sequence
-
-0x00000092: 00 DW_LNE_set_address (0x0000000000000021)
-0x00000099: 05 DW_LNS_set_column (26)
-0x0000009b: 0a DW_LNS_set_prologue_end
-0x0000009c: 00 DW_LNE_end_sequence
+0x00000074: 00 DW_LNE_set_address (0x0000000000000016)
+0x0000007b: 01 DW_LNS_copy
+ 0x0000000000000016 1 0 1 0 0 is_stmt
+
+
+0x0000007c: 00 DW_LNE_set_address (0x000000000000001d)
+0x00000083: 05 DW_LNS_set_column (26)
+0x00000085: 0a DW_LNS_set_prologue_end
+0x00000086: 01 DW_LNS_copy
+ 0x000000000000001d 1 26 1 0 0 is_stmt prologue_end
+
+
+0x00000087: 00 DW_LNE_set_address (0x0000000000000021)
+0x0000008e: 00 DW_LNE_end_sequence
0x0000000000000021 1 26 1 0 0 is_stmt end_sequence
@@ -445,7 +445,7 @@ file_names[ 1]:
;; custom section "dylink", size 5
;; custom section ".debug_info", size 130
;; custom section ".debug_abbrev", size 99
- ;; custom section ".debug_line", size 159
+ ;; custom section ".debug_line", size 145
;; custom section ".debug_str", size 407
;; custom section "producers", size 180
)