dwp_test_1.s 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661
  1. .file "dwp_test_1.cc"
  2. .text
  3. .Ltext0:
  4. .section .text._Z4f13iv,"axG",@progbits,_Z4f13iv,comdat
  5. .weak _Z4f13iv
  6. .type _Z4f13iv, @function
  7. _Z4f13iv:
  8. .LFB0:
  9. .file 1 "dwp_test.h"
  10. .loc 1 70 0
  11. .cfi_startproc
  12. pushq %rbp
  13. .cfi_def_cfa_offset 16
  14. .cfi_offset 6, -16
  15. movq %rsp, %rbp
  16. .cfi_def_cfa_register 6
  17. .loc 1 70 0
  18. popq %rbp
  19. .cfi_def_cfa 7, 8
  20. ret
  21. .cfi_endproc
  22. .LFE0:
  23. .size _Z4f13iv, .-_Z4f13iv
  24. .text
  25. .align 2
  26. .globl _ZN2C19testcase1Ev
  27. .type _ZN2C19testcase1Ev, @function
  28. _ZN2C19testcase1Ev:
  29. .LFB1:
  30. .file 2 "dwp_test_1.cc"
  31. .loc 2 31 0
  32. .cfi_startproc
  33. pushq %rbp
  34. .cfi_def_cfa_offset 16
  35. .cfi_offset 6, -16
  36. movq %rsp, %rbp
  37. .cfi_def_cfa_register 6
  38. subq $16, %rsp
  39. movq %rdi, -8(%rbp)
  40. .loc 2 32 0
  41. movq -8(%rbp), %rax
  42. movq %rax, %rdi
  43. call _ZN2C14t1_2Ev
  44. cmpl $123, %eax
  45. sete %al
  46. .loc 2 33 0
  47. leave
  48. .cfi_def_cfa 7, 8
  49. ret
  50. .cfi_endproc
  51. .LFE1:
  52. .size _ZN2C19testcase1Ev, .-_ZN2C19testcase1Ev
  53. .align 2
  54. .globl _ZN2C19testcase2Ev
  55. .type _ZN2C19testcase2Ev, @function
  56. _ZN2C19testcase2Ev:
  57. .LFB2:
  58. .loc 2 39 0
  59. .cfi_startproc
  60. pushq %rbp
  61. .cfi_def_cfa_offset 16
  62. .cfi_offset 6, -16
  63. movq %rsp, %rbp
  64. .cfi_def_cfa_register 6
  65. movq %rdi, -8(%rbp)
  66. .loc 2 40 0
  67. movl v2(%rip), %eax
  68. cmpl $456, %eax
  69. sete %al
  70. .loc 2 41 0
  71. popq %rbp
  72. .cfi_def_cfa 7, 8
  73. ret
  74. .cfi_endproc
  75. .LFE2:
  76. .size _ZN2C19testcase2Ev, .-_ZN2C19testcase2Ev
  77. .align 2
  78. .globl _ZN2C19testcase3Ev
  79. .type _ZN2C19testcase3Ev, @function
  80. _ZN2C19testcase3Ev:
  81. .LFB3:
  82. .loc 2 47 0
  83. .cfi_startproc
  84. pushq %rbp
  85. .cfi_def_cfa_offset 16
  86. .cfi_offset 6, -16
  87. movq %rsp, %rbp
  88. .cfi_def_cfa_register 6
  89. movq %rdi, -8(%rbp)
  90. .loc 2 48 0
  91. movl v3(%rip), %eax
  92. cmpl $789, %eax
  93. sete %al
  94. .loc 2 49 0
  95. popq %rbp
  96. .cfi_def_cfa 7, 8
  97. ret
  98. .cfi_endproc
  99. .LFE3:
  100. .size _ZN2C19testcase3Ev, .-_ZN2C19testcase3Ev
  101. .align 2
  102. .globl _ZN2C19testcase4Ev
  103. .type _ZN2C19testcase4Ev, @function
  104. _ZN2C19testcase4Ev:
  105. .LFB4:
  106. .loc 2 55 0
  107. .cfi_startproc
  108. pushq %rbp
  109. .cfi_def_cfa_offset 16
  110. .cfi_offset 6, -16
  111. movq %rsp, %rbp
  112. .cfi_def_cfa_register 6
  113. movq %rdi, -8(%rbp)
  114. .loc 2 56 0
  115. movzbl v4+5(%rip), %eax
  116. cmpb $44, %al
  117. sete %al
  118. .loc 2 57 0
  119. popq %rbp
  120. .cfi_def_cfa 7, 8
  121. ret
  122. .cfi_endproc
  123. .LFE4:
  124. .size _ZN2C19testcase4Ev, .-_ZN2C19testcase4Ev
  125. .align 2
  126. .globl _ZN2C29testcase1Ev
  127. .type _ZN2C29testcase1Ev, @function
  128. _ZN2C29testcase1Ev:
  129. .LFB5:
  130. .loc 2 63 0
  131. .cfi_startproc
  132. pushq %rbp
  133. .cfi_def_cfa_offset 16
  134. .cfi_offset 6, -16
  135. movq %rsp, %rbp
  136. .cfi_def_cfa_register 6
  137. movq %rdi, -8(%rbp)
  138. .loc 2 64 0
  139. movzbl v5+7(%rip), %eax
  140. cmpb $119, %al
  141. sete %al
  142. .loc 2 65 0
  143. popq %rbp
  144. .cfi_def_cfa 7, 8
  145. ret
  146. .cfi_endproc
  147. .LFE5:
  148. .size _ZN2C29testcase1Ev, .-_ZN2C29testcase1Ev
  149. .globl p6
  150. .data
  151. .align 8
  152. .type p6, @object
  153. .size p6, 8
  154. p6:
  155. .quad v2
  156. .text
  157. .align 2
  158. .globl _ZN2C29testcase2Ev
  159. .type _ZN2C29testcase2Ev, @function
  160. _ZN2C29testcase2Ev:
  161. .LFB6:
  162. .loc 2 73 0
  163. .cfi_startproc
  164. pushq %rbp
  165. .cfi_def_cfa_offset 16
  166. .cfi_offset 6, -16
  167. movq %rsp, %rbp
  168. .cfi_def_cfa_register 6
  169. movq %rdi, -8(%rbp)
  170. .loc 2 74 0
  171. movq p6(%rip), %rax
  172. movl (%rax), %eax
  173. cmpl $456, %eax
  174. sete %al
  175. .loc 2 75 0
  176. popq %rbp
  177. .cfi_def_cfa 7, 8
  178. ret
  179. .cfi_endproc
  180. .LFE6:
  181. .size _ZN2C29testcase2Ev, .-_ZN2C29testcase2Ev
  182. .globl p7
  183. .data
  184. .align 8
  185. .type p7, @object
  186. .size p7, 8
  187. p7:
  188. .quad v3
  189. .text
  190. .align 2
  191. .globl _ZN2C29testcase3Ev
  192. .type _ZN2C29testcase3Ev, @function
  193. _ZN2C29testcase3Ev:
  194. .LFB7:
  195. .loc 2 83 0
  196. .cfi_startproc
  197. pushq %rbp
  198. .cfi_def_cfa_offset 16
  199. .cfi_offset 6, -16
  200. movq %rsp, %rbp
  201. .cfi_def_cfa_register 6
  202. movq %rdi, -8(%rbp)
  203. .loc 2 84 0
  204. movq p7(%rip), %rax
  205. movl (%rax), %eax
  206. cmpl $789, %eax
  207. sete %al
  208. .loc 2 85 0
  209. popq %rbp
  210. .cfi_def_cfa 7, 8
  211. ret
  212. .cfi_endproc
  213. .LFE7:
  214. .size _ZN2C29testcase3Ev, .-_ZN2C29testcase3Ev
  215. .globl p8
  216. .data
  217. .align 8
  218. .type p8, @object
  219. .size p8, 8
  220. p8:
  221. .quad v4+6
  222. .text
  223. .align 2
  224. .globl _ZN2C29testcase4Ev
  225. .type _ZN2C29testcase4Ev, @function
  226. _ZN2C29testcase4Ev:
  227. .LFB8:
  228. .loc 2 93 0
  229. .cfi_startproc
  230. pushq %rbp
  231. .cfi_def_cfa_offset 16
  232. .cfi_offset 6, -16
  233. movq %rsp, %rbp
  234. .cfi_def_cfa_register 6
  235. movq %rdi, -8(%rbp)
  236. .loc 2 94 0
  237. movq p8(%rip), %rax
  238. movzbl (%rax), %eax
  239. cmpb $32, %al
  240. sete %al
  241. .loc 2 95 0
  242. popq %rbp
  243. .cfi_def_cfa 7, 8
  244. ret
  245. .cfi_endproc
  246. .LFE8:
  247. .size _ZN2C29testcase4Ev, .-_ZN2C29testcase4Ev
  248. .globl p9
  249. .data
  250. .align 8
  251. .type p9, @object
  252. .size p9, 8
  253. p9:
  254. .quad v5+8
  255. .text
  256. .align 2
  257. .globl _ZN2C39testcase1Ev
  258. .type _ZN2C39testcase1Ev, @function
  259. _ZN2C39testcase1Ev:
  260. .LFB9:
  261. .loc 2 103 0
  262. .cfi_startproc
  263. pushq %rbp
  264. .cfi_def_cfa_offset 16
  265. .cfi_offset 6, -16
  266. movq %rsp, %rbp
  267. .cfi_def_cfa_register 6
  268. movq %rdi, -8(%rbp)
  269. .loc 2 104 0
  270. movq p9(%rip), %rax
  271. movzbl (%rax), %eax
  272. cmpb $111, %al
  273. sete %al
  274. .loc 2 105 0
  275. popq %rbp
  276. .cfi_def_cfa 7, 8
  277. ret
  278. .cfi_endproc
  279. .LFE9:
  280. .size _ZN2C39testcase1Ev, .-_ZN2C39testcase1Ev
  281. .globl pfn
  282. .data
  283. .align 8
  284. .type pfn, @object
  285. .size pfn, 8
  286. pfn:
  287. .quad _Z3f10v
  288. .text
  289. .align 2
  290. .globl _ZN2C39testcase2Ev
  291. .type _ZN2C39testcase2Ev, @function
  292. _ZN2C39testcase2Ev:
  293. .LFB10:
  294. .loc 2 113 0
  295. .cfi_startproc
  296. pushq %rbp
  297. .cfi_def_cfa_offset 16
  298. .cfi_offset 6, -16
  299. movq %rsp, %rbp
  300. .cfi_def_cfa_register 6
  301. subq $16, %rsp
  302. movq %rdi, -8(%rbp)
  303. .loc 2 114 0
  304. movq pfn(%rip), %rax
  305. call *%rax
  306. cmpl $135, %eax
  307. sete %al
  308. .loc 2 115 0
  309. leave
  310. .cfi_def_cfa 7, 8
  311. ret
  312. .cfi_endproc
  313. .LFE10:
  314. .size _ZN2C39testcase2Ev, .-_ZN2C39testcase2Ev
  315. .globl _Z4f11av
  316. .type _Z4f11av, @function
  317. _Z4f11av:
  318. .LFB11:
  319. .loc 2 121 0
  320. .cfi_startproc
  321. pushq %rbp
  322. .cfi_def_cfa_offset 16
  323. .cfi_offset 6, -16
  324. movq %rsp, %rbp
  325. .cfi_def_cfa_register 6
  326. .loc 2 122 0
  327. movl $246, %eax
  328. .loc 2 123 0
  329. popq %rbp
  330. .cfi_def_cfa 7, 8
  331. ret
  332. .cfi_endproc
  333. .LFE11:
  334. .size _Z4f11av, .-_Z4f11av
  335. .align 2
  336. .globl _ZN2C39testcase3Ev
  337. .type _ZN2C39testcase3Ev, @function
  338. _ZN2C39testcase3Ev:
  339. .LFB12:
  340. .loc 2 127 0
  341. .cfi_startproc
  342. pushq %rbp
  343. .cfi_def_cfa_offset 16
  344. .cfi_offset 6, -16
  345. movq %rsp, %rbp
  346. .cfi_def_cfa_register 6
  347. subq $16, %rsp
  348. movq %rdi, -8(%rbp)
  349. .loc 2 128 0
  350. movl $_Z4f11av, %edi
  351. call _Z4f11bPFivE
  352. cmpl $246, %eax
  353. sete %al
  354. .loc 2 129 0
  355. leave
  356. .cfi_def_cfa 7, 8
  357. ret
  358. .cfi_endproc
  359. .LFE12:
  360. .size _ZN2C39testcase3Ev, .-_ZN2C39testcase3Ev
  361. .globl _Z3t12v
  362. .type _Z3t12v, @function
  363. _Z3t12v:
  364. .LFB13:
  365. .loc 2 135 0
  366. .cfi_startproc
  367. pushq %rbp
  368. .cfi_def_cfa_offset 16
  369. .cfi_offset 6, -16
  370. movq %rsp, %rbp
  371. .cfi_def_cfa_register 6
  372. .loc 2 136 0
  373. movl $c3, %edi
  374. call _ZN2C32f4Ev
  375. cmpq $_Z3t12v, %rax
  376. sete %al
  377. .loc 2 137 0
  378. popq %rbp
  379. .cfi_def_cfa 7, 8
  380. ret
  381. .cfi_endproc
  382. .LFE13:
  383. .size _Z3t12v, .-_Z3t12v
  384. .globl _Z3t13v
  385. .type _Z3t13v, @function
  386. _Z3t13v:
  387. .LFB14:
  388. .loc 2 143 0
  389. .cfi_startproc
  390. pushq %rbp
  391. .cfi_def_cfa_offset 16
  392. .cfi_offset 6, -16
  393. movq %rsp, %rbp
  394. .cfi_def_cfa_register 6
  395. .loc 2 144 0
  396. call _Z3f13v
  397. cmpq $_Z4f13iv, %rax
  398. sete %al
  399. .loc 2 145 0
  400. popq %rbp
  401. .cfi_def_cfa 7, 8
  402. ret
  403. .cfi_endproc
  404. .LFE14:
  405. .size _Z3t13v, .-_Z3t13v
  406. .section .rodata
  407. .LC0:
  408. .string "test string constant"
  409. .text
  410. .globl _Z3t14v
  411. .type _Z3t14v, @function
  412. _Z3t14v:
  413. .LFB15:
  414. .loc 2 151 0
  415. .cfi_startproc
  416. pushq %rbp
  417. .cfi_def_cfa_offset 16
  418. .cfi_offset 6, -16
  419. movq %rsp, %rbp
  420. .cfi_def_cfa_register 6
  421. subq $16, %rsp
  422. .LBB2:
  423. .loc 2 152 0
  424. movq $.LC0, -8(%rbp)
  425. .loc 2 153 0
  426. call _Z3f14v
  427. movq %rax, -16(%rbp)
  428. .loc 2 154 0
  429. jmp .L31
  430. .L33:
  431. .loc 2 155 0
  432. movq -8(%rbp), %rax
  433. movzbl (%rax), %edx
  434. movq -16(%rbp), %rax
  435. movzbl (%rax), %eax
  436. cmpb %al, %dl
  437. setne %al
  438. addq $1, -8(%rbp)
  439. addq $1, -16(%rbp)
  440. testb %al, %al
  441. je .L31
  442. .loc 2 156 0
  443. movl $0, %eax
  444. jmp .L32
  445. .L31:
  446. .loc 2 154 0 discriminator 1
  447. movq -8(%rbp), %rax
  448. movzbl (%rax), %eax
  449. testb %al, %al
  450. setne %al
  451. testb %al, %al
  452. jne .L33
  453. .loc 2 157 0
  454. movq -16(%rbp), %rax
  455. movzbl (%rax), %eax
  456. testb %al, %al
  457. sete %al
  458. .L32:
  459. .LBE2:
  460. .loc 2 158 0
  461. leave
  462. .cfi_def_cfa 7, 8
  463. ret
  464. .cfi_endproc
  465. .LFE15:
  466. .size _Z3t14v, .-_Z3t14v
  467. .section .rodata
  468. .align 8
  469. .LC1:
  470. .string "t"
  471. .string ""
  472. .string ""
  473. .string "e"
  474. .string ""
  475. .string ""
  476. .string "s"
  477. .string ""
  478. .string ""
  479. .string "t"
  480. .string ""
  481. .string ""
  482. .string " "
  483. .string ""
  484. .string ""
  485. .string "w"
  486. .string ""
  487. .string ""
  488. .string "i"
  489. .string ""
  490. .string ""
  491. .string "d"
  492. .string ""
  493. .string ""
  494. .string "e"
  495. .string ""
  496. .string ""
  497. .string " "
  498. .string ""
  499. .string ""
  500. .string "s"
  501. .string ""
  502. .string ""
  503. .string "t"
  504. .string ""
  505. .string ""
  506. .string "r"
  507. .string ""
  508. .string ""
  509. .string "i"
  510. .string ""
  511. .string ""
  512. .string "n"
  513. .string ""
  514. .string ""
  515. .string "g"
  516. .string ""
  517. .string ""
  518. .string " "
  519. .string ""
  520. .string ""
  521. .string "c"
  522. .string ""
  523. .string ""
  524. .string "o"
  525. .string ""
  526. .string ""
  527. .string "n"
  528. .string ""
  529. .string ""
  530. .string "s"
  531. .string ""
  532. .string ""
  533. .string "t"
  534. .string ""
  535. .string ""
  536. .string "a"
  537. .string ""
  538. .string ""
  539. .string "n"
  540. .string ""
  541. .string ""
  542. .string "t"
  543. .string ""
  544. .string ""
  545. .string ""
  546. .string ""
  547. .string ""
  548. .string ""
  549. .text
  550. .globl _Z3t15v
  551. .type _Z3t15v, @function
  552. _Z3t15v:
  553. .LFB16:
  554. .loc 2 164 0
  555. .cfi_startproc
  556. pushq %rbp
  557. .cfi_def_cfa_offset 16
  558. .cfi_offset 6, -16
  559. movq %rsp, %rbp
  560. .cfi_def_cfa_register 6
  561. subq $16, %rsp
  562. .LBB3:
  563. .loc 2 165 0
  564. movq $.LC1, -8(%rbp)
  565. .loc 2 166 0
  566. call _Z3f15v
  567. movq %rax, -16(%rbp)
  568. .loc 2 167 0
  569. jmp .L35
  570. .L37:
  571. .loc 2 168 0
  572. movq -8(%rbp), %rax
  573. movl (%rax), %edx
  574. movq -16(%rbp), %rax
  575. movl (%rax), %eax
  576. cmpl %eax, %edx
  577. setne %al
  578. addq $4, -8(%rbp)
  579. addq $4, -16(%rbp)
  580. testb %al, %al
  581. je .L35
  582. .loc 2 169 0
  583. movl $0, %eax
  584. jmp .L36
  585. .L35:
  586. .loc 2 167 0 discriminator 1
  587. movq -8(%rbp), %rax
  588. movl (%rax), %eax
  589. testl %eax, %eax
  590. setne %al
  591. testb %al, %al
  592. jne .L37
  593. .loc 2 170 0
  594. movq -16(%rbp), %rax
  595. movl (%rax), %eax
  596. testl %eax, %eax
  597. sete %al
  598. .L36:
  599. .LBE3:
  600. .loc 2 171 0
  601. leave
  602. .cfi_def_cfa 7, 8
  603. ret
  604. .cfi_endproc
  605. .LFE16:
  606. .size _Z3t15v, .-_Z3t15v
  607. .globl _Z3t16v
  608. .type _Z3t16v, @function
  609. _Z3t16v:
  610. .LFB17:
  611. .loc 2 177 0
  612. .cfi_startproc
  613. pushq %rbp
  614. .cfi_def_cfa_offset 16
  615. .cfi_offset 6, -16
  616. movq %rsp, %rbp
  617. .cfi_def_cfa_register 6
  618. .loc 2 178 0
  619. call _Z3f10v
  620. cmpl $135, %eax
  621. sete %al
  622. .loc 2 179 0
  623. popq %rbp
  624. .cfi_def_cfa 7, 8
  625. ret
  626. .cfi_endproc
  627. .LFE17:
  628. .size _Z3t16v, .-_Z3t16v
  629. .globl _Z3t17v
  630. .type _Z3t17v, @function
  631. _Z3t17v:
  632. .LFB18:
  633. .loc 2 185 0
  634. .cfi_startproc
  635. pushq %rbp
  636. .cfi_def_cfa_offset 16
  637. .cfi_offset 6, -16
  638. movq %rsp, %rbp
  639. .cfi_def_cfa_register 6
  640. .LBB4:
  641. .loc 2 186 0
  642. movb $97, -1(%rbp)
  643. .LBB5:
  644. .loc 2 187 0
  645. movl $0, -8(%rbp)
  646. jmp .L41
  647. .L45:
  648. .loc 2 189 0
  649. movl -8(%rbp), %eax
  650. cltq
  651. movq t17data(,%rax,8), %rax
  652. movzbl (%rax), %eax
  653. cmpb -1(%rbp), %al
  654. jne .L42
  655. .loc 2 189 0 is_stmt 0 discriminator 1
  656. movl -8(%rbp), %eax
  657. cltq
  658. movq t17data(,%rax,8), %rax
  659. addq $1, %rax
  660. movzbl (%rax), %eax
  661. testb %al, %al
  662. je .L43
  663. .L42:
  664. .loc 2 190 0 is_stmt 1
  665. movl $0, %eax
  666. jmp .L44
  667. .L43:
  668. .loc 2 191 0
  669. addb $1, -1(%rbp)
  670. .loc 2 187 0
  671. addl $1, -8(%rbp)
  672. .L41:
  673. .loc 2 187 0 is_stmt 0 discriminator 1
  674. cmpl $4, -8(%rbp)
  675. setle %al
  676. testb %al, %al
  677. jne .L45
  678. .LBE5:
  679. .loc 2 193 0 is_stmt 1
  680. movl $1, %eax
  681. .L44:
  682. .LBE4:
  683. .loc 2 194 0
  684. popq %rbp
  685. .cfi_def_cfa 7, 8
  686. ret
  687. .cfi_endproc
  688. .LFE18:
  689. .size _Z3t17v, .-_Z3t17v
  690. .globl _Z3t18v
  691. .type _Z3t18v, @function
  692. _Z3t18v:
  693. .LFB19:
  694. .loc 2 200 0
  695. .cfi_startproc
  696. pushq %rbp
  697. .cfi_def_cfa_offset 16
  698. .cfi_offset 6, -16
  699. movq %rsp, %rbp
  700. .cfi_def_cfa_register 6
  701. subq $16, %rsp
  702. .LBB6:
  703. .loc 2 201 0
  704. movb $97, -1(%rbp)
  705. .LBB7:
  706. .loc 2 202 0
  707. movl $0, -8(%rbp)
  708. jmp .L47
  709. .L51:
  710. .LBB8:
  711. .loc 2 204 0
  712. movl -8(%rbp), %eax
  713. movl %eax, %edi
  714. call _Z3f18i
  715. movq %rax, -16(%rbp)
  716. .loc 2 205 0
  717. movq -16(%rbp), %rax
  718. movzbl (%rax), %eax
  719. cmpb -1(%rbp), %al
  720. jne .L48
  721. .loc 2 205 0 is_stmt 0 discriminator 1
  722. movq -16(%rbp), %rax
  723. addq $1, %rax
  724. movzbl (%rax), %eax
  725. testb %al, %al
  726. je .L49
  727. .L48:
  728. .loc 2 206 0 is_stmt 1
  729. movl $0, %eax
  730. jmp .L50
  731. .L49:
  732. .loc 2 207 0
  733. addb $1, -1(%rbp)
  734. .LBE8:
  735. .loc 2 202 0
  736. addl $1, -8(%rbp)
  737. .L47:
  738. .loc 2 202 0 is_stmt 0 discriminator 1
  739. cmpl $4, -8(%rbp)
  740. setle %al
  741. testb %al, %al
  742. jne .L51
  743. .LBE7:
  744. .loc 2 209 0 is_stmt 1
  745. movl $1, %eax
  746. .L50:
  747. .LBE6:
  748. .loc 2 210 0
  749. leave
  750. .cfi_def_cfa 7, 8
  751. ret
  752. .cfi_endproc
  753. .LFE19:
  754. .size _Z3t18v, .-_Z3t18v
  755. .Letext0:
  756. .section .debug_types.dwo,"G",@progbits,wt.bb2916f0c1bd34b5,comdat
  757. .long 0xc1
  758. .value 0x4
  759. .long .Ldebug_abbrev0
  760. .byte 0x8
  761. .byte 0xbb
  762. .byte 0x29
  763. .byte 0x16
  764. .byte 0xf0
  765. .byte 0xc1
  766. .byte 0xbd
  767. .byte 0x34
  768. .byte 0xb5
  769. .long 0x25
  770. .uleb128 0x1
  771. .byte 0x4
  772. .byte 0x8a
  773. .byte 0xda
  774. .byte 0x59
  775. .byte 0x6e
  776. .byte 0x4d
  777. .byte 0x5c
  778. .byte 0xa
  779. .byte 0x88
  780. .long .Lskeleton_debug_line0
  781. .uleb128 0x2
  782. .string "C3"
  783. .byte 0x4
  784. .byte 0x1
  785. .byte 0x2f
  786. .long 0xa4
  787. .uleb128 0x3
  788. .uleb128 0x6
  789. .byte 0x1
  790. .byte 0x36
  791. .long 0xa4
  792. .byte 0
  793. .byte 0x1
  794. .uleb128 0x4
  795. .uleb128 0
  796. .byte 0x1
  797. .byte 0x32
  798. .uleb128 0x2
  799. .long 0xab
  800. .byte 0x1
  801. .long 0x4c
  802. .long 0x52
  803. .uleb128 0x5
  804. .long 0xb3
  805. .byte 0
  806. .uleb128 0x4
  807. .uleb128 0x1
  808. .byte 0x1
  809. .byte 0x33
  810. .uleb128 0x3
  811. .long 0xab
  812. .byte 0x1
  813. .long 0x64
  814. .long 0x6a
  815. .uleb128 0x5
  816. .long 0xb3
  817. .byte 0
  818. .uleb128 0x4
  819. .uleb128 0x4
  820. .byte 0x1
  821. .byte 0x34
  822. .uleb128 0x5
  823. .long 0xab
  824. .byte 0x1
  825. .long 0x7c
  826. .long 0x82
  827. .uleb128 0x5
  828. .long 0xb3
  829. .byte 0
  830. .uleb128 0x6
  831. .string "f4"
  832. .byte 0x1
  833. .byte 0x35
  834. .string "_ZN2C32f4Ev"
  835. .long 0xb9
  836. .byte 0x1
  837. .long 0x9d
  838. .uleb128 0x5
  839. .long 0xb3
  840. .byte 0
  841. .byte 0
  842. .uleb128 0x7
  843. .byte 0x4
  844. .byte 0x5
  845. .string "int"
  846. .uleb128 0x7
  847. .byte 0x1
  848. .byte 0x2
  849. .string "bool"
  850. .uleb128 0x8
  851. .byte 0x8
  852. .long 0x25
  853. .uleb128 0x8
  854. .byte 0x8
  855. .long 0xbf
  856. .uleb128 0x9
  857. .long 0xab
  858. .byte 0
  859. .section .debug_types,"G",@progbits,wt.bb2916f0c1bd34b5,comdat
  860. .long 0x6e
  861. .value 0x4
  862. .long .Lskeleton_debug_abbrev0
  863. .byte 0x8
  864. .byte 0xbb
  865. .byte 0x29
  866. .byte 0x16
  867. .byte 0xf0
  868. .byte 0xc1
  869. .byte 0xbd
  870. .byte 0x34
  871. .byte 0xb5
  872. .long 0
  873. .uleb128 0x2
  874. .string "/home/ccoutant/opensource/binutils-git/binutils/gold/testsuite"
  875. .string "dwp_test_1.dwo"
  876. .long .Ldebug_pubnames0
  877. .long .Ldebug_pubtypes0
  878. .long .Ldebug_addr0
  879. .section .debug_types.dwo,"G",@progbits,wt.66526f88bcc798ab,comdat
  880. .long 0xa9
  881. .value 0x4
  882. .long .Ldebug_abbrev0
  883. .byte 0x8
  884. .byte 0x66
  885. .byte 0x52
  886. .byte 0x6f
  887. .byte 0x88
  888. .byte 0xbc
  889. .byte 0xc7
  890. .byte 0x98
  891. .byte 0xab
  892. .long 0x25
  893. .uleb128 0x1
  894. .byte 0x4
  895. .byte 0x4b
  896. .byte 0xf9
  897. .byte 0xce
  898. .byte 0xbf
  899. .byte 0xd8
  900. .byte 0xf0
  901. .byte 0x4a
  902. .byte 0xae
  903. .long .Lskeleton_debug_line0
  904. .uleb128 0x2
  905. .string "C2"
  906. .byte 0x4
  907. .byte 0x1
  908. .byte 0x25
  909. .long 0x97
  910. .uleb128 0x3
  911. .uleb128 0x6
  912. .byte 0x1
  913. .byte 0x2c
  914. .long 0x97
  915. .byte 0
  916. .byte 0x1
  917. .uleb128 0x4
  918. .uleb128 0
  919. .byte 0x1
  920. .byte 0x28
  921. .uleb128 0x7
  922. .long 0x9e
  923. .byte 0x1
  924. .long 0x4c
  925. .long 0x52
  926. .uleb128 0x5
  927. .long 0xa6
  928. .byte 0
  929. .uleb128 0x4
  930. .uleb128 0x1
  931. .byte 0x1
  932. .byte 0x29
  933. .uleb128 0x8
  934. .long 0x9e
  935. .byte 0x1
  936. .long 0x64
  937. .long 0x6a
  938. .uleb128 0x5
  939. .long 0xa6
  940. .byte 0
  941. .uleb128 0x4
  942. .uleb128 0x4
  943. .byte 0x1
  944. .byte 0x2a
  945. .uleb128 0x9
  946. .long 0x9e
  947. .byte 0x1
  948. .long 0x7c
  949. .long 0x82
  950. .uleb128 0x5
  951. .long 0xa6
  952. .byte 0
  953. .uleb128 0xa
  954. .uleb128 0xa
  955. .byte 0x1
  956. .byte 0x2b
  957. .uleb128 0xb
  958. .long 0x9e
  959. .byte 0x1
  960. .long 0x90
  961. .uleb128 0x5
  962. .long 0xa6
  963. .byte 0
  964. .byte 0
  965. .uleb128 0x7
  966. .byte 0x4
  967. .byte 0x5
  968. .string "int"
  969. .uleb128 0x7
  970. .byte 0x1
  971. .byte 0x2
  972. .string "bool"
  973. .uleb128 0x8
  974. .byte 0x8
  975. .long 0x25
  976. .byte 0
  977. .section .debug_types,"G",@progbits,wt.66526f88bcc798ab,comdat
  978. .long 0x6e
  979. .value 0x4
  980. .long .Lskeleton_debug_abbrev0
  981. .byte 0x8
  982. .byte 0x66
  983. .byte 0x52
  984. .byte 0x6f
  985. .byte 0x88
  986. .byte 0xbc
  987. .byte 0xc7
  988. .byte 0x98
  989. .byte 0xab
  990. .long 0
  991. .uleb128 0x2
  992. .string "/home/ccoutant/opensource/binutils-git/binutils/gold/testsuite"
  993. .string "dwp_test_1.dwo"
  994. .long .Ldebug_pubnames0
  995. .long .Ldebug_pubtypes0
  996. .long .Ldebug_addr0
  997. .section .debug_types.dwo,"G",@progbits,wt.c419a9b7a4a2fab5,comdat
  998. .long 0xf9
  999. .value 0x4
  1000. .long .Ldebug_abbrev0
  1001. .byte 0x8
  1002. .byte 0xc4
  1003. .byte 0x19
  1004. .byte 0xa9
  1005. .byte 0xb7
  1006. .byte 0xa4
  1007. .byte 0xa2
  1008. .byte 0xfa
  1009. .byte 0xb5
  1010. .long 0x25
  1011. .uleb128 0x1
  1012. .byte 0x4
  1013. .byte 0xe3
  1014. .byte 0xad
  1015. .byte 0x5
  1016. .byte 0x3b
  1017. .byte 0x75
  1018. .byte 0xeb
  1019. .byte 0xfb
  1020. .byte 0xc7
  1021. .long .Lskeleton_debug_line0
  1022. .uleb128 0x2
  1023. .string "C1"
  1024. .byte 0x4
  1025. .byte 0x1
  1026. .byte 0x19
  1027. .long 0xe7
  1028. .uleb128 0x3
  1029. .uleb128 0x6
  1030. .byte 0x1
  1031. .byte 0x22
  1032. .long 0xe7
  1033. .byte 0
  1034. .byte 0x1
  1035. .uleb128 0x4
  1036. .uleb128 0
  1037. .byte 0x1
  1038. .byte 0x1c
  1039. .uleb128 0xc
  1040. .long 0xee
  1041. .byte 0x1
  1042. .long 0x4c
  1043. .long 0x52
  1044. .uleb128 0x5
  1045. .long 0xf6
  1046. .byte 0
  1047. .uleb128 0xb
  1048. .string "t1a"
  1049. .byte 0x1
  1050. .byte 0x1d
  1051. .string "_ZN2C13t1aEv"
  1052. .long 0xee
  1053. .byte 0x1
  1054. .long 0x73
  1055. .long 0x79
  1056. .uleb128 0x5
  1057. .long 0xf6
  1058. .byte 0
  1059. .uleb128 0xb
  1060. .string "t1_2"
  1061. .byte 0x1
  1062. .byte 0x1e
  1063. .string "_ZN2C14t1_2Ev"
  1064. .long 0xe7
  1065. .byte 0x1
  1066. .long 0x9c
  1067. .long 0xa2
  1068. .uleb128 0x5
  1069. .long 0xf6
  1070. .byte 0
  1071. .uleb128 0x4
  1072. .uleb128 0x1
  1073. .byte 0x1
  1074. .byte 0x1f
  1075. .uleb128 0xd
  1076. .long 0xee
  1077. .byte 0x1
  1078. .long 0xb4
  1079. .long 0xba
  1080. .uleb128 0x5
  1081. .long 0xf6
  1082. .byte 0
  1083. .uleb128 0x4
  1084. .uleb128 0x4
  1085. .byte 0x1
  1086. .byte 0x20
  1087. .uleb128 0xe
  1088. .long 0xee
  1089. .byte 0x1
  1090. .long 0xcc
  1091. .long 0xd2
  1092. .uleb128 0x5
  1093. .long 0xf6
  1094. .byte 0
  1095. .uleb128 0xa
  1096. .uleb128 0xa
  1097. .byte 0x1
  1098. .byte 0x21
  1099. .uleb128 0xf
  1100. .long 0xee
  1101. .byte 0x1
  1102. .long 0xe0
  1103. .uleb128 0x5
  1104. .long 0xf6
  1105. .byte 0
  1106. .byte 0
  1107. .uleb128 0x7
  1108. .byte 0x4
  1109. .byte 0x5
  1110. .string "int"
  1111. .uleb128 0x7
  1112. .byte 0x1
  1113. .byte 0x2
  1114. .string "bool"
  1115. .uleb128 0x8
  1116. .byte 0x8
  1117. .long 0x25
  1118. .byte 0
  1119. .section .debug_types,"G",@progbits,wt.c419a9b7a4a2fab5,comdat
  1120. .long 0x6e
  1121. .value 0x4
  1122. .long .Lskeleton_debug_abbrev0
  1123. .byte 0x8
  1124. .byte 0xc4
  1125. .byte 0x19
  1126. .byte 0xa9
  1127. .byte 0xb7
  1128. .byte 0xa4
  1129. .byte 0xa2
  1130. .byte 0xfa
  1131. .byte 0xb5
  1132. .long 0
  1133. .uleb128 0x2
  1134. .string "/home/ccoutant/opensource/binutils-git/binutils/gold/testsuite"
  1135. .string "dwp_test_1.dwo"
  1136. .long .Ldebug_pubnames0
  1137. .long .Ldebug_pubtypes0
  1138. .long .Ldebug_addr0
  1139. .section .debug_info.dwo,"e",@progbits
  1140. .Ldebug_info0:
  1141. .long 0x5af
  1142. .value 0x4
  1143. .long .Ldebug_abbrev0
  1144. .byte 0x8
  1145. .uleb128 0xc
  1146. .string "GNU C++ 4.7.x-google 20120720 (prerelease)"
  1147. .byte 0x4
  1148. .string "dwp_test_1.cc"
  1149. .string "/home/ccoutant/opensource/binutils-git/binutils/gold/testsuite"
  1150. .byte 0x27
  1151. .byte 0x37
  1152. .byte 0xdc
  1153. .byte 0x2f
  1154. .byte 0x9
  1155. .byte 0xc6
  1156. .byte 0xf9
  1157. .byte 0x52
  1158. .uleb128 0xd
  1159. .string "C1"
  1160. .byte 0xc4
  1161. .byte 0x19
  1162. .byte 0xa9
  1163. .byte 0xb7
  1164. .byte 0xa4
  1165. .byte 0xa2
  1166. .byte 0xfa
  1167. .byte 0xb5
  1168. .long 0xc6
  1169. .uleb128 0xe
  1170. .uleb128 0
  1171. .byte 0x1
  1172. .byte 0x1c
  1173. .uleb128 0xc
  1174. .long 0xcd
  1175. .byte 0x1
  1176. .uleb128 0xe
  1177. .uleb128 0x1
  1178. .byte 0x1
  1179. .byte 0x1f
  1180. .uleb128 0xd
  1181. .long 0xcd
  1182. .byte 0x1
  1183. .uleb128 0xe
  1184. .uleb128 0x4
  1185. .byte 0x1
  1186. .byte 0x20
  1187. .uleb128 0xe
  1188. .long 0xcd
  1189. .byte 0x1
  1190. .uleb128 0xe
  1191. .uleb128 0xa
  1192. .byte 0x1
  1193. .byte 0x21
  1194. .uleb128 0xf
  1195. .long 0xcd
  1196. .byte 0x1
  1197. .byte 0
  1198. .uleb128 0x7
  1199. .byte 0x4
  1200. .byte 0x5
  1201. .string "int"
  1202. .uleb128 0x7
  1203. .byte 0x1
  1204. .byte 0x2
  1205. .string "bool"
  1206. .uleb128 0xf
  1207. .byte 0x8
  1208. .byte 0xc4
  1209. .byte 0x19
  1210. .byte 0xa9
  1211. .byte 0xb7
  1212. .byte 0xa4
  1213. .byte 0xa2
  1214. .byte 0xfa
  1215. .byte 0xb5
  1216. .uleb128 0xd
  1217. .string "C2"
  1218. .byte 0x66
  1219. .byte 0x52
  1220. .byte 0x6f
  1221. .byte 0x88
  1222. .byte 0xbc
  1223. .byte 0xc7
  1224. .byte 0x98
  1225. .byte 0xab
  1226. .long 0x118
  1227. .uleb128 0xe
  1228. .uleb128 0
  1229. .byte 0x1
  1230. .byte 0x28
  1231. .uleb128 0x7
  1232. .long 0xcd
  1233. .byte 0x1
  1234. .uleb128 0xe
  1235. .uleb128 0x1
  1236. .byte 0x1
  1237. .byte 0x29
  1238. .uleb128 0x8
  1239. .long 0xcd
  1240. .byte 0x1
  1241. .uleb128 0xe
  1242. .uleb128 0x4
  1243. .byte 0x1
  1244. .byte 0x2a
  1245. .uleb128 0x9
  1246. .long 0xcd
  1247. .byte 0x1
  1248. .uleb128 0xe
  1249. .uleb128 0xa
  1250. .byte 0x1
  1251. .byte 0x2b
  1252. .uleb128 0xb
  1253. .long 0xcd
  1254. .byte 0x1
  1255. .byte 0
  1256. .uleb128 0xf
  1257. .byte 0x8
  1258. .byte 0x66
  1259. .byte 0x52
  1260. .byte 0x6f
  1261. .byte 0x88
  1262. .byte 0xbc
  1263. .byte 0xc7
  1264. .byte 0x98
  1265. .byte 0xab
  1266. .uleb128 0xd
  1267. .string "C3"
  1268. .byte 0xbb
  1269. .byte 0x29
  1270. .byte 0x16
  1271. .byte 0xf0
  1272. .byte 0xc1
  1273. .byte 0xbd
  1274. .byte 0x34
  1275. .byte 0xb5
  1276. .long 0x151
  1277. .uleb128 0xe
  1278. .uleb128 0
  1279. .byte 0x1
  1280. .byte 0x32
  1281. .uleb128 0x2
  1282. .long 0xcd
  1283. .byte 0x1
  1284. .uleb128 0xe
  1285. .uleb128 0x1
  1286. .byte 0x1
  1287. .byte 0x33
  1288. .uleb128 0x3
  1289. .long 0xcd
  1290. .byte 0x1
  1291. .uleb128 0xe
  1292. .uleb128 0x4
  1293. .byte 0x1
  1294. .byte 0x34
  1295. .uleb128 0x5
  1296. .long 0xcd
  1297. .byte 0x1
  1298. .byte 0
  1299. .uleb128 0xf
  1300. .byte 0x8
  1301. .byte 0xbb
  1302. .byte 0x29
  1303. .byte 0x16
  1304. .byte 0xf0
  1305. .byte 0xc1
  1306. .byte 0xbd
  1307. .byte 0x34
  1308. .byte 0xb5
  1309. .uleb128 0x10
  1310. .string "f13i"
  1311. .byte 0x1
  1312. .byte 0x46
  1313. .string "_Z4f13iv"
  1314. .uleb128 0
  1315. .quad .LFE0-.LFB0
  1316. .uleb128 0x1
  1317. .byte 0x9c
  1318. .uleb128 0x11
  1319. .long 0x9d
  1320. .byte 0x2
  1321. .byte 0x1e
  1322. .uleb128 0x1
  1323. .quad .LFE1-.LFB1
  1324. .uleb128 0x1
  1325. .byte 0x9c
  1326. .long 0x191
  1327. .long 0x19b
  1328. .uleb128 0x12
  1329. .uleb128 0x10
  1330. .long 0x19b
  1331. .uleb128 0x2
  1332. .byte 0x91
  1333. .sleb128 -24
  1334. .byte 0
  1335. .uleb128 0x13
  1336. .long 0xd5
  1337. .uleb128 0x14
  1338. .long 0xa7
  1339. .byte 0x2
  1340. .byte 0x26
  1341. .uleb128 0x2
  1342. .quad .LFE2-.LFB2
  1343. .uleb128 0x1
  1344. .byte 0x9c
  1345. .long 0x1ba
  1346. .long 0x1c4
  1347. .uleb128 0x12
  1348. .uleb128 0x10
  1349. .long 0x19b
  1350. .uleb128 0x2
  1351. .byte 0x91
  1352. .sleb128 -24
  1353. .byte 0
  1354. .uleb128 0x14
  1355. .long 0xb1
  1356. .byte 0x2
  1357. .byte 0x2e
  1358. .uleb128 0x3
  1359. .quad .LFE3-.LFB3
  1360. .uleb128 0x1
  1361. .byte 0x9c
  1362. .long 0x1de
  1363. .long 0x1e8
  1364. .uleb128 0x12
  1365. .uleb128 0x10
  1366. .long 0x19b
  1367. .uleb128 0x2
  1368. .byte 0x91
  1369. .sleb128 -24
  1370. .byte 0
  1371. .uleb128 0x14
  1372. .long 0xbb
  1373. .byte 0x2
  1374. .byte 0x36
  1375. .uleb128 0x4
  1376. .quad .LFE4-.LFB4
  1377. .uleb128 0x1
  1378. .byte 0x9c
  1379. .long 0x202
  1380. .long 0x20c
  1381. .uleb128 0x12
  1382. .uleb128 0x10
  1383. .long 0x19b
  1384. .uleb128 0x2
  1385. .byte 0x91
  1386. .sleb128 -24
  1387. .byte 0
  1388. .uleb128 0x14
  1389. .long 0xef
  1390. .byte 0x2
  1391. .byte 0x3e
  1392. .uleb128 0x5
  1393. .quad .LFE5-.LFB5
  1394. .uleb128 0x1
  1395. .byte 0x9c
  1396. .long 0x226
  1397. .long 0x230
  1398. .uleb128 0x12
  1399. .uleb128 0x10
  1400. .long 0x230
  1401. .uleb128 0x2
  1402. .byte 0x91
  1403. .sleb128 -24
  1404. .byte 0
  1405. .uleb128 0x13
  1406. .long 0x118
  1407. .uleb128 0x14
  1408. .long 0xf9
  1409. .byte 0x2
  1410. .byte 0x48
  1411. .uleb128 0x6
  1412. .quad .LFE6-.LFB6
  1413. .uleb128 0x1
  1414. .byte 0x9c
  1415. .long 0x24f
  1416. .long 0x259
  1417. .uleb128 0x12
  1418. .uleb128 0x10
  1419. .long 0x230
  1420. .uleb128 0x2
  1421. .byte 0x91
  1422. .sleb128 -24
  1423. .byte 0
  1424. .uleb128 0x14
  1425. .long 0x103
  1426. .byte 0x2
  1427. .byte 0x52
  1428. .uleb128 0x7
  1429. .quad .LFE7-.LFB7
  1430. .uleb128 0x1
  1431. .byte 0x9c
  1432. .long 0x273
  1433. .long 0x27d
  1434. .uleb128 0x12
  1435. .uleb128 0x10
  1436. .long 0x230
  1437. .uleb128 0x2
  1438. .byte 0x91
  1439. .sleb128 -24
  1440. .byte 0
  1441. .uleb128 0x14
  1442. .long 0x10d
  1443. .byte 0x2
  1444. .byte 0x5c
  1445. .uleb128 0x8
  1446. .quad .LFE8-.LFB8
  1447. .uleb128 0x1
  1448. .byte 0x9c
  1449. .long 0x297
  1450. .long 0x2a1
  1451. .uleb128 0x12
  1452. .uleb128 0x10
  1453. .long 0x230
  1454. .uleb128 0x2
  1455. .byte 0x91
  1456. .sleb128 -24
  1457. .byte 0
  1458. .uleb128 0x14
  1459. .long 0x132
  1460. .byte 0x2
  1461. .byte 0x66
  1462. .uleb128 0x9
  1463. .quad .LFE9-.LFB9
  1464. .uleb128 0x1
  1465. .byte 0x9c
  1466. .long 0x2bb
  1467. .long 0x2c5
  1468. .uleb128 0x12
  1469. .uleb128 0x10
  1470. .long 0x2c5
  1471. .uleb128 0x2
  1472. .byte 0x91
  1473. .sleb128 -24
  1474. .byte 0
  1475. .uleb128 0x13
  1476. .long 0x151
  1477. .uleb128 0x11
  1478. .long 0x13c
  1479. .byte 0x2
  1480. .byte 0x70
  1481. .uleb128 0xa
  1482. .quad .LFE10-.LFB10
  1483. .uleb128 0x1
  1484. .byte 0x9c
  1485. .long 0x2e4
  1486. .long 0x2ee
  1487. .uleb128 0x12
  1488. .uleb128 0x10
  1489. .long 0x2c5
  1490. .uleb128 0x2
  1491. .byte 0x91
  1492. .sleb128 -24
  1493. .byte 0
  1494. .uleb128 0x15
  1495. .string "f11a"
  1496. .byte 0x2
  1497. .byte 0x78
  1498. .string "_Z4f11av"
  1499. .long 0xc6
  1500. .uleb128 0xb
  1501. .quad .LFE11-.LFB11
  1502. .uleb128 0x1
  1503. .byte 0x9c
  1504. .uleb128 0x11
  1505. .long 0x146
  1506. .byte 0x2
  1507. .byte 0x7e
  1508. .uleb128 0xc
  1509. .quad .LFE12-.LFB12
  1510. .uleb128 0x1
  1511. .byte 0x9c
  1512. .long 0x328
  1513. .long 0x332
  1514. .uleb128 0x12
  1515. .uleb128 0x10
  1516. .long 0x2c5
  1517. .uleb128 0x2
  1518. .byte 0x91
  1519. .sleb128 -24
  1520. .byte 0
  1521. .uleb128 0x16
  1522. .string "t12"
  1523. .byte 0x2
  1524. .byte 0x86
  1525. .string "_Z3t12v"
  1526. .long 0xcd
  1527. .uleb128 0xd
  1528. .quad .LFE13-.LFB13
  1529. .uleb128 0x1
  1530. .byte 0x9c
  1531. .uleb128 0x16
  1532. .string "t13"
  1533. .byte 0x2
  1534. .byte 0x8e
  1535. .string "_Z3t13v"
  1536. .long 0xcd
  1537. .uleb128 0xe
  1538. .quad .LFE14-.LFB14
  1539. .uleb128 0x1
  1540. .byte 0x9c
  1541. .uleb128 0x17
  1542. .string "t14"
  1543. .byte 0x2
  1544. .byte 0x96
  1545. .string "_Z3t14v"
  1546. .long 0xcd
  1547. .uleb128 0xf
  1548. .quad .LFE15-.LFB15
  1549. .uleb128 0x1
  1550. .byte 0x9c
  1551. .long 0x3b6
  1552. .uleb128 0x18
  1553. .uleb128 0x10
  1554. .quad .LBE2-.LBB2
  1555. .uleb128 0x19
  1556. .string "s1"
  1557. .byte 0x2
  1558. .byte 0x98
  1559. .long 0x3b6
  1560. .uleb128 0x2
  1561. .byte 0x91
  1562. .sleb128 -24
  1563. .uleb128 0x19
  1564. .string "s2"
  1565. .byte 0x2
  1566. .byte 0x99
  1567. .long 0x3b6
  1568. .uleb128 0x2
  1569. .byte 0x91
  1570. .sleb128 -32
  1571. .byte 0
  1572. .byte 0
  1573. .uleb128 0x8
  1574. .byte 0x8
  1575. .long 0x3bc
  1576. .uleb128 0x13
  1577. .long 0x3c1
  1578. .uleb128 0x7
  1579. .byte 0x1
  1580. .byte 0x6
  1581. .string "char"
  1582. .uleb128 0x17
  1583. .string "t15"
  1584. .byte 0x2
  1585. .byte 0xa3
  1586. .string "_Z3t15v"
  1587. .long 0xcd
  1588. .uleb128 0x11
  1589. .quad .LFE16-.LFB16
  1590. .uleb128 0x1
  1591. .byte 0x9c
  1592. .long 0x411
  1593. .uleb128 0x18
  1594. .uleb128 0x12
  1595. .quad .LBE3-.LBB3
  1596. .uleb128 0x19
  1597. .string "s1"
  1598. .byte 0x2
  1599. .byte 0xa5
  1600. .long 0x411
  1601. .uleb128 0x2
  1602. .byte 0x91
  1603. .sleb128 -24
  1604. .uleb128 0x19
  1605. .string "s2"
  1606. .byte 0x2
  1607. .byte 0xa6
  1608. .long 0x411
  1609. .uleb128 0x2
  1610. .byte 0x91
  1611. .sleb128 -32
  1612. .byte 0
  1613. .byte 0
  1614. .uleb128 0x8
  1615. .byte 0x8
  1616. .long 0x417
  1617. .uleb128 0x13
  1618. .long 0x41c
  1619. .uleb128 0x7
  1620. .byte 0x4
  1621. .byte 0x5
  1622. .string "wchar_t"
  1623. .uleb128 0x16
  1624. .string "t16"
  1625. .byte 0x2
  1626. .byte 0xb0
  1627. .string "_Z3t16v"
  1628. .long 0xcd
  1629. .uleb128 0x13
  1630. .quad .LFE17-.LFB17
  1631. .uleb128 0x1
  1632. .byte 0x9c
  1633. .uleb128 0x1a
  1634. .string "t17"
  1635. .byte 0x2
  1636. .byte 0xb8
  1637. .string "_Z3t17v"
  1638. .long 0xcd
  1639. .uleb128 0x14
  1640. .quad .LFE18-.LFB18
  1641. .uleb128 0x1
  1642. .byte 0x9c
  1643. .long 0x496
  1644. .uleb128 0x18
  1645. .uleb128 0x15
  1646. .quad .LBE4-.LBB4
  1647. .uleb128 0x19
  1648. .string "c"
  1649. .byte 0x2
  1650. .byte 0xba
  1651. .long 0x3c1
  1652. .uleb128 0x2
  1653. .byte 0x91
  1654. .sleb128 -17
  1655. .uleb128 0x18
  1656. .uleb128 0x16
  1657. .quad .LBE5-.LBB5
  1658. .uleb128 0x19
  1659. .string "i"
  1660. .byte 0x2
  1661. .byte 0xbb
  1662. .long 0xc6
  1663. .uleb128 0x2
  1664. .byte 0x91
  1665. .sleb128 -24
  1666. .byte 0
  1667. .byte 0
  1668. .byte 0
  1669. .uleb128 0x17
  1670. .string "t18"
  1671. .byte 0x2
  1672. .byte 0xc7
  1673. .string "_Z3t18v"
  1674. .long 0xcd
  1675. .uleb128 0x17
  1676. .quad .LFE19-.LFB19
  1677. .uleb128 0x1
  1678. .byte 0x9c
  1679. .long 0x4fe
  1680. .uleb128 0x18
  1681. .uleb128 0x18
  1682. .quad .LBE6-.LBB6
  1683. .uleb128 0x19
  1684. .string "c"
  1685. .byte 0x2
  1686. .byte 0xc9
  1687. .long 0x3c1
  1688. .uleb128 0x2
  1689. .byte 0x91
  1690. .sleb128 -17
  1691. .uleb128 0x18
  1692. .uleb128 0x19
  1693. .quad .LBE7-.LBB7
  1694. .uleb128 0x19
  1695. .string "i"
  1696. .byte 0x2
  1697. .byte 0xca
  1698. .long 0xc6
  1699. .uleb128 0x2
  1700. .byte 0x91
  1701. .sleb128 -24
  1702. .uleb128 0x18
  1703. .uleb128 0x1a
  1704. .quad .LBE8-.LBB8
  1705. .uleb128 0x19
  1706. .string "s"
  1707. .byte 0x2
  1708. .byte 0xcc
  1709. .long 0x3b6
  1710. .uleb128 0x2
  1711. .byte 0x91
  1712. .sleb128 -32
  1713. .byte 0
  1714. .byte 0
  1715. .byte 0
  1716. .byte 0
  1717. .uleb128 0x1b
  1718. .string "c3"
  1719. .byte 0x1
  1720. .byte 0x39
  1721. .byte 0xbb
  1722. .byte 0x29
  1723. .byte 0x16
  1724. .byte 0xf0
  1725. .byte 0xc1
  1726. .byte 0xbd
  1727. .byte 0x34
  1728. .byte 0xb5
  1729. .uleb128 0x1c
  1730. .string "v2"
  1731. .byte 0x1
  1732. .byte 0x3b
  1733. .long 0xc6
  1734. .uleb128 0x1c
  1735. .string "v3"
  1736. .byte 0x1
  1737. .byte 0x3c
  1738. .long 0xc6
  1739. .uleb128 0x1d
  1740. .long 0x3c1
  1741. .long 0x52b
  1742. .uleb128 0x1e
  1743. .byte 0
  1744. .uleb128 0x1c
  1745. .string "v4"
  1746. .byte 0x1
  1747. .byte 0x3d
  1748. .long 0x520
  1749. .uleb128 0x1c
  1750. .string "v5"
  1751. .byte 0x1
  1752. .byte 0x3e
  1753. .long 0x520
  1754. .uleb128 0x1d
  1755. .long 0x3b6
  1756. .long 0x54a
  1757. .uleb128 0x1e
  1758. .byte 0
  1759. .uleb128 0x1c
  1760. .string "t17data"
  1761. .byte 0x1
  1762. .byte 0x53
  1763. .long 0x53f
  1764. .uleb128 0x1f
  1765. .string "p6"
  1766. .byte 0x2
  1767. .byte 0x45
  1768. .long 0x566
  1769. .uleb128 0x2
  1770. .byte 0xfb
  1771. .uleb128 0x1b
  1772. .uleb128 0x8
  1773. .byte 0x8
  1774. .long 0xc6
  1775. .uleb128 0x1f
  1776. .string "p7"
  1777. .byte 0x2
  1778. .byte 0x4f
  1779. .long 0x566
  1780. .uleb128 0x2
  1781. .byte 0xfb
  1782. .uleb128 0x1c
  1783. .uleb128 0x1f
  1784. .string "p8"
  1785. .byte 0x2
  1786. .byte 0x59
  1787. .long 0x586
  1788. .uleb128 0x2
  1789. .byte 0xfb
  1790. .uleb128 0x1d
  1791. .uleb128 0x8
  1792. .byte 0x8
  1793. .long 0x3c1
  1794. .uleb128 0x1f
  1795. .string "p9"
  1796. .byte 0x2
  1797. .byte 0x63
  1798. .long 0x586
  1799. .uleb128 0x2
  1800. .byte 0xfb
  1801. .uleb128 0x1e
  1802. .uleb128 0x9
  1803. .long 0xc6
  1804. .uleb128 0x1f
  1805. .string "pfn"
  1806. .byte 0x2
  1807. .byte 0x6d
  1808. .long 0x5ac
  1809. .uleb128 0x2
  1810. .byte 0xfb
  1811. .uleb128 0x1f
  1812. .uleb128 0x8
  1813. .byte 0x8
  1814. .long 0x599
  1815. .byte 0
  1816. .section .debug_info,"",@progbits
  1817. .Lskeleton_debug_info0:
  1818. .long 0x7e
  1819. .value 0x4
  1820. .long .Lskeleton_debug_abbrev0
  1821. .byte 0x8
  1822. .uleb128 0x1
  1823. .long .Ldebug_ranges0+0
  1824. .quad 0
  1825. .long .Ldebug_line0
  1826. .byte 0x27
  1827. .byte 0x37
  1828. .byte 0xdc
  1829. .byte 0x2f
  1830. .byte 0x9
  1831. .byte 0xc6
  1832. .byte 0xf9
  1833. .byte 0x52
  1834. .long .Ldebug_ranges0
  1835. .string "/home/ccoutant/opensource/binutils-git/binutils/gold/testsuite"
  1836. .string "dwp_test_1.dwo"
  1837. .long .Ldebug_pubnames0
  1838. .long .Ldebug_pubtypes0
  1839. .long .Ldebug_addr0
  1840. .section .debug_abbrev,"",@progbits
  1841. .Lskeleton_debug_abbrev0:
  1842. .uleb128 0x1
  1843. .uleb128 0x11
  1844. .byte 0
  1845. .uleb128 0x55
  1846. .uleb128 0x17
  1847. .uleb128 0x11
  1848. .uleb128 0x1
  1849. .uleb128 0x10
  1850. .uleb128 0x17
  1851. .uleb128 0x2131
  1852. .uleb128 0x7
  1853. .uleb128 0x2132
  1854. .uleb128 0x17
  1855. .uleb128 0x1b
  1856. .uleb128 0x8
  1857. .uleb128 0x2130
  1858. .uleb128 0x8
  1859. .uleb128 0x2134
  1860. .uleb128 0x17
  1861. .uleb128 0x2135
  1862. .uleb128 0x17
  1863. .uleb128 0x2133
  1864. .uleb128 0x17
  1865. .byte 0
  1866. .byte 0
  1867. .uleb128 0x2
  1868. .uleb128 0x41
  1869. .byte 0
  1870. .uleb128 0x1b
  1871. .uleb128 0x8
  1872. .uleb128 0x2130
  1873. .uleb128 0x8
  1874. .uleb128 0x2134
  1875. .uleb128 0x17
  1876. .uleb128 0x2135
  1877. .uleb128 0x17
  1878. .uleb128 0x2133
  1879. .uleb128 0x17
  1880. .byte 0
  1881. .byte 0
  1882. .byte 0
  1883. .section .debug_abbrev.dwo,"e",@progbits
  1884. .Ldebug_abbrev0:
  1885. .uleb128 0x1
  1886. .uleb128 0x41
  1887. .byte 0x1
  1888. .uleb128 0x13
  1889. .uleb128 0xb
  1890. .uleb128 0x210f
  1891. .uleb128 0x7
  1892. .uleb128 0x10
  1893. .uleb128 0x17
  1894. .byte 0
  1895. .byte 0
  1896. .uleb128 0x2
  1897. .uleb128 0x2
  1898. .byte 0x1
  1899. .uleb128 0x3
  1900. .uleb128 0x8
  1901. .uleb128 0xb
  1902. .uleb128 0xb
  1903. .uleb128 0x3a
  1904. .uleb128 0xb
  1905. .uleb128 0x3b
  1906. .uleb128 0xb
  1907. .uleb128 0x1
  1908. .uleb128 0x13
  1909. .byte 0
  1910. .byte 0
  1911. .uleb128 0x3
  1912. .uleb128 0xd
  1913. .byte 0
  1914. .uleb128 0x3
  1915. .uleb128 0x1f02
  1916. .uleb128 0x3a
  1917. .uleb128 0xb
  1918. .uleb128 0x3b
  1919. .uleb128 0xb
  1920. .uleb128 0x49
  1921. .uleb128 0x13
  1922. .uleb128 0x38
  1923. .uleb128 0xb
  1924. .uleb128 0x32
  1925. .uleb128 0xb
  1926. .byte 0
  1927. .byte 0
  1928. .uleb128 0x4
  1929. .uleb128 0x2e
  1930. .byte 0x1
  1931. .uleb128 0x3f
  1932. .uleb128 0x19
  1933. .uleb128 0x3
  1934. .uleb128 0x1f02
  1935. .uleb128 0x3a
  1936. .uleb128 0xb
  1937. .uleb128 0x3b
  1938. .uleb128 0xb
  1939. .uleb128 0x6e
  1940. .uleb128 0x1f02
  1941. .uleb128 0x49
  1942. .uleb128 0x13
  1943. .uleb128 0x32
  1944. .uleb128 0xb
  1945. .uleb128 0x3c
  1946. .uleb128 0x19
  1947. .uleb128 0x64
  1948. .uleb128 0x13
  1949. .uleb128 0x1
  1950. .uleb128 0x13
  1951. .byte 0
  1952. .byte 0
  1953. .uleb128 0x5
  1954. .uleb128 0x5
  1955. .byte 0
  1956. .uleb128 0x49
  1957. .uleb128 0x13
  1958. .uleb128 0x34
  1959. .uleb128 0x19
  1960. .byte 0
  1961. .byte 0
  1962. .uleb128 0x6
  1963. .uleb128 0x2e
  1964. .byte 0x1
  1965. .uleb128 0x3f
  1966. .uleb128 0x19
  1967. .uleb128 0x3
  1968. .uleb128 0x8
  1969. .uleb128 0x3a
  1970. .uleb128 0xb
  1971. .uleb128 0x3b
  1972. .uleb128 0xb
  1973. .uleb128 0x6e
  1974. .uleb128 0x8
  1975. .uleb128 0x49
  1976. .uleb128 0x13
  1977. .uleb128 0x32
  1978. .uleb128 0xb
  1979. .uleb128 0x3c
  1980. .uleb128 0x19
  1981. .uleb128 0x64
  1982. .uleb128 0x13
  1983. .byte 0
  1984. .byte 0
  1985. .uleb128 0x7
  1986. .uleb128 0x24
  1987. .byte 0
  1988. .uleb128 0xb
  1989. .uleb128 0xb
  1990. .uleb128 0x3e
  1991. .uleb128 0xb
  1992. .uleb128 0x3
  1993. .uleb128 0x8
  1994. .byte 0
  1995. .byte 0
  1996. .uleb128 0x8
  1997. .uleb128 0xf
  1998. .byte 0
  1999. .uleb128 0xb
  2000. .uleb128 0xb
  2001. .uleb128 0x49
  2002. .uleb128 0x13
  2003. .byte 0
  2004. .byte 0
  2005. .uleb128 0x9
  2006. .uleb128 0x15
  2007. .byte 0
  2008. .uleb128 0x49
  2009. .uleb128 0x13
  2010. .byte 0
  2011. .byte 0
  2012. .uleb128 0xa
  2013. .uleb128 0x2e
  2014. .byte 0x1
  2015. .uleb128 0x3f
  2016. .uleb128 0x19
  2017. .uleb128 0x3
  2018. .uleb128 0x1f02
  2019. .uleb128 0x3a
  2020. .uleb128 0xb
  2021. .uleb128 0x3b
  2022. .uleb128 0xb
  2023. .uleb128 0x6e
  2024. .uleb128 0x1f02
  2025. .uleb128 0x49
  2026. .uleb128 0x13
  2027. .uleb128 0x32
  2028. .uleb128 0xb
  2029. .uleb128 0x3c
  2030. .uleb128 0x19
  2031. .uleb128 0x64
  2032. .uleb128 0x13
  2033. .byte 0
  2034. .byte 0
  2035. .uleb128 0xb
  2036. .uleb128 0x2e
  2037. .byte 0x1
  2038. .uleb128 0x3f
  2039. .uleb128 0x19
  2040. .uleb128 0x3
  2041. .uleb128 0x8
  2042. .uleb128 0x3a
  2043. .uleb128 0xb
  2044. .uleb128 0x3b
  2045. .uleb128 0xb
  2046. .uleb128 0x6e
  2047. .uleb128 0x8
  2048. .uleb128 0x49
  2049. .uleb128 0x13
  2050. .uleb128 0x32
  2051. .uleb128 0xb
  2052. .uleb128 0x3c
  2053. .uleb128 0x19
  2054. .uleb128 0x64
  2055. .uleb128 0x13
  2056. .uleb128 0x1
  2057. .uleb128 0x13
  2058. .byte 0
  2059. .byte 0
  2060. .uleb128 0xc
  2061. .uleb128 0x11
  2062. .byte 0x1
  2063. .uleb128 0x25
  2064. .uleb128 0x8
  2065. .uleb128 0x13
  2066. .uleb128 0xb
  2067. .uleb128 0x3
  2068. .uleb128 0x8
  2069. .uleb128 0x1b
  2070. .uleb128 0x8
  2071. .uleb128 0x2131
  2072. .uleb128 0x7
  2073. .byte 0
  2074. .byte 0
  2075. .uleb128 0xd
  2076. .uleb128 0x2
  2077. .byte 0x1
  2078. .uleb128 0x3
  2079. .uleb128 0x8
  2080. .uleb128 0x69
  2081. .uleb128 0x20
  2082. .uleb128 0x3c
  2083. .uleb128 0x19
  2084. .uleb128 0x1
  2085. .uleb128 0x13
  2086. .byte 0
  2087. .byte 0
  2088. .uleb128 0xe
  2089. .uleb128 0x2e
  2090. .byte 0
  2091. .uleb128 0x3f
  2092. .uleb128 0x19
  2093. .uleb128 0x3
  2094. .uleb128 0x1f02
  2095. .uleb128 0x3a
  2096. .uleb128 0xb
  2097. .uleb128 0x3b
  2098. .uleb128 0xb
  2099. .uleb128 0x6e
  2100. .uleb128 0x1f02
  2101. .uleb128 0x49
  2102. .uleb128 0x13
  2103. .uleb128 0x32
  2104. .uleb128 0xb
  2105. .uleb128 0x3c
  2106. .uleb128 0x19
  2107. .byte 0
  2108. .byte 0
  2109. .uleb128 0xf
  2110. .uleb128 0xf
  2111. .byte 0
  2112. .uleb128 0xb
  2113. .uleb128 0xb
  2114. .uleb128 0x49
  2115. .uleb128 0x20
  2116. .byte 0
  2117. .byte 0
  2118. .uleb128 0x10
  2119. .uleb128 0x2e
  2120. .byte 0
  2121. .uleb128 0x3f
  2122. .uleb128 0x19
  2123. .uleb128 0x3
  2124. .uleb128 0x8
  2125. .uleb128 0x3a
  2126. .uleb128 0xb
  2127. .uleb128 0x3b
  2128. .uleb128 0xb
  2129. .uleb128 0x6e
  2130. .uleb128 0x8
  2131. .uleb128 0x11
  2132. .uleb128 0x1f01
  2133. .uleb128 0x12
  2134. .uleb128 0x7
  2135. .uleb128 0x40
  2136. .uleb128 0x18
  2137. .uleb128 0x2117
  2138. .uleb128 0x19
  2139. .byte 0
  2140. .byte 0
  2141. .uleb128 0x11
  2142. .uleb128 0x2e
  2143. .byte 0x1
  2144. .uleb128 0x47
  2145. .uleb128 0x13
  2146. .uleb128 0x3a
  2147. .uleb128 0xb
  2148. .uleb128 0x3b
  2149. .uleb128 0xb
  2150. .uleb128 0x11
  2151. .uleb128 0x1f01
  2152. .uleb128 0x12
  2153. .uleb128 0x7
  2154. .uleb128 0x40
  2155. .uleb128 0x18
  2156. .uleb128 0x64
  2157. .uleb128 0x13
  2158. .uleb128 0x2116
  2159. .uleb128 0x19
  2160. .uleb128 0x1
  2161. .uleb128 0x13
  2162. .byte 0
  2163. .byte 0
  2164. .uleb128 0x12
  2165. .uleb128 0x5
  2166. .byte 0
  2167. .uleb128 0x3
  2168. .uleb128 0x1f02
  2169. .uleb128 0x49
  2170. .uleb128 0x13
  2171. .uleb128 0x34
  2172. .uleb128 0x19
  2173. .uleb128 0x2
  2174. .uleb128 0x18
  2175. .byte 0
  2176. .byte 0
  2177. .uleb128 0x13
  2178. .uleb128 0x26
  2179. .byte 0
  2180. .uleb128 0x49
  2181. .uleb128 0x13
  2182. .byte 0
  2183. .byte 0
  2184. .uleb128 0x14
  2185. .uleb128 0x2e
  2186. .byte 0x1
  2187. .uleb128 0x47
  2188. .uleb128 0x13
  2189. .uleb128 0x3a
  2190. .uleb128 0xb
  2191. .uleb128 0x3b
  2192. .uleb128 0xb
  2193. .uleb128 0x11
  2194. .uleb128 0x1f01
  2195. .uleb128 0x12
  2196. .uleb128 0x7
  2197. .uleb128 0x40
  2198. .uleb128 0x18
  2199. .uleb128 0x64
  2200. .uleb128 0x13
  2201. .uleb128 0x2117
  2202. .uleb128 0x19
  2203. .uleb128 0x1
  2204. .uleb128 0x13
  2205. .byte 0
  2206. .byte 0
  2207. .uleb128 0x15
  2208. .uleb128 0x2e
  2209. .byte 0
  2210. .uleb128 0x3f
  2211. .uleb128 0x19
  2212. .uleb128 0x3
  2213. .uleb128 0x8
  2214. .uleb128 0x3a
  2215. .uleb128 0xb
  2216. .uleb128 0x3b
  2217. .uleb128 0xb
  2218. .uleb128 0x6e
  2219. .uleb128 0x8
  2220. .uleb128 0x49
  2221. .uleb128 0x13
  2222. .uleb128 0x11
  2223. .uleb128 0x1f01
  2224. .uleb128 0x12
  2225. .uleb128 0x7
  2226. .uleb128 0x40
  2227. .uleb128 0x18
  2228. .uleb128 0x2117
  2229. .uleb128 0x19
  2230. .byte 0
  2231. .byte 0
  2232. .uleb128 0x16
  2233. .uleb128 0x2e
  2234. .byte 0
  2235. .uleb128 0x3f
  2236. .uleb128 0x19
  2237. .uleb128 0x3
  2238. .uleb128 0x8
  2239. .uleb128 0x3a
  2240. .uleb128 0xb
  2241. .uleb128 0x3b
  2242. .uleb128 0xb
  2243. .uleb128 0x6e
  2244. .uleb128 0x8
  2245. .uleb128 0x49
  2246. .uleb128 0x13
  2247. .uleb128 0x11
  2248. .uleb128 0x1f01
  2249. .uleb128 0x12
  2250. .uleb128 0x7
  2251. .uleb128 0x40
  2252. .uleb128 0x18
  2253. .uleb128 0x2116
  2254. .uleb128 0x19
  2255. .byte 0
  2256. .byte 0
  2257. .uleb128 0x17
  2258. .uleb128 0x2e
  2259. .byte 0x1
  2260. .uleb128 0x3f
  2261. .uleb128 0x19
  2262. .uleb128 0x3
  2263. .uleb128 0x8
  2264. .uleb128 0x3a
  2265. .uleb128 0xb
  2266. .uleb128 0x3b
  2267. .uleb128 0xb
  2268. .uleb128 0x6e
  2269. .uleb128 0x8
  2270. .uleb128 0x49
  2271. .uleb128 0x13
  2272. .uleb128 0x11
  2273. .uleb128 0x1f01
  2274. .uleb128 0x12
  2275. .uleb128 0x7
  2276. .uleb128 0x40
  2277. .uleb128 0x18
  2278. .uleb128 0x2116
  2279. .uleb128 0x19
  2280. .uleb128 0x1
  2281. .uleb128 0x13
  2282. .byte 0
  2283. .byte 0
  2284. .uleb128 0x18
  2285. .uleb128 0xb
  2286. .byte 0x1
  2287. .uleb128 0x11
  2288. .uleb128 0x1f01
  2289. .uleb128 0x12
  2290. .uleb128 0x7
  2291. .byte 0
  2292. .byte 0
  2293. .uleb128 0x19
  2294. .uleb128 0x34
  2295. .byte 0
  2296. .uleb128 0x3
  2297. .uleb128 0x8
  2298. .uleb128 0x3a
  2299. .uleb128 0xb
  2300. .uleb128 0x3b
  2301. .uleb128 0xb
  2302. .uleb128 0x49
  2303. .uleb128 0x13
  2304. .uleb128 0x2
  2305. .uleb128 0x18
  2306. .byte 0
  2307. .byte 0
  2308. .uleb128 0x1a
  2309. .uleb128 0x2e
  2310. .byte 0x1
  2311. .uleb128 0x3f
  2312. .uleb128 0x19
  2313. .uleb128 0x3
  2314. .uleb128 0x8
  2315. .uleb128 0x3a
  2316. .uleb128 0xb
  2317. .uleb128 0x3b
  2318. .uleb128 0xb
  2319. .uleb128 0x6e
  2320. .uleb128 0x8
  2321. .uleb128 0x49
  2322. .uleb128 0x13
  2323. .uleb128 0x11
  2324. .uleb128 0x1f01
  2325. .uleb128 0x12
  2326. .uleb128 0x7
  2327. .uleb128 0x40
  2328. .uleb128 0x18
  2329. .uleb128 0x2117
  2330. .uleb128 0x19
  2331. .uleb128 0x1
  2332. .uleb128 0x13
  2333. .byte 0
  2334. .byte 0
  2335. .uleb128 0x1b
  2336. .uleb128 0x34
  2337. .byte 0
  2338. .uleb128 0x3
  2339. .uleb128 0x8
  2340. .uleb128 0x3a
  2341. .uleb128 0xb
  2342. .uleb128 0x3b
  2343. .uleb128 0xb
  2344. .uleb128 0x49
  2345. .uleb128 0x20
  2346. .uleb128 0x3f
  2347. .uleb128 0x19
  2348. .uleb128 0x3c
  2349. .uleb128 0x19
  2350. .byte 0
  2351. .byte 0
  2352. .uleb128 0x1c
  2353. .uleb128 0x34
  2354. .byte 0
  2355. .uleb128 0x3
  2356. .uleb128 0x8
  2357. .uleb128 0x3a
  2358. .uleb128 0xb
  2359. .uleb128 0x3b
  2360. .uleb128 0xb
  2361. .uleb128 0x49
  2362. .uleb128 0x13
  2363. .uleb128 0x3f
  2364. .uleb128 0x19
  2365. .uleb128 0x3c
  2366. .uleb128 0x19
  2367. .byte 0
  2368. .byte 0
  2369. .uleb128 0x1d
  2370. .uleb128 0x1
  2371. .byte 0x1
  2372. .uleb128 0x49
  2373. .uleb128 0x13
  2374. .uleb128 0x1
  2375. .uleb128 0x13
  2376. .byte 0
  2377. .byte 0
  2378. .uleb128 0x1e
  2379. .uleb128 0x21
  2380. .byte 0
  2381. .byte 0
  2382. .byte 0
  2383. .uleb128 0x1f
  2384. .uleb128 0x34
  2385. .byte 0
  2386. .uleb128 0x3
  2387. .uleb128 0x8
  2388. .uleb128 0x3a
  2389. .uleb128 0xb
  2390. .uleb128 0x3b
  2391. .uleb128 0xb
  2392. .uleb128 0x49
  2393. .uleb128 0x13
  2394. .uleb128 0x3f
  2395. .uleb128 0x19
  2396. .uleb128 0x2
  2397. .uleb128 0x18
  2398. .byte 0
  2399. .byte 0
  2400. .byte 0
  2401. .section .debug_gnu_pubnames,"",@progbits
  2402. .Ldebug_pubnames0:
  2403. .long 0x15b
  2404. .value 0x2
  2405. .long .Lskeleton_debug_info0
  2406. .long 0x5b3
  2407. .long 0x15b
  2408. .byte 0x30
  2409. .string "f13i"
  2410. .long 0x177
  2411. .byte 0x30
  2412. .string "C1::testcase1"
  2413. .long 0x1a0
  2414. .byte 0x30
  2415. .string "C1::testcase2"
  2416. .long 0x1c4
  2417. .byte 0x30
  2418. .string "C1::testcase3"
  2419. .long 0x1e8
  2420. .byte 0x30
  2421. .string "C1::testcase4"
  2422. .long 0x20c
  2423. .byte 0x30
  2424. .string "C2::testcase1"
  2425. .long 0x235
  2426. .byte 0x30
  2427. .string "C2::testcase2"
  2428. .long 0x259
  2429. .byte 0x30
  2430. .string "C2::testcase3"
  2431. .long 0x27d
  2432. .byte 0x30
  2433. .string "C2::testcase4"
  2434. .long 0x2a1
  2435. .byte 0x30
  2436. .string "C3::testcase1"
  2437. .long 0x2ca
  2438. .byte 0x30
  2439. .string "C3::testcase2"
  2440. .long 0x2ee
  2441. .byte 0x30
  2442. .string "f11a"
  2443. .long 0x30e
  2444. .byte 0x30
  2445. .string "C3::testcase3"
  2446. .long 0x332
  2447. .byte 0x30
  2448. .string "t12"
  2449. .long 0x350
  2450. .byte 0x30
  2451. .string "t13"
  2452. .long 0x36e
  2453. .byte 0x30
  2454. .string "t14"
  2455. .long 0x3c9
  2456. .byte 0x30
  2457. .string "t15"
  2458. .long 0x427
  2459. .byte 0x30
  2460. .string "t16"
  2461. .long 0x445
  2462. .byte 0x30
  2463. .string "t17"
  2464. .long 0x496
  2465. .byte 0x30
  2466. .string "t18"
  2467. .long 0x559
  2468. .byte 0x20
  2469. .string "p6"
  2470. .long 0x56c
  2471. .byte 0x20
  2472. .string "p7"
  2473. .long 0x579
  2474. .byte 0x20
  2475. .string "p8"
  2476. .long 0x58c
  2477. .byte 0x20
  2478. .string "p9"
  2479. .long 0x59e
  2480. .byte 0x20
  2481. .string "pfn"
  2482. .long 0
  2483. .section .debug_gnu_pubtypes,"",@progbits
  2484. .Ldebug_pubtypes0:
  2485. .long 0x50
  2486. .value 0x2
  2487. .long .Lskeleton_debug_info0
  2488. .long 0x5b3
  2489. .long 0xc6
  2490. .byte 0x90
  2491. .string "int"
  2492. .long 0xcd
  2493. .byte 0x90
  2494. .string "bool"
  2495. .long 0x8d
  2496. .byte 0x10
  2497. .string "C1"
  2498. .long 0xdf
  2499. .byte 0x10
  2500. .string "C2"
  2501. .long 0x122
  2502. .byte 0x10
  2503. .string "C3"
  2504. .long 0x3c1
  2505. .byte 0x90
  2506. .string "char"
  2507. .long 0x41c
  2508. .byte 0x90
  2509. .string "wchar_t"
  2510. .long 0
  2511. .section .debug_aranges,"",@progbits
  2512. .long 0x3c
  2513. .value 0x2
  2514. .long .Lskeleton_debug_info0
  2515. .byte 0x8
  2516. .byte 0
  2517. .value 0
  2518. .value 0
  2519. .quad .Ltext0
  2520. .quad .Letext0-.Ltext0
  2521. .quad .LFB0
  2522. .quad .LFE0-.LFB0
  2523. .quad 0
  2524. .quad 0
  2525. .section .debug_ranges,"",@progbits
  2526. .Ldebug_ranges0:
  2527. .quad .Ltext0
  2528. .quad .Letext0
  2529. .quad .LFB0
  2530. .quad .LFE0
  2531. .quad 0
  2532. .quad 0
  2533. .section .debug_line,"",@progbits
  2534. .Ldebug_line0:
  2535. .section .debug_line.dwo,"e",@progbits
  2536. .Lskeleton_debug_line0:
  2537. .long .LELT0-.LSLT0
  2538. .LSLT0:
  2539. .value 0x4
  2540. .long .LELTP0-.LASLTP0
  2541. .LASLTP0:
  2542. .byte 0x1
  2543. .byte 0x1
  2544. .byte 0x1
  2545. .byte 0xf6
  2546. .byte 0xf2
  2547. .byte 0xd
  2548. .byte 0
  2549. .byte 0x1
  2550. .byte 0x1
  2551. .byte 0x1
  2552. .byte 0x1
  2553. .byte 0
  2554. .byte 0
  2555. .byte 0
  2556. .byte 0x1
  2557. .byte 0
  2558. .byte 0
  2559. .byte 0x1
  2560. .byte 0
  2561. .string "dwp_test.h"
  2562. .uleb128 0
  2563. .uleb128 0
  2564. .uleb128 0
  2565. .string "dwp_test_1.cc"
  2566. .uleb128 0
  2567. .uleb128 0
  2568. .uleb128 0
  2569. .byte 0
  2570. .LELTP0:
  2571. .LELT0:
  2572. .section .debug_str_offsets.dwo,"e",@progbits
  2573. .long 0
  2574. .long 0xa
  2575. .long 0x14
  2576. .long 0x27
  2577. .long 0x3a
  2578. .long 0x44
  2579. .long 0x57
  2580. .long 0x5f
  2581. .long 0x72
  2582. .long 0x85
  2583. .long 0x98
  2584. .long 0xa2
  2585. .long 0xb5
  2586. .long 0xc8
  2587. .long 0xdb
  2588. .long 0xee
  2589. .long 0x101
  2590. .section .debug_str.dwo,"e",@progbits
  2591. .LASF0:
  2592. .string "testcase1"
  2593. .LASF1:
  2594. .string "testcase2"
  2595. .LASF2:
  2596. .string "_ZN2C39testcase1Ev"
  2597. .LASF3:
  2598. .string "_ZN2C39testcase2Ev"
  2599. .LASF4:
  2600. .string "testcase3"
  2601. .LASF5:
  2602. .string "_ZN2C39testcase3Ev"
  2603. .LASF6:
  2604. .string "member1"
  2605. .LASF7:
  2606. .string "_ZN2C29testcase1Ev"
  2607. .LASF8:
  2608. .string "_ZN2C29testcase2Ev"
  2609. .LASF9:
  2610. .string "_ZN2C29testcase3Ev"
  2611. .LASF10:
  2612. .string "testcase4"
  2613. .LASF11:
  2614. .string "_ZN2C29testcase4Ev"
  2615. .LASF12:
  2616. .string "_ZN2C19testcase1Ev"
  2617. .LASF13:
  2618. .string "_ZN2C19testcase2Ev"
  2619. .LASF14:
  2620. .string "_ZN2C19testcase3Ev"
  2621. .LASF15:
  2622. .string "_ZN2C19testcase4Ev"
  2623. .LASF16:
  2624. .string "this"
  2625. .section .debug_addr,"",@progbits
  2626. .Ldebug_addr0:
  2627. .quad .LFB0
  2628. .quad .LFB1
  2629. .quad .LFB2
  2630. .quad .LFB3
  2631. .quad .LFB4
  2632. .quad .LFB5
  2633. .quad .LFB6
  2634. .quad .LFB7
  2635. .quad .LFB8
  2636. .quad .LFB9
  2637. .quad .LFB10
  2638. .quad .LFB11
  2639. .quad .LFB12
  2640. .quad .LFB13
  2641. .quad .LFB14
  2642. .quad .LFB15
  2643. .quad .LBB2
  2644. .quad .LFB16
  2645. .quad .LBB3
  2646. .quad .LFB17
  2647. .quad .LFB18
  2648. .quad .LBB4
  2649. .quad .LBB5
  2650. .quad .LFB19
  2651. .quad .LBB6
  2652. .quad .LBB7
  2653. .quad .LBB8
  2654. .quad p6
  2655. .quad p7
  2656. .quad p8
  2657. .quad p9
  2658. .quad pfn
  2659. .ident "GCC: (Google_crosstoolv16-gcc-4.7.x-grtev3) 4.7.x-google 20120720 (prerelease)"
  2660. .section .note.GNU-stack,"",@progbits