-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblowfish.out.map
1022 lines (915 loc) · 55.6 KB
/
blowfish.out.map
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Archive member included because of file (symbol)
/home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
/tmp/ccUSFbdn.o (printf)
/home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
/tmp/ccUSFbdn.o (mspconsole_init)
/home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
/home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o) (UART_init)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
/tmp/ccUSFbdn.o (exit)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o) (_global_impure_ptr)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o) (__call_exitprocs)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a(slli.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o) (__mspabi_slli)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o (__crt0_init_bss)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o (__crt0_movedata)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o (__crt0_call_init_then_main)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o) (_exit)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o) (__errno)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o) (memmove)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
/opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o) (memset)
Discarded input sections
.note.GNU-stack
0x00000000 0x0 /tmp/ccUSFbdn.o
Memory Configuration
Name Origin Length Attributes
SFR 0x00000000 0x00000010
PERIPHERAL_8BIT 0x00000010 0x000000f0
PERIPHERAL_16BIT 0x00000100 0x00000100
RAM 0x00001c00 0x00000800
INFOMEM 0x00001800 0x00000200
INFOA 0x00001980 0x00000080
INFOB 0x00001900 0x00000080
INFOC 0x00001880 0x00000080
INFOD 0x00001800 0x00000080
ROM 0x00004400 0x0000bb80 xr
VECT1 0x0000ff90 0x00000002
VECT2 0x0000ff92 0x00000002
VECT3 0x0000ff94 0x00000002
VECT4 0x0000ff96 0x00000002
VECT5 0x0000ff98 0x00000002
VECT6 0x0000ff9a 0x00000002
VECT7 0x0000ff9c 0x00000002
VECT8 0x0000ff9e 0x00000002
VECT9 0x0000ffa0 0x00000002
VECT10 0x0000ffa2 0x00000002
VECT11 0x0000ffa4 0x00000002
VECT12 0x0000ffa6 0x00000002
VECT13 0x0000ffa8 0x00000002
VECT14 0x0000ffaa 0x00000002
VECT15 0x0000ffac 0x00000002
VECT16 0x0000ffae 0x00000002
VECT17 0x0000ffb0 0x00000002
VECT18 0x0000ffb2 0x00000002
VECT19 0x0000ffb4 0x00000002
VECT20 0x0000ffb6 0x00000002
VECT21 0x0000ffb8 0x00000002
VECT22 0x0000ffba 0x00000002
VECT23 0x0000ffbc 0x00000002
VECT24 0x0000ffbe 0x00000002
VECT25 0x0000ffc0 0x00000002
VECT26 0x0000ffc2 0x00000002
VECT27 0x0000ffc4 0x00000002
VECT28 0x0000ffc6 0x00000002
VECT29 0x0000ffc8 0x00000002
VECT30 0x0000ffca 0x00000002
VECT31 0x0000ffcc 0x00000002
VECT32 0x0000ffce 0x00000002
VECT33 0x0000ffd0 0x00000002
VECT34 0x0000ffd2 0x00000002
VECT35 0x0000ffd4 0x00000002
VECT36 0x0000ffd6 0x00000002
VECT37 0x0000ffd8 0x00000002
VECT38 0x0000ffda 0x00000002
VECT39 0x0000ffdc 0x00000002
VECT40 0x0000ffde 0x00000002
VECT41 0x0000ffe0 0x00000002
VECT42 0x0000ffe2 0x00000002
VECT43 0x0000ffe4 0x00000002
VECT44 0x0000ffe6 0x00000002
VECT45 0x0000ffe8 0x00000002
VECT46 0x0000ffea 0x00000002
VECT47 0x0000ffec 0x00000002
VECT48 0x0000ffee 0x00000002
VECT49 0x0000fff0 0x00000002
VECT50 0x0000fff2 0x00000002
VECT51 0x0000fff4 0x00000002
VECT52 0x0000fff6 0x00000002
VECT53 0x0000fff8 0x00000002
VECT54 0x0000fffa 0x00000002
VECT55 0x0000fffc 0x00000002
RESETVEC 0x0000fffe 0x00000002
BSL 0x00001000 0x00000800
HIFRAM 0x00010000 0x00003fff xrw
*default* 0x00000000 0xffffffff
Linker script and memory map
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
LOAD /tmp/ccUSFbdn.o
LOAD /home/reviewer/alpaca-oopsla2017/ext/libmspbuiltins/bld/gcc/libmspbuiltins.a
LOAD /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a
LOAD /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a
LOAD /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a
START GROUP
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a
END GROUP
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
LOAD /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a
__interrupt_vector_1
*(__interrupt_vector_1)
__interrupt_vector_2
*(__interrupt_vector_2)
__interrupt_vector_3
*(__interrupt_vector_3)
__interrupt_vector_4
*(__interrupt_vector_4)
__interrupt_vector_5
*(__interrupt_vector_5)
__interrupt_vector_6
*(__interrupt_vector_6)
__interrupt_vector_7
*(__interrupt_vector_7)
__interrupt_vector_8
*(__interrupt_vector_8)
__interrupt_vector_9
*(__interrupt_vector_9)
__interrupt_vector_10
*(__interrupt_vector_10)
__interrupt_vector_11
*(__interrupt_vector_11)
__interrupt_vector_12
*(__interrupt_vector_12)
__interrupt_vector_13
*(__interrupt_vector_13)
__interrupt_vector_14
*(__interrupt_vector_14)
__interrupt_vector_15
*(__interrupt_vector_15)
__interrupt_vector_16
*(__interrupt_vector_16)
__interrupt_vector_17
*(__interrupt_vector_17)
__interrupt_vector_18
*(__interrupt_vector_18)
__interrupt_vector_19
*(__interrupt_vector_19)
__interrupt_vector_20
*(__interrupt_vector_20)
__interrupt_vector_21
*(__interrupt_vector_21)
__interrupt_vector_22
*(__interrupt_vector_22)
__interrupt_vector_23
*(__interrupt_vector_23)
__interrupt_vector_24
*(__interrupt_vector_24)
__interrupt_vector_25
*(__interrupt_vector_25)
__interrupt_vector_26
*(__interrupt_vector_26)
__interrupt_vector_27
*(__interrupt_vector_27)
__interrupt_vector_28
*(__interrupt_vector_28)
__interrupt_vector_29
*(__interrupt_vector_29)
__interrupt_vector_30
*(__interrupt_vector_30)
__interrupt_vector_31
*(__interrupt_vector_31)
*(__interrupt_vector_aes256)
__interrupt_vector_32
*(__interrupt_vector_32)
*(__interrupt_vector_rtc)
__interrupt_vector_33
*(__interrupt_vector_33)
*(__interrupt_vector_port4)
__interrupt_vector_34
*(__interrupt_vector_34)
*(__interrupt_vector_port3)
__interrupt_vector_35
*(__interrupt_vector_35)
*(__interrupt_vector_timer3_a1)
__interrupt_vector_36
*(__interrupt_vector_36)
*(__interrupt_vector_timer3_a0)
__interrupt_vector_37
*(__interrupt_vector_37)
*(__interrupt_vector_port2)
__interrupt_vector_38
*(__interrupt_vector_38)
*(__interrupt_vector_timer2_a1)
__interrupt_vector_39
*(__interrupt_vector_39)
*(__interrupt_vector_timer2_a0)
__interrupt_vector_40
*(__interrupt_vector_40)
*(__interrupt_vector_port1)
__interrupt_vector_41
*(__interrupt_vector_41)
*(__interrupt_vector_timer1_a1)
__interrupt_vector_42
*(__interrupt_vector_42)
*(__interrupt_vector_timer1_a0)
__interrupt_vector_43
*(__interrupt_vector_43)
*(__interrupt_vector_dma)
__interrupt_vector_44
*(__interrupt_vector_44)
*(__interrupt_vector_usci_a1)
__interrupt_vector_45
*(__interrupt_vector_45)
*(__interrupt_vector_timer0_a1)
__interrupt_vector_46
*(__interrupt_vector_46)
*(__interrupt_vector_timer0_a0)
__interrupt_vector_47
*(__interrupt_vector_47)
*(__interrupt_vector_adc12)
__interrupt_vector_48
*(__interrupt_vector_48)
*(__interrupt_vector_usci_b0)
__interrupt_vector_49
0x0000fff0 0x2
*(__interrupt_vector_49)
__interrupt_vector_49
0x0000fff0 0x2 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
*(__interrupt_vector_usci_a0)
__interrupt_vector_50
*(__interrupt_vector_50)
*(__interrupt_vector_wdt)
__interrupt_vector_51
0x0000fff4 0x2
*(__interrupt_vector_51)
*(__interrupt_vector_timer0_b1)
__interrupt_vector_timer0_b1
0x0000fff4 0x2 /tmp/ccUSFbdn.o
0x0000fff4 __vector_timer0_b1
__interrupt_vector_52
*(__interrupt_vector_52)
*(__interrupt_vector_timer0_b0)
__interrupt_vector_53
*(__interrupt_vector_53)
*(__interrupt_vector_comp_e)
__interrupt_vector_54
*(__interrupt_vector_54)
*(__interrupt_vector_unmi)
__interrupt_vector_55
*(__interrupt_vector_55)
*(__interrupt_vector_sysnmi)
__reset_vector 0x0000fffe 0x2
*(__interrupt_vector_56)
*(__interrupt_vector_reset)
*(.resetvec)
.resetvec 0x0000fffe 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.rodata 0x00004400 0xb4
0x00004400 . = ALIGN (0x2)
*(.plt)
*(.rodata .rodata.* .gnu.linkonce.r.* .const .const:*)
.rodata.str1.1
0x00004400 0x66 /tmp/ccUSFbdn.o
.rodata 0x00004466 0x38 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.rodata._global_impure_ptr
0x0000449e 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
0x0000449e _global_impure_ptr
.rodata 0x000044a0 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
*(.rodata1)
*(.lower.rodata.* .lower.rodata)
*(.eh_frame_hdr)
*(.eh_frame)
*fill* 0x000044a2 0x2
.eh_frame 0x000044a4 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.eh_frame 0x000044a4 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
*(.gcc_except_table)
*(.gcc_except_table.*)
0x000044a8 PROVIDE (__preinit_array_start, .)
*(.preinit_array)
0x000044a8 PROVIDE (__preinit_array_end, .)
0x000044a8 PROVIDE (__init_array_start, .)
*(SORT(.init_array.*))
*(.init_array)
0x000044a8 PROVIDE (__init_array_end, .)
0x000044a8 PROVIDE (__fini_array_start, .)
*(.fini_array)
*(SORT(.fini_array.*))
0x000044a8 PROVIDE (__fini_array_end, .)
0x000044a8 0x4 LONG 0x0
*crtbegin*.o(.ctors)
.ctors 0x000044ac 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
*(EXCLUDE_FILE(*crtend*.o) .ctors)
*(SORT(.ctors.*))
*(.ctors)
.ctors 0x000044ae 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
*crtbegin*.o(.dtors)
.dtors 0x000044b0 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
*(EXCLUDE_FILE(*crtend*.o) .dtors)
*(SORT(.dtors.*))
*(.dtors)
.dtors 0x000044b2 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
0x000044b2 __DTOR_END__
.nv 0x000044b4 0x2242
0x000044b4 . = ALIGN (0x2)
0x000044b4 PROVIDE (__fram_vars_start, .)
*(.ro_nv_vars)
.ro_nv_vars 0x000044b4 0x1076 /tmp/ccUSFbdn.o
*(.nv_vars)
.nv_vars 0x0000552a 0x11cc /tmp/ccUSFbdn.o
0x0000552a _task_task_init
0x0000552e _task_task_set_ukey
0x00005532 _task_task_done
0x00005536 _task_task_init_key
0x0000553a _task_task_init_s
0x0000553e _task_task_set_key
0x00005542 _task_task_set_key2
0x00005546 _task_task_encrypt
0x0000554a _task_task_start_encrypt
0x0000554e _task_task_start_encrypt2
0x00005552 _task_task_start_encrypt3
0x00005556 _global_n_bak
0x00005558 _global_n
0x0000555a _global_index_bak
0x0000555c _global_index
0x0000555e _global_index2_bak
0x00005562 _global_index2
0x00005566 _global_iv_bak
0x0000556e _global_iv_isDirty
0x0000557e _global_iv
0x00005586 _global_ukey
0x00005596 _global_key_bak
0x000055de _global_key_isDirty
0x00005602 _global_key
0x0000564a _global_s0
0x00005a4a _global_s1
0x00005e4a _global_s2
0x0000624a _global_s3
0x0000664a _global_input_bak
0x00006652 _global_input_isDirty
0x00006656 _global_input
0x0000665e _global_next_task
0x00006660 _global_result
0x0000666e _task__entry_task
0x00006672 _global_return_to
0x00006674 data_src
0x00006698 data_dest
0x000066bc data_size
0x000066e0 data_src_base
0x000066e2 data_dest_base
0x000066e4 data_size_base
0x000066e6 gv_index
0x000066e8 num_dirty_gv
0x000066ea context_1
0x000066ee context_0
0x000066f2 curctx
0x000066f4 _numBoots
*(.fram_vars)
0x000066f6 . = ALIGN (0x2)
0x000066f6 PROVIDE (__fram_vars_end, .)
.upper.rodata
*(.upper.rodata.* .upper.rodata)
.data 0x00001c00 0x80 load address 0x000066f6
0x00001c00 . = ALIGN (0x2)
0x00001c00 PROVIDE (__datastart, .)
*(.jcr)
.jcr 0x00001c00 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.jcr 0x00001c00 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
*(.data.rel.ro.local)
*(.data.rel.ro*)
*(.dynamic)
*(.data .data.* .gnu.linkonce.d.*)
.data 0x00001c02 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.data 0x00001c02 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
0x00001c02 __dso_handle
.data 0x00001c04 0x0 /tmp/ccUSFbdn.o
.data.rel 0x00001c04 0x2 /tmp/ccUSFbdn.o
0x00001c04 timer
.data 0x00001c06 0x0 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.data 0x00001c06 0x0 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.data 0x00001c06 0x0 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.data 0x00001c06 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.data 0x00001c06 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.data._impure_ptr
0x00001c06 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
0x00001c06 _impure_ptr
.data.impure_data
0x00001c08 0x78 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a(slli.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.data 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
*(.gnu.linkonce.d.*personality*)
*(.data1)
*(.got.plt)
*(.got)
0x00001c80 . = ALIGN (0x2)
*(.sdata .sdata.* .gnu.linkonce.s.* D_2 D_1)
0x00001c80 . = ALIGN (0x2)
*(.lower.data.* .lower.data)
0x00001c80 . = ALIGN (0x2)
0x00001c80 _edata = .
0x00001c80 PROVIDE (edata, .)
0x00001c80 PROVIDE (__dataend, .)
0x000066f6 PROVIDE (__romdatastart, LOADADDR (.data))
0x00000080 PROVIDE (__romdatacopysize, SIZEOF (.data))
.upper.data 0x00010000 0x2 load address 0x00006776
0x00006776 __upper_data_init = LOADADDR (.upper.data)
0x00010000 0x2 SHORT 0x1
0x00010002 __high_datastart = .
*(.upper.data.* .upper.data)
0x00010002 __high_dataend = .
0x00000000 __rom_highdatacopysize = (SIZEOF (.upper.data) - 0x2)
0x00006778 __rom_highdatastart = (LOADADDR (.upper.data) + 0x2)
.bss 0x00001c80 0x22
0x00001c80 . = ALIGN (0x2)
0x00001c80 PROVIDE (__bssstart, .)
*(.dynbss)
*(.sbss .sbss.*)
*(.bss .bss.* .gnu.linkonce.b.*)
.bss 0x00001c80 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.bss 0x00001c80 0x12 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.bss 0x00001c92 0x4 /tmp/ccUSFbdn.o
0x00001c92 overflow
.bss 0x00001c96 0x0 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.bss 0x00001c96 0x0 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.bss 0x00001c96 0xc /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a(slli.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.bss 0x00001ca2 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
*(.lower.bss.* .lower.bss)
0x00001ca2 . = ALIGN (0x2)
*(COMMON)
0x00001ca2 PROVIDE (__bssend, .)
0x00000022 PROVIDE (__bsssize, SIZEOF (.bss))
.noinit 0x00001ca2 0x0
0x00001ca2 . = ALIGN (0x2)
0x00001ca2 PROVIDE (__noinit_start, .)
*(.noinit)
0x00001ca2 . = ALIGN (0x2)
0x00001ca2 PROVIDE (__noinit_end, .)
0x00001ca2 _end = .
0x00001ca2 PROVIDE (end, .)
.upper.bss 0x00010002 0x0
0x00010002 . = ALIGN (0x2)
0x00010002 __high_bssstart = .
*(.upper.bss.* .upper.bss)
0x00010002 . = ALIGN (0x2)
0x00010002 __high_bssend = .
.stack 0x00002400 0x0
0x00002400 PROVIDE (__stack, .)
*(.stack)
.text 0x00006778 0x2348
0x00006778 PROVIDE (_start, .)
0x00006778 . = ALIGN (0x2)
*(SORT(.crt_*))
.crt_0000start
0x00006778 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
0x00006778 __crt0_start
.crt_0100init_bss
0x0000677c 0xe /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
0x0000677c __crt0_init_bss
.crt_0300movedata
0x0000678a 0x14 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
0x0000678a __crt0_movedata
.crt_0700call_init_then_main
0x0000679e 0xa /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
0x0000679e __crt0_call_init_then_main
.crt_0900main_init
0x000067a8 0x36 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
0x000067a8 _msp430_run_init_array
0x000067b4 _msp430_run_preinit_array
0x000067c0 _msp430_run_fini_array
0x000067de . = ALIGN (0x2)
*(.lowtext)
0x000067de . = ALIGN (0x2)
*(.lower.text.* .lower.text)
0x000067de . = ALIGN (0x2)
*(.text .stub .text.* .gnu.linkonce.t.* .text:*)
.text 0x000067de 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.text 0x000067de 0xc6 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.text 0x000068a4 0x1ab2 /tmp/ccUSFbdn.o
0x000068a4 TimerB1_ISR
0x000068a4 __interrupt_vector_51
0x000068f4 task_init
0x00006964 task_set_ukey
0x00006a54 task_init_key
0x00006aa0 task_init_s
0x00006bb4 task_set_key
0x00006eac task_set_key2
0x00007256 task_encrypt
0x00007522 task_start_encrypt
0x00007a0a task_start_encrypt2
0x00007a5a task_start_encrypt3
0x00007bca task_done
0x00007bfa init
0x00007c86 _entry_task
0x00007c96 _init
0x00007ca2 clear_isDirty
0x00007cf2 msp_watchdog_enable
0x00007d0a msp_watchdog_disable
0x00007d1a msp_watchdog_kick
0x00007d2e memcpy
0x00007d82 my_memset
0x00007d9a msp_clock_setup
0x00007dba mult16
0x00007dce sqrt16
0x00007eee udivmodhi4
0x00007ffe __divhi3
0x000080a6 __modhi3
0x00008132 __udivhi3
0x00008162 __umodhi3
0x00008192 task_prologue
0x0000824e transition_to
0x000082ba write_to_gbuf
0x00008332 main
.text 0x00008356 0x224 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
0x000083e8 puts
0x00008406 printf
.text 0x0000857a 0x5e /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
0x0000857a mspconsole_init
0x00008580 io_putchar
0x0000859c io_puts_no_newline
0x000085c2 io_puts
.text 0x000085d8 0x23e /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
0x000085d8 UART_init
0x0000861a UART_teardown
0x00008640 UART_asyncSend
0x00008664 UART_send
0x00008674 UART_critSend
0x000086da UART_isTxBusy
0x000086e0 UART_asyncReceive
0x00008706 UART_receive
0x00008718 UART_critReceive
0x0000877e UART_isRxBusy
0x00008784 UART_isRxDone
0x00008792 USCI_A0_ISR
.text 0x00008816 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.text.exit 0x00008816 0x1e /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
0x00008816 exit
.text 0x00008834 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.text 0x00008834 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.text.__call_exitprocs
0x00008834 0x124 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
0x00008834 __call_exitprocs
.text 0x00008958 0x74 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a(slli.o)
0x00008958 __mspabi_slli_15
0x0000895a __mspabi_slli_14
0x0000895c __mspabi_slli_13
0x0000895e __mspabi_slli_12
0x00008960 __mspabi_slli_11
0x00008962 __mspabi_slli_10
0x00008964 __mspabi_slli_9
0x00008966 __mspabi_slli_8
0x00008968 __mspabi_slli_7
0x0000896a __mspabi_slli_6
0x0000896c __mspabi_slli_5
0x0000896e __mspabi_slli_4
0x00008970 __mspabi_slli_3
0x00008972 __mspabi_slli_2
0x00008974 __mspabi_slli_1
0x0000897c __mspabi_slli
0x00008982 __mspabi_slll_15
0x00008986 __mspabi_slll_14
0x0000898a __mspabi_slll_13
0x0000898e __mspabi_slll_12
0x00008992 __mspabi_slll_11
0x00008996 __mspabi_slll_10
0x0000899a __mspabi_slll_9
0x0000899e __mspabi_slll_8
0x000089a2 __mspabi_slll_7
0x000089a6 __mspabi_slll_6
0x000089aa __mspabi_slll_5
0x000089ae __mspabi_slll_4
0x000089b2 __mspabi_slll_3
0x000089b6 __mspabi_slll_2
0x000089ba __mspabi_slll_1
0x000089c6 __mspabi_slll
.text 0x000089cc 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.text 0x000089cc 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.text 0x000089cc 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.text 0x000089cc 0x60 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
0x000089cc _exit
0x000089ce open
0x000089dc close
0x000089ea read
0x000089f8 fstat
0x00008a06 lseek
0x00008a14 kill
0x00008a22 isatty
0x00008a22 _isatty
0x00008a26 getpid
.text 0x00008a2c 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.text.__errno 0x00008a2c 0x6 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
0x00008a2c __errno
.text 0x00008a32 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.text.memmove 0x00008a32 0x40 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
0x00008a32 memmove
.text 0x00008a72 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.text.memset 0x00008a72 0x12 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
0x00008a72 memset
.text 0x00008a84 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.text 0x00008aa4 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
*(.text.*personality*)
*(.gnu.warning)
*(.interp .hash .dynsym .dynstr .gnu.version*)
0x00008aa4 PROVIDE (__etext, .)
0x00008aa4 PROVIDE (_etext, .)
0x00008aa4 PROVIDE (etext, .)
0x00008aa4 . = ALIGN (0x2)
*(.init)
.init 0x00008aa4 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
0x00008aa4 __msp430_init
.init 0x00008aa4 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.init 0x00008aa8 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.init 0x00008aac 0xa /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
0x00008ab6 __msp430_init_end
*(.fini)
.fini 0x00008ab6 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
0x00008ab6 __msp430_fini
.fini 0x00008aba 0x4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.fini 0x00008abe 0x2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
0x00008ac0 __msp430_fini_end
*(.tm_clone_table)
.tm_clone_table
0x00008ac0 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.tm_clone_table
0x00008ac0 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
0x00008ac0 __TMC_END__
.upper.text 0x00010002 0x0
0x00010002 . = ALIGN (0x2)
*(.upper.text.* .upper.text)
.infoA
.infoB
.infoC
.infoD
.MP430.attributes
0x00000000 0x1b5
*(.MSP430.attributes)
.MSP430.attributes
0x00000000 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.MSP430.attributes
0x00000017 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
.MSP430.attributes
0x0000002e 0x17 /tmp/ccUSFbdn.o
.MSP430.attributes
0x00000045 0x17 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.MSP430.attributes
0x0000005c 0x17 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.MSP430.attributes
0x00000073 0x17 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.MSP430.attributes
0x0000008a 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.MSP430.attributes
0x000000a1 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.MSP430.attributes
0x000000b8 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.MSP430.attributes
0x000000cf 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/libgcc.a(slli.o)
.MSP430.attributes
0x000000e6 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.MSP430.attributes
0x000000fd 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.MSP430.attributes
0x00000114 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.MSP430.attributes
0x0000012b 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.MSP430.attributes
0x00000142 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.MSP430.attributes
0x00000159 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.MSP430.attributes
0x00000170 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.MSP430.attributes
0x00000187 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.MSP430.attributes
0x0000019e 0x17 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
*(.gnu.attributes)
*(__TI_build_attributes)
.stab
*(.stab)
.stabstr
*(.stabstr)
.stab.excl
*(.stab.excl)
.stab.exclstr
*(.stab.exclstr)
.stab.index
*(.stab.index)
.stab.indexstr
*(.stab.indexstr)
.comment 0x00000000 0x121
*(.comment)
.comment 0x00000000 0x7c /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtbegin.o
0x7d (size before relaxing)
.comment 0x0000007c 0xa5 /tmp/ccUSFbdn.o
0x673 (size before relaxing)
.comment 0x00000000 0x7d /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.comment 0x00000000 0x7d /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.comment 0x00000000 0x7d /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.comment 0x00000000 0x7d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/crtend.o
.debug
*(.debug)
.line
*(.line)
.debug_srcinfo
*(.debug_srcinfo)
.debug_sfnames
*(.debug_sfnames)
.debug_aranges 0x00000000 0x1f0
*(.debug_aranges)
.debug_aranges
0x00000000 0x30 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.debug_aranges
0x00000030 0x20 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_aranges
0x00000050 0x20 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_aranges
0x00000070 0x20 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_aranges
0x00000090 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_aranges
0x000000b0 0x18 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.debug_aranges
0x000000c8 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_aranges
0x000000e8 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.debug_aranges
0x00000108 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.debug_aranges
0x00000128 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.debug_aranges
0x00000148 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.debug_aranges
0x00000168 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_aranges
0x00000188 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_aranges
0x000001a8 0x20 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_aranges
0x000001c8 0x28 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
.debug_pubnames
*(.debug_pubnames)
.debug_info 0x00000000 0x3143
*(.debug_info .gnu.linkonce.wi.*)
.debug_info 0x00000000 0xce /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.debug_info 0x000000ce 0x30d /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_info 0x000003db 0x1e7 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_info 0x000005c2 0x3e3 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_info 0x000009a5 0x853 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_info 0x000011f8 0x896 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.debug_info 0x00001a8e 0x8d4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_info 0x00002362 0xd2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.debug_info 0x00002434 0xd2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.debug_info 0x00002506 0xd2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.debug_info 0x000025d8 0xd8 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.debug_info 0x000026b0 0x7f8 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_info 0x00002ea8 0xfe /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_info 0x00002fa6 0xcf /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_info 0x00003075 0xce /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
.debug_abbrev 0x00000000 0xb5b
*(.debug_abbrev)
.debug_abbrev 0x00000000 0x12 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.debug_abbrev 0x00000012 0x174 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_abbrev 0x00000186 0x100 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_abbrev 0x00000286 0x155 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_abbrev 0x000003db 0x190 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_abbrev 0x0000056b 0x13b /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.debug_abbrev 0x000006a6 0x1f4 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_abbrev 0x0000089a 0x14 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.debug_abbrev 0x000008ae 0x14 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.debug_abbrev 0x000008c2 0x14 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.debug_abbrev 0x000008d6 0x14 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.debug_abbrev 0x000008ea 0x139 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_abbrev 0x00000a23 0x9a /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_abbrev 0x00000abd 0x8c /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_abbrev 0x00000b49 0x12 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
.debug_line 0x00000000 0x144a
*(.debug_line .debug_line.* .debug_line_end)
.debug_line 0x00000000 0xff /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crt0.o
.debug_line 0x000000ff 0x237 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_line 0x00000336 0x162 /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_line 0x00000498 0x37b /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_line 0x00000813 0x190 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_line.text.exit
0x000009a3 0x28 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_line_end
0x000009cb 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_line 0x000009cb 0x12f /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.debug_line_end
0x00000afa 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
.debug_line 0x00000afa 0x181 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_line.text.__call_exitprocs
0x00000c7b 0x11d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_line_end
0x00000d98 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_line 0x00000d98 0x84 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_bss.o)
.debug_line 0x00000e1c 0x90 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_movedata.o)
.debug_line 0x00000eac 0x7e /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libcrt.a(crt_main.o)
.debug_line 0x00000f2a 0xb3 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libnosys.a(nosyscalls.o)
.debug_line 0x00000fdd 0x139 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_line.text.__errno
0x00001116 0x16 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_line_end
0x0000112c 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_line 0x0000112c 0x118 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_line.text.memmove
0x00001244 0x40 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_line_end
0x00001284 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_line 0x00001284 0x117 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_line.text.memset
0x0000139b 0x22 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_line_end
0x000013bd 0x0 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_line 0x000013bd 0x8d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/crtn.o
.debug_frame 0x00000000 0x2d8
*(.debug_frame)
.debug_frame 0x00000000 0x90 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_frame 0x00000090 0x7c /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_frame 0x0000010c 0xe4 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_frame 0x000001f0 0x30 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_frame 0x00000220 0x40 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_frame 0x00000260 0x24 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
.debug_frame 0x00000284 0x30 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_frame 0x000002b4 0x24 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_str 0x00000000 0xaee
*(.debug_str)
.debug_str 0x00000000 0x1c6 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
0x20c (size before relaxing)
.debug_str 0x000001c6 0x8b /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
0x1f3 (size before relaxing)
.debug_str 0x00000251 0x1f5 /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
0x371 (size before relaxing)
.debug_str 0x00000446 0x4a2 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
0x570 (size before relaxing)
.debug_str 0x000008e8 0x90 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-impure.o)
0x5a7 (size before relaxing)
.debug_str 0x00000978 0x6e /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
0x594 (size before relaxing)
.debug_str 0x000009e6 0x4c /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-errno.o)
0x550 (size before relaxing)
.debug_str 0x00000a32 0x6f /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
0x1b9 (size before relaxing)
.debug_str 0x00000aa1 0x4d /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
0x19e (size before relaxing)
.debug_loc 0x00000000 0x8ef
*(.debug_loc)
.debug_loc 0x00000000 0x3b5 /home/reviewer/alpaca-oopsla2017/ext/libmspprintf/bld/gcc/libmspprintf.a(printf.o)
.debug_loc 0x000003b5 0xbf /home/reviewer/alpaca-oopsla2017/ext/libmspconsole/bld/gcc/libmspconsole.a(io.o)
.debug_loc 0x00000474 0x14c /home/reviewer/alpaca-oopsla2017/ext/libwispbase/bld/gcc/libwispbase.a(uart.o)
.debug_loc 0x000005c0 0x1e /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-exit.o)
.debug_loc 0x000005de 0xde /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-__call_atexit.o)
.debug_loc 0x000006bc 0x1ac /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memmove.o)
.debug_loc 0x00000868 0x87 /opt/ti/mspgcc/bin/../lib/gcc/msp430-elf/4.9.1/../../../../msp430-elf/lib/libc.a(lib_a-memset.o)
.debug_macinfo
*(.debug_macinfo)
.debug_weaknames
*(.debug_weaknames)
.debug_funcnames
*(.debug_funcnames)
.debug_typenames
*(.debug_typenames)