dbgdwarf.pas 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795
  1. {
  2. Copyright (c) 2003-2006 by Peter Vreman and Florian Klaempfl
  3. This units contains support for DWARF debug info generation
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. {
  18. This units contains support for DWARF debug info generation.
  19. Currently a lot of code looks like being mergable with dbgstabs. This might
  20. change however when improved dwarf info is generated, so the stuff shouldn't be
  21. merged yet. (FK)
  22. The easiest way to debug dwarf debug info generation is the usage of
  23. readelf --debug-dump <executable>
  24. This works only with elf targets though.
  25. There is a similar utility called dwarfdump which is not elf-specific and
  26. which has been ported to most systems.
  27. }
  28. unit dbgdwarf;
  29. {$i fpcdefs.inc}
  30. interface
  31. uses
  32. cclasses,globtype,
  33. aasmbase,aasmtai,aasmdata,
  34. symbase,symconst,symtype,symdef,symsym,
  35. finput,
  36. DbgBase;
  37. type
  38. { Tag names and codes. }
  39. tdwarf_tag = (DW_TAG_padding := $00,DW_TAG_array_type := $01,
  40. DW_TAG_class_type := $02,DW_TAG_entry_point := $03,
  41. DW_TAG_enumeration_type := $04,DW_TAG_formal_parameter := $05,
  42. DW_TAG_imported_declaration := $08,DW_TAG_label := $0a,
  43. DW_TAG_lexical_block := $0b,DW_TAG_member := $0d,
  44. DW_TAG_pointer_type := $0f,DW_TAG_reference_type := $10,
  45. DW_TAG_compile_unit := $11,DW_TAG_stringtypee := $12,
  46. DW_TAG_structure_type := $13,DW_TAG_subroutine_type := $15,
  47. DW_TAG_typedef := $16,DW_TAG_union_type := $17,
  48. DW_TAG_unspecified_parameters := $18,
  49. DW_TAG_variant := $19,DW_TAG_common_block := $1a,
  50. DW_TAG_common_inclusion := $1b,DW_TAG_inheritance := $1c,
  51. DW_TAG_inlined_subroutine := $1d,DW_TAG_module := $1e,
  52. DW_TAG_ptr_to_member_type := $1f,DW_TAG_set_type := $20,
  53. DW_TAG_subrange_type := $21,DW_TAG_with_stmt := $22,
  54. DW_TAG_access_declaration := $23,DW_TAG_base_type := $24,
  55. DW_TAG_catch_block := $25,DW_TAG_const_type := $26,
  56. DW_TAG_constant := $27,DW_TAG_enumerator := $28,
  57. DW_TAG_file_type := $29,DW_TAG_friend := $2a,
  58. DW_TAG_namelist := $2b,DW_TAG_namelist_item := $2c,
  59. DW_TAG_packed_type := $2d,DW_TAG_subprogram := $2e,
  60. DW_TAG_template_type_param := $2f,DW_TAG_template_value_param := $30,
  61. DW_TAG_thrown_type := $31,DW_TAG_try_block := $32,
  62. DW_TAG_variant_part := $33,DW_TAG_variable := $34,
  63. DW_TAG_volatile_type := $35,
  64. { DWARF 3. }
  65. DW_TAG_dwarf_procedure := $36,
  66. DW_TAG_restrict_type := $37,DW_TAG_interface_type := $38,
  67. DW_TAG_namespace := $39,DW_TAG_imported_module := $3a,
  68. DW_TAG_unspecified_type := $3b,DW_TAG_partial_unit := $3c,
  69. DW_TAG_imported_unit := $3d,
  70. { SGI/MIPS Extensions. }
  71. DW_TAG_MIPS_loop := $4081,
  72. { HP extensions. See: ftp://ftp.hp.com/pub/lang/tools/WDB/wdb-4.0.tar.gz . }
  73. DW_TAG_HP_array_descriptor := $4090,
  74. { GNU extensions. }
  75. { For FORTRAN 77 and Fortran 90. }
  76. DW_TAG_format_label := $4101,
  77. { For C++. }
  78. DW_TAG_function_template := $4102,DW_TAG_class_template := $4103,
  79. DW_TAG_GNU_BINCL := $4104,DW_TAG_GNU_EINCL := $4105,
  80. { Extensions for UPC. See: http://upc.gwu.edu/~upc. }
  81. DW_TAG_upc_shared_type := $8765,DW_TAG_upc_strict_type := $8766,
  82. DW_TAG_upc_relaxed_type := $8767,
  83. { PGI (STMicroelectronics) extensions. No documentation available. }
  84. DW_TAG_PGI_kanji_type := $A000,
  85. DW_TAG_PGI_interface_block := $A020);
  86. {$notes off}
  87. { Attribute names and codes. }
  88. tdwarf_attribute = (DW_AT_sibling := $01,DW_AT_location := $02,
  89. DW_AT_name := $03,DW_AT_ordering := $09,
  90. DW_AT_subscr_data := $0a,DW_AT_byte_size := $0b,
  91. DW_AT_bit_offset := $0c,DW_AT_bit_size := $0d,
  92. DW_AT_element_list := $0f,DW_AT_stmt_list := $10,
  93. DW_AT_low_pc := $11,DW_AT_high_pc := $12,
  94. DW_AT_language := $13,DW_AT_member := $14,
  95. DW_AT_discr := $15,DW_AT_discr_value := $16,
  96. DW_AT_visibility := $17,DW_AT_import := $18,
  97. DW_AT_string_length := $19,DW_AT_common_reference := $1a,
  98. DW_AT_comp_dir := $1b,DW_AT_const_value := $1c,
  99. DW_AT_containing_type := $1d,DW_AT_default_value := $1e,
  100. DW_AT_inline := $20,DW_AT_is_optional := $21,
  101. DW_AT_lower_bound := $22,DW_AT_producer := $25,
  102. DW_AT_prototyped := $27,DW_AT_return_addr := $2a,
  103. DW_AT_start_scope := $2c,DW_AT_stride_size := $2e,
  104. DW_AT_upper_bound := $2f,DW_AT_abstract_origin := $31,
  105. DW_AT_accessibility := $32,DW_AT_address_class := $33,
  106. DW_AT_artificial := $34,DW_AT_base_types := $35,
  107. DW_AT_calling_convention := $36,DW_AT_count := $37,
  108. DW_AT_data_member_location := $38,DW_AT_decl_column := $39,
  109. DW_AT_decl_file := $3a,DW_AT_decl_line := $3b,
  110. DW_AT_declaration := $3c,DW_AT_discr_list := $3d,
  111. DW_AT_encoding := $3e,DW_AT_external := $3f,
  112. DW_AT_frame_base := $40,DW_AT_friend := $41,
  113. DW_AT_identifier_case := $42,DW_AT_macro_info := $43,
  114. DW_AT_namelist_items := $44,DW_AT_priority := $45,
  115. DW_AT_segment := $46,DW_AT_specification := $47,
  116. DW_AT_static_link := $48,DW_AT_type := $49,
  117. DW_AT_use_location := $4a,DW_AT_variable_parameter := $4b,
  118. DW_AT_virtuality := $4c,DW_AT_vtable_elem_location := $4d,
  119. { DWARF 3 values. }
  120. DW_AT_allocated := $4e,DW_AT_associated := $4f,
  121. DW_AT_data_location := $50,DW_AT_byte_stride := $51,
  122. DW_AT_entry_pc := $52,DW_AT_use_UTF8 := $53,
  123. DW_AT_extension := $54,DW_AT_ranges := $55,
  124. DW_AT_trampoline := $56,DW_AT_call_column := $57,
  125. DW_AT_call_file := $58,DW_AT_call_line := $59,
  126. { SGI/MIPS extensions. }
  127. DW_AT_MIPS_fde := $2001,DW_AT_MIPS_loop_begin := $2002,
  128. DW_AT_MIPS_tail_loop_begin := $2003,DW_AT_MIPS_epilog_begin := $2004,
  129. DW_AT_MIPS_loop_unroll_factor := $2005,
  130. DW_AT_MIPS_software_pipeline_depth := $2006,
  131. DW_AT_MIPS_linkage_name := $2007,DW_AT_MIPS_stride := $2008,
  132. DW_AT_MIPS_abstract_name := $2009,DW_AT_MIPS_clone_origin := $200a,
  133. DW_AT_MIPS_has_inlines := $200b,
  134. { HP extensions. }
  135. DW_AT_HP_block_index := $2000,
  136. DW_AT_HP_unmodifiable := $2001,DW_AT_HP_actuals_stmt_list := $2010,
  137. DW_AT_HP_proc_per_section := $2011,DW_AT_HP_raw_data_ptr := $2012,
  138. DW_AT_HP_pass_by_reference := $2013,DW_AT_HP_opt_level := $2014,
  139. DW_AT_HP_prof_version_id := $2015,DW_AT_HP_opt_flags := $2016,
  140. DW_AT_HP_cold_region_low_pc := $2017,DW_AT_HP_cold_region_high_pc := $2018,
  141. DW_AT_HP_all_variables_modifiable := $2019,
  142. DW_AT_HP_linkage_name := $201a,DW_AT_HP_prof_flags := $201b,
  143. { GNU extensions. }
  144. DW_AT_sf_names := $2101,DW_AT_src_info := $2102,
  145. DW_AT_mac_info := $2103,DW_AT_src_coords := $2104,
  146. DW_AT_body_begin := $2105,DW_AT_body_end := $2106,
  147. DW_AT_GNU_vector := $2107,
  148. { VMS extensions. }
  149. DW_AT_VMS_rtnbeg_pd_address := $2201,
  150. { UPC extension. }
  151. DW_AT_upc_threads_scaled := $3210,
  152. { PGI (STMicroelectronics) extensions. }
  153. DW_AT_PGI_lbase := $3a00,
  154. DW_AT_PGI_soffset := $3a01,DW_AT_PGI_lstride := $3a02,
  155. { Apple extensions }
  156. DW_AT_APPLE_optimized = $3fe1,
  157. DW_AT_APPLE_flags = $3fe2,
  158. DW_AT_APPLE_major_runtime_vers = $3fe5,
  159. DW_AT_APPLE_runtime_class = $3fe6
  160. );
  161. {$notes on}
  162. { Form names and codes. }
  163. Tdwarf_form = (DW_FORM_addr := $01,DW_FORM_block2 := $03,
  164. DW_FORM_block4 := $04,DW_FORM_data2 := $05,
  165. DW_FORM_data4 := $06,DW_FORM_data8 := $07,
  166. DW_FORM_string := $08,DW_FORM_block := $09,
  167. DW_FORM_block1 := $0a,DW_FORM_data1 := $0b,
  168. DW_FORM_flag := $0c,DW_FORM_sdata := $0d,
  169. DW_FORM_strp := $0e,DW_FORM_udata := $0f,
  170. DW_FORM_ref_addr := $10,DW_FORM_ref1 := $11,
  171. DW_FORM_ref2 := $12,DW_FORM_ref4 := $13,
  172. DW_FORM_ref8 := $14,DW_FORM_ref_udata := $15,
  173. DW_FORM_indirect := $16);
  174. TDwarfFile = record
  175. Index: integer;
  176. Name: PChar;
  177. end;
  178. { flags for emitting variables/parameters }
  179. tdwarfvarsymflag =
  180. { force the sym to be emitted as a local variable regardless of its
  181. type; used for "absolute" local variables referring to parameters.
  182. }
  183. (dvf_force_local_var
  184. );
  185. tdwarfvarsymflags = set of tdwarfvarsymflag;
  186. { TDebugInfoDwarf }
  187. TDebugInfoDwarf = class(TDebugInfo)
  188. private
  189. currabbrevnumber : longint;
  190. { collect all defs in one list so we can reset them easily }
  191. defnumberlist,
  192. deftowritelist : TFPObjectList;
  193. { use this defs to create info for variants and file handles }
  194. { unused (MWE)
  195. filerecdef,
  196. textrecdef : tdef;
  197. }
  198. dirlist: TFPHashObjectList;
  199. filesequence: Integer;
  200. loclist: tdynamicarray;
  201. asmline: TAsmList;
  202. function def_dwarf_lab(def:tdef) : tasmsymbol;
  203. function def_dwarf_ref_lab(def:tdef) : tasmsymbol;
  204. function def_dwarf_class_struct_lab(def:tobjectdef) : tasmsymbol;
  205. function get_file_index(afile: tinputfile): Integer;
  206. function relative_dwarf_path(const s:tcmdstr):tcmdstr;
  207. protected
  208. // set if we should use 64bit headers (dwarf3 and up)
  209. _use_64bit_headers: Boolean;
  210. // set to ait_const32bit if use_64bit_headers is false, otherwise
  211. // to ait_const64bit
  212. offsetreltype,
  213. offsetabstype : taiconst_type;
  214. // set if we generated any lineinfo at all. If not, we have to terminate
  215. // when insertmoduleinfo is called.
  216. generated_lineinfo: boolean;
  217. vardatadef: trecorddef;
  218. procedure set_use_64bit_headers(state: boolean);
  219. property use_64bit_headers: Boolean read _use_64bit_headers write set_use_64bit_headers;
  220. procedure set_def_dwarf_labs(def:tdef);
  221. { Convenience version of the method below, so the compiler creates the
  222. tvarrec for us (must only pass one element in the last parameter). }
  223. procedure append_attribute(attr: tdwarf_attribute; form: tdwarf_form; const values: array of const);
  224. procedure append_attribute(attr: tdwarf_attribute; form: tdwarf_form; const value: tvarrec);
  225. procedure append_entry(tag : tdwarf_tag;has_children : boolean;data : array of const);
  226. procedure append_block1(attr: tdwarf_attribute; size: aint);
  227. procedure append_labelentry(attr : tdwarf_attribute;sym : tasmsymbol);
  228. procedure append_labelentry_ref(attr : tdwarf_attribute;sym : tasmsymbol);
  229. procedure append_labelentry_dataptr_abs(attr : tdwarf_attribute;sym : tasmsymbol);
  230. procedure append_labelentry_dataptr_rel(attr : tdwarf_attribute;sym,endsym : tasmsymbol);
  231. procedure append_labelentry_dataptr_common(attr : tdwarf_attribute);
  232. procedure beforeappenddef(list:TAsmList;def:tdef);override;
  233. procedure afterappenddef(list:TAsmList;def:tdef);override;
  234. procedure appenddef_ord(list:TAsmList;def:torddef);override;
  235. procedure appenddef_float(list:TAsmList;def:tfloatdef);override;
  236. procedure appenddef_enum(list:TAsmList;def:tenumdef);override;
  237. procedure appenddef_array(list:TAsmList;def:tarraydef);override;
  238. procedure appenddef_record_named(list:TAsmList;def:trecorddef;const name: shortstring);
  239. procedure appenddef_record(list:TAsmList;def:trecorddef);override;
  240. procedure appenddef_pointer(list:TAsmList;def:tpointerdef);override;
  241. procedure appenddef_string(list:TAsmList;def:tstringdef);override;
  242. procedure appenddef_procvar(list:TAsmList;def:tprocvardef);override;
  243. procedure appendprocdef(list:TAsmList;def:tprocdef);override;
  244. function get_symlist_sym_offset(symlist: ppropaccesslistitem; out sym: tabstractvarsym; out offset: pint): boolean;
  245. procedure appendsym_var(list:TAsmList;sym:tabstractnormalvarsym);
  246. procedure appendsym_var_with_name_type_offset(list:TAsmList; sym:tabstractnormalvarsym; const name: string; def: tdef; offset: pint; const flags: tdwarfvarsymflags);
  247. { used for fields and properties mapped to fields }
  248. procedure appendsym_fieldvar_with_name_offset(list:TAsmList;sym: tfieldvarsym;const name: string; def: tdef; offset: pint);
  249. procedure beforeappendsym(list:TAsmList;sym:tsym);override;
  250. procedure appendsym_staticvar(list:TAsmList;sym:tstaticvarsym);override;
  251. procedure appendsym_paravar(list:TAsmList;sym:tparavarsym);override;
  252. procedure appendsym_localvar(list:TAsmList;sym:tlocalvarsym);override;
  253. procedure appendsym_fieldvar(list:TAsmList;sym:tfieldvarsym);override;
  254. procedure appendsym_const(list:TAsmList;sym:tconstsym);override;
  255. procedure appendsym_type(list:TAsmList;sym:ttypesym);override;
  256. procedure appendsym_label(list:TAsmList;sym:tlabelsym);override;
  257. procedure appendsym_absolute(list:TAsmList;sym:tabsolutevarsym);override;
  258. procedure appendsym_property(list:TAsmList;sym:tpropertysym);override;
  259. function symname(sym:tsym): String; virtual;
  260. procedure append_visibility(vis: tvisibility);
  261. procedure enum_membersyms_callback(p:TObject;arg:pointer);
  262. procedure finish_children;
  263. procedure finish_entry;
  264. procedure finish_lineinfo;
  265. public
  266. constructor Create;override;
  267. destructor Destroy;override;
  268. procedure insertmoduleinfo;override;
  269. procedure inserttypeinfo;override;
  270. procedure referencesections(list:TAsmList);override;
  271. procedure insertlineinfo(list:TAsmList);override;
  272. function dwarf_version: Word; virtual; abstract;
  273. end;
  274. { TDebugInfoDwarf2 }
  275. TDebugInfoDwarf2 = class(TDebugInfoDwarf)
  276. private
  277. protected
  278. procedure appenddef_set_intern(list:TAsmList;def:tsetdef; force_tag_set: boolean);
  279. procedure appenddef_file(list:TAsmList;def:tfiledef); override;
  280. procedure appenddef_formal(list:TAsmList;def:tformaldef); override;
  281. procedure appenddef_object(list:TAsmList;def:tobjectdef); override;
  282. procedure appenddef_set(list:TAsmList;def:tsetdef); override;
  283. procedure appenddef_undefined(list:TAsmList;def:tundefineddef); override;
  284. procedure appenddef_variant(list:TAsmList;def:tvariantdef); override;
  285. public
  286. function dwarf_version: Word; override;
  287. end;
  288. { TDebugInfoDwarf3 }
  289. TDebugInfoDwarf3 = class(TDebugInfoDwarf2)
  290. private
  291. protected
  292. procedure appenddef_array(list:TAsmList;def:tarraydef); override;
  293. procedure appenddef_string(list:TAsmList;def:tstringdef);override;
  294. procedure appenddef_file(list:TAsmList;def:tfiledef); override;
  295. procedure appenddef_formal(list:TAsmList;def:tformaldef); override;
  296. procedure appenddef_object(list:TAsmList;def:tobjectdef); override;
  297. procedure appenddef_set(list:TAsmList;def: tsetdef); override;
  298. procedure appenddef_undefined(list:TAsmList;def:tundefineddef); override;
  299. procedure appenddef_variant(list:TAsmList;def:tvariantdef); override;
  300. function symname(sym:tsym): String; override;
  301. public
  302. function dwarf_version: Word; override;
  303. end;
  304. implementation
  305. uses
  306. sysutils,cutils,cfileutl,constexp,
  307. version,globals,verbose,systems,
  308. cpubase,cgbase,paramgr,
  309. fmodule,
  310. defutil,symtable,ppu
  311. ;
  312. const
  313. LINE_BASE = 1;
  314. OPCODE_BASE = 13;
  315. const
  316. DW_TAG_lo_user = $4080;
  317. DW_TAG_hi_user = $ffff;
  318. { Flag that tells whether entry has a child or not. }
  319. DW_children_no = 0;
  320. DW_children_yes = 1;
  321. const
  322. { Implementation-defined range start. }
  323. DW_AT_lo_user = $2000;
  324. { Implementation-defined range end. }
  325. DW_AT_hi_user = $3ff0;
  326. type
  327. { Source language names and codes. }
  328. tdwarf_source_language = (DW_LANG_C89 := $0001,DW_LANG_C := $0002,DW_LANG_Ada83 := $0003,
  329. DW_LANG_C_plus_plus := $0004,DW_LANG_Cobol74 := $0005,
  330. DW_LANG_Cobol85 := $0006,DW_LANG_Fortran77 := $0007,
  331. DW_LANG_Fortran90 := $0008,DW_LANG_Pascal83 := $0009,
  332. DW_LANG_Modula2 := $000a,DW_LANG_Java := $000b,
  333. { DWARF 3. }
  334. DW_LANG_C99 := $000c,DW_LANG_Ada95 := $000d,
  335. DW_LANG_Fortran95 := $000e,
  336. { Objective-C }
  337. DW_LANG_ObjC := $10,
  338. { MIPS. }
  339. DW_LANG_Mips_Assembler := $8001,
  340. { UPC. }
  341. DW_LANG_Upc := $8765
  342. );
  343. const
  344. { Implementation-defined range start. }
  345. DW_LANG_lo_user = $8000;
  346. { Implementation-defined range start. }
  347. DW_LANG_hi_user = $ffff;
  348. type
  349. { Names and codes for macro information. }
  350. tdwarf_macinfo_record_type = (DW_MACINFO_define := 1,DW_MACINFO_undef := 2,
  351. DW_MACINFO_start_file := 3,DW_MACINFO_end_file := 4,
  352. DW_MACINFO_vendor_ext := 255);
  353. type
  354. { Type encodings. }
  355. Tdwarf_type = (DW_ATE_void := $0,DW_ATE_address := $1,
  356. DW_ATE_boolean := $2,DW_ATE_complex_float := $3,
  357. DW_ATE_float := $4,DW_ATE_signed := $5,
  358. DW_ATE_signed_char := $6,DW_ATE_unsigned := $7,
  359. DW_ATE_unsigned_char := $8,DW_ATE_imaginary_float := $9,
  360. { HP extensions. }
  361. DW_ATE_HP_float80 := $80,DW_ATE_HP_complex_float80 := $81,
  362. DW_ATE_HP_float128 := $82,DW_ATE_HP_complex_float128 := $83,
  363. DW_ATE_HP_floathpintel := $84,DW_ATE_HP_imaginary_float80 := $85,
  364. DW_ATE_HP_imaginary_float128 := $86
  365. );
  366. const
  367. DW_ATE_lo_user = $80;
  368. DW_ATE_hi_user = $ff;
  369. type
  370. Tdwarf_array_dim_ordering = (DW_ORD_row_major := 0,DW_ORD_col_major := 1
  371. );
  372. { Access attribute. }
  373. Tdwarf_access_attribute = (DW_ACCESS_public := 1,DW_ACCESS_protected := 2,
  374. DW_ACCESS_private := 3);
  375. { Visibility. }
  376. Tdwarf_visibility_attribute = (DW_VIS_local := 1,DW_VIS_exported := 2,
  377. DW_VIS_qualified := 3);
  378. { Virtuality. }
  379. Tdwarf_virtuality_attribute = (DW_VIRTUALITY_none := 0,DW_VIRTUALITY_virtual := 1,
  380. DW_VIRTUALITY_pure_virtual := 2);
  381. { Case sensitivity. }
  382. Tdwarf_id_case = (DW_ID_case_sensitive := 0,DW_ID_up_case := 1,
  383. DW_ID_down_case := 2,DW_ID_case_insensitive := 3
  384. );
  385. { Calling convention. }
  386. Tdwarf_calling_convention = (DW_CC_normal := $1,DW_CC_program := $2,
  387. DW_CC_nocall := $3,DW_CC_GNU_renesas_sh := $40, DW_CC_GNU_borland_fastcall_i386 := $41
  388. );
  389. {$notes off}
  390. { Location atom names and codes. }
  391. Tdwarf_location_atom = (DW_OP_addr := $03,DW_OP_deref := $06,DW_OP_const1u := $08,
  392. DW_OP_const1s := $09,DW_OP_const2u := $0a,
  393. DW_OP_const2s := $0b,DW_OP_const4u := $0c,
  394. DW_OP_const4s := $0d,DW_OP_const8u := $0e,
  395. DW_OP_const8s := $0f,DW_OP_constu := $10,
  396. DW_OP_consts := $11,DW_OP_dup := $12,DW_OP_drop := $13,
  397. DW_OP_over := $14,DW_OP_pick := $15,DW_OP_swap := $16,
  398. DW_OP_rot := $17,DW_OP_xderef := $18,DW_OP_abs := $19,
  399. DW_OP_and := $1a,DW_OP_div := $1b,DW_OP_minus := $1c,
  400. DW_OP_mod := $1d,DW_OP_mul := $1e,DW_OP_neg := $1f,
  401. DW_OP_not := $20,DW_OP_or := $21,DW_OP_plus := $22,
  402. DW_OP_plus_uconst := $23,DW_OP_shl := $24,
  403. DW_OP_shr := $25,DW_OP_shra := $26,DW_OP_xor := $27,
  404. DW_OP_bra := $28,DW_OP_eq := $29,DW_OP_ge := $2a,
  405. DW_OP_gt := $2b,DW_OP_le := $2c,DW_OP_lt := $2d,
  406. DW_OP_ne := $2e,DW_OP_skip := $2f,DW_OP_lit0 := $30,
  407. DW_OP_lit1 := $31,DW_OP_lit2 := $32,DW_OP_lit3 := $33,
  408. DW_OP_lit4 := $34,DW_OP_lit5 := $35,DW_OP_lit6 := $36,
  409. DW_OP_lit7 := $37,DW_OP_lit8 := $38,DW_OP_lit9 := $39,
  410. DW_OP_lit10 := $3a,DW_OP_lit11 := $3b,
  411. DW_OP_lit12 := $3c,DW_OP_lit13 := $3d,
  412. DW_OP_lit14 := $3e,DW_OP_lit15 := $3f,
  413. DW_OP_lit16 := $40,DW_OP_lit17 := $41,
  414. DW_OP_lit18 := $42,DW_OP_lit19 := $43,
  415. DW_OP_lit20 := $44,DW_OP_lit21 := $45,
  416. DW_OP_lit22 := $46,DW_OP_lit23 := $47,
  417. DW_OP_lit24 := $48,DW_OP_lit25 := $49,
  418. DW_OP_lit26 := $4a,DW_OP_lit27 := $4b,
  419. DW_OP_lit28 := $4c,DW_OP_lit29 := $4d,
  420. DW_OP_lit30 := $4e,DW_OP_lit31 := $4f,
  421. DW_OP_reg0 := $50,DW_OP_reg1 := $51,DW_OP_reg2 := $52,
  422. DW_OP_reg3 := $53,DW_OP_reg4 := $54,DW_OP_reg5 := $55,
  423. DW_OP_reg6 := $56,DW_OP_reg7 := $57,DW_OP_reg8 := $58,
  424. DW_OP_reg9 := $59,DW_OP_reg10 := $5a,DW_OP_reg11 := $5b,
  425. DW_OP_reg12 := $5c,DW_OP_reg13 := $5d,
  426. DW_OP_reg14 := $5e,DW_OP_reg15 := $5f,
  427. DW_OP_reg16 := $60,DW_OP_reg17 := $61,
  428. DW_OP_reg18 := $62,DW_OP_reg19 := $63,
  429. DW_OP_reg20 := $64,DW_OP_reg21 := $65,
  430. DW_OP_reg22 := $66,DW_OP_reg23 := $67,
  431. DW_OP_reg24 := $68,DW_OP_reg25 := $69,
  432. DW_OP_reg26 := $6a,DW_OP_reg27 := $6b,
  433. DW_OP_reg28 := $6c,DW_OP_reg29 := $6d,
  434. DW_OP_reg30 := $6e,DW_OP_reg31 := $6f,
  435. DW_OP_breg0 := $70,DW_OP_breg1 := $71,
  436. DW_OP_breg2 := $72,DW_OP_breg3 := $73,
  437. DW_OP_breg4 := $74,DW_OP_breg5 := $75,
  438. DW_OP_breg6 := $76,DW_OP_breg7 := $77,
  439. DW_OP_breg8 := $78,DW_OP_breg9 := $79,
  440. DW_OP_breg10 := $7a,DW_OP_breg11 := $7b,
  441. DW_OP_breg12 := $7c,DW_OP_breg13 := $7d,
  442. DW_OP_breg14 := $7e,DW_OP_breg15 := $7f,
  443. DW_OP_breg16 := $80,DW_OP_breg17 := $81,
  444. DW_OP_breg18 := $82,DW_OP_breg19 := $83,
  445. DW_OP_breg20 := $84,DW_OP_breg21 := $85,
  446. DW_OP_breg22 := $86,DW_OP_breg23 := $87,
  447. DW_OP_breg24 := $88,DW_OP_breg25 := $89,
  448. DW_OP_breg26 := $8a,DW_OP_breg27 := $8b,
  449. DW_OP_breg28 := $8c,DW_OP_breg29 := $8d,
  450. DW_OP_breg30 := $8e,DW_OP_breg31 := $8f,
  451. DW_OP_regx := $90,DW_OP_fbreg := $91,DW_OP_bregx := $92,
  452. DW_OP_piece := $93,DW_OP_deref_size := $94,
  453. DW_OP_xderef_size := $95,DW_OP_nop := $96,
  454. { DWARF 3 extensions. }
  455. DW_OP_push_object_address := $97,DW_OP_call2 := $98,
  456. DW_OP_call4 := $99,DW_OP_call_ref := $9a,
  457. { GNU extensions. }
  458. DW_OP_GNU_push_tls_address := $e0,
  459. { HP extensions. }
  460. DW_OP_HP_unknown := $e0,
  461. DW_OP_HP_is_value := $e1,DW_OP_HP_fltconst4 := $e2,
  462. DW_OP_HP_fltconst8 := $e3,DW_OP_HP_mod_range := $e4,
  463. DW_OP_HP_unmod_range := $e5,DW_OP_HP_tls := $e6
  464. );
  465. {$notes on}
  466. const
  467. { Implementation-defined range start. }
  468. DW_OP_lo_user = $e0;
  469. { Implementation-defined range end. }
  470. DW_OP_hi_user = $ff;
  471. const
  472. DW_LNS_extended_op = $00;
  473. { next copied from cfidwarf, need to go to something shared }
  474. DW_LNS_copy = $01;
  475. DW_LNS_advance_pc = $02;
  476. DW_LNS_advance_line = $03;
  477. DW_LNS_set_file = $04;
  478. DW_LNS_set_column = $05;
  479. DW_LNS_negate_stmt = $06;
  480. DW_LNS_set_basic_block = $07;
  481. DW_LNS_const_add_pc = $08;
  482. DW_LNS_fixed_advance_pc = $09;
  483. DW_LNS_set_prologue_end = $0a;
  484. DW_LNS_set_epilogue_begin = $0b;
  485. DW_LNS_set_isa = $0c;
  486. DW_LNE_end_sequence = $01;
  487. DW_LNE_set_address = $02;
  488. DW_LNE_define_file = $03;
  489. DW_LNE_lo_user = $80;
  490. DW_LNE_hi_user = $ff;
  491. type
  492. { TDirIndexItem }
  493. TDirIndexItem = class(TFPHashObject)
  494. private
  495. FFiles: TFPHashObjectList;
  496. public
  497. IndexNr : Integer;
  498. constructor Create(AList:TFPHashObjectList;const AName: String; AIndex: Integer);
  499. destructor Destroy;override;
  500. property Files: TFPHashObjectList read FFiles;
  501. end;
  502. { TFileIndexItem }
  503. TFileIndexItem = class(TFPHashObject)
  504. private
  505. FDirIndex: Integer;
  506. public
  507. IndexNr : Integer;
  508. constructor Create(AList:TFPHashObjectList;const AName: String; ADirIndex, AIndex: Integer);
  509. property DirIndex: Integer read FDirIndex;
  510. end;
  511. {****************************************************************************
  512. procs
  513. ****************************************************************************}
  514. function DirListSortCompare(AItem1, AItem2: Pointer): Integer;
  515. begin
  516. Result := TDirIndexItem(AItem1).IndexNr - TDirIndexItem(AItem2).IndexNr;
  517. end;
  518. function FileListSortCompare(AItem1, AItem2: Pointer): Integer;
  519. begin
  520. Result := TFileIndexItem(AItem1).IndexNr - TFileIndexItem(AItem2).IndexNr;
  521. end;
  522. {****************************************************************************
  523. TDirIndexItem
  524. ****************************************************************************}
  525. constructor TDirIndexItem.Create(AList:TFPHashObjectList;const AName: String; AIndex: Integer);
  526. begin
  527. inherited Create(AList,AName);
  528. FFiles := TFPHashObjectList.Create;
  529. IndexNr := AIndex;
  530. end;
  531. destructor TDirIndexItem.Destroy;
  532. begin
  533. FFiles.Free;
  534. inherited Destroy;
  535. end;
  536. {****************************************************************************
  537. TFileIndexItem
  538. ****************************************************************************}
  539. constructor TFileIndexItem.Create(AList:TFPHashObjectList;const AName: String; ADirIndex, AIndex: Integer);
  540. begin
  541. inherited Create(AList,Aname);
  542. FDirIndex := ADirIndex;
  543. IndexNr := AIndex;
  544. end;
  545. {****************************************************************************
  546. TDebugInfoDwarf
  547. ****************************************************************************}
  548. function TDebugInfoDwarf.relative_dwarf_path(const s:tcmdstr):tcmdstr;
  549. begin
  550. { Make a clean path for gdb. Remove trailing / and ./ prefixes and
  551. use always a / }
  552. result:=BsToSlash(ExcludeTrailingPathDelimiter(ExtractRelativePath(GetCurrentDir,FixFileName(ExpandFileName(s)))));
  553. end;
  554. procedure TDebugInfoDwarf.set_use_64bit_headers(state: boolean);
  555. begin
  556. _use_64bit_headers:=state;
  557. if not(state) then
  558. begin
  559. if (target_info.system in systems_windows+systems_wince) then
  560. offsetabstype:=aitconst_secrel32_symbol
  561. else
  562. offsetabstype:=aitconst_32bit;
  563. if (target_info.system in systems_darwin) then
  564. offsetreltype:=aitconst_darwin_dwarf_delta32
  565. else
  566. offsetreltype:=aitconst_32bit;
  567. end
  568. else
  569. begin
  570. if (target_info.system in systems_darwin) then
  571. offsetreltype:=aitconst_darwin_dwarf_delta64
  572. else
  573. offsetreltype:=aitconst_64bit;
  574. offsetabstype:=aitconst_64bit;
  575. end;
  576. end;
  577. procedure TDebugInfoDwarf.set_def_dwarf_labs(def:tdef);
  578. begin
  579. { Keep track of used dwarf entries, this info is only usefull for dwarf entries
  580. referenced by the symbols. Definitions will always include all
  581. required stabs }
  582. if def.dbg_state=dbg_state_unused then
  583. def.dbg_state:=dbg_state_used;
  584. { Need a new label? }
  585. if not assigned(def.dwarf_lab) then
  586. begin
  587. if not(tf_dwarf_only_local_labels in target_info.flags) then
  588. begin
  589. if (ds_dwarf_dbg_info_written in def.defstates) then
  590. begin
  591. if not assigned(def.typesym) then
  592. internalerror(200610011);
  593. def.dwarf_lab:=current_asmdata.RefAsmSymbol(make_mangledname('DBG',def.owner,symname(def.typesym)));
  594. def.dwarf_ref_lab:=current_asmdata.RefAsmSymbol(make_mangledname('DBGREF',def.owner,symname(def.typesym)));
  595. if is_class_or_interface_or_dispinterface(def) then
  596. tobjectdef(def).dwarf_struct_lab:=current_asmdata.RefAsmSymbol(make_mangledname('DBG2',def.owner,symname(def.typesym)));
  597. def.dbg_state:=dbg_state_written;
  598. end
  599. else
  600. begin
  601. { Create an exported DBG symbol if we are generating a def defined in the
  602. globalsymtable of the current unit }
  603. if assigned(def.typesym) and
  604. (def.owner.symtabletype=globalsymtable) and
  605. (def.owner.iscurrentunit) then
  606. begin
  607. def.dwarf_lab:=current_asmdata.DefineAsmSymbol(make_mangledname('DBG',def.owner,symname(def.typesym)),AB_GLOBAL,AT_DATA);
  608. def.dwarf_ref_lab:=current_asmdata.DefineAsmSymbol(make_mangledname('DBGREF',def.owner,symname(def.typesym)),AB_GLOBAL,AT_DATA);
  609. if is_class_or_interface_or_dispinterface(def) then
  610. tobjectdef(def).dwarf_struct_lab:=current_asmdata.DefineAsmSymbol(make_mangledname('DBG2',def.owner,symname(def.typesym)),AB_GLOBAL,AT_DATA);
  611. include(def.defstates,ds_dwarf_dbg_info_written);
  612. end
  613. else
  614. begin
  615. { The pointer typecast is needed to prevent a problem with range checking
  616. on when the typecast is changed to 'as' }
  617. current_asmdata.getdatalabel(TAsmLabel(pointer(def.dwarf_lab)));
  618. current_asmdata.getdatalabel(TAsmLabel(pointer(def.dwarf_ref_lab)));
  619. if is_class_or_interface_or_dispinterface_or_objc(def) then
  620. current_asmdata.getdatalabel(TAsmLabel(pointer(tobjectdef(def).dwarf_struct_lab)));
  621. end;
  622. end;
  623. end
  624. else
  625. begin
  626. { The pointer typecast is needed to prevent a problem with range checking
  627. on when the typecast is changed to 'as' }
  628. { addrlabel instead of datalabel because it must be a local one }
  629. current_asmdata.getaddrlabel(TAsmLabel(pointer(def.dwarf_lab)));
  630. current_asmdata.getaddrlabel(TAsmLabel(pointer(def.dwarf_ref_lab)));
  631. if is_class_or_interface_or_dispinterface_or_objc(def) then
  632. current_asmdata.getaddrlabel(TAsmLabel(pointer(tobjectdef(def).dwarf_struct_lab)));
  633. end;
  634. if def.dbg_state=dbg_state_used then
  635. deftowritelist.Add(def);
  636. defnumberlist.Add(def);
  637. end;
  638. end;
  639. function TDebugInfoDwarf.def_dwarf_lab(def: tdef): tasmsymbol;
  640. begin
  641. set_def_dwarf_labs(def);
  642. result:=def.dwarf_lab;
  643. end;
  644. function TDebugInfoDwarf.def_dwarf_class_struct_lab(def: tobjectdef): tasmsymbol;
  645. begin
  646. set_def_dwarf_labs(def);
  647. result:=def.dwarf_struct_lab;
  648. end;
  649. function TDebugInfoDwarf.def_dwarf_ref_lab(def: tdef): tasmsymbol;
  650. begin
  651. set_def_dwarf_labs(def);
  652. result:=def.dwarf_ref_lab;
  653. end;
  654. constructor TDebugInfoDwarf.Create;
  655. begin
  656. inherited Create;
  657. { 64bit headers are only supported for dwarf3 and up, so default off }
  658. use_64bit_headers := false;
  659. { we haven't generated any lineinfo yet }
  660. generated_lineinfo := false;
  661. dirlist := TFPHashObjectList.Create;
  662. { add current dir as first item (index=0) }
  663. TDirIndexItem.Create(dirlist,'.', 0);
  664. asmline := TAsmList.create;
  665. loclist := tdynamicarray.Create(4096);
  666. end;
  667. destructor TDebugInfoDwarf.Destroy;
  668. begin
  669. dirlist.Free;
  670. dirlist := nil;
  671. asmline.free;
  672. asmline:=nil;
  673. loclist.Free;
  674. loclist := nil;
  675. inherited Destroy;
  676. end;
  677. procedure TDebugInfoDwarf.enum_membersyms_callback(p:TObject; arg: pointer);
  678. begin
  679. case tsym(p).typ of
  680. fieldvarsym:
  681. appendsym_fieldvar(TAsmList(arg),tfieldvarsym(p));
  682. propertysym:
  683. appendsym_property(TAsmList(arg),tpropertysym(p));
  684. end;
  685. end;
  686. function TDebugInfoDwarf.get_file_index(afile: tinputfile): Integer;
  687. var
  688. dirname: String;
  689. diritem: TDirIndexItem;
  690. diridx: Integer;
  691. fileitem: TFileIndexItem;
  692. begin
  693. if afile.path^ = '' then
  694. dirname := '.'
  695. else
  696. begin
  697. { add the canonical form here already to avoid problems with }
  698. { paths such as './' etc }
  699. dirname := relative_dwarf_path(afile.path^);
  700. if dirname = '' then
  701. dirname := '.';
  702. end;
  703. diritem := TDirIndexItem(dirlist.Find(dirname));
  704. if diritem = nil then
  705. diritem := TDirIndexItem.Create(dirlist,dirname, dirlist.Count);
  706. diridx := diritem.IndexNr;
  707. fileitem := TFileIndexItem(diritem.files.Find(afile.name^));
  708. if fileitem = nil then
  709. begin
  710. Inc(filesequence);
  711. fileitem := TFileIndexItem.Create(diritem.files,afile.name^, diridx, filesequence);
  712. end;
  713. Result := fileitem.IndexNr;
  714. end;
  715. procedure TDebugInfoDwarf.append_attribute(attr: tdwarf_attribute; form: tdwarf_form; const values: array of const);
  716. begin
  717. if length(values)<>1 then
  718. internalerror(2009040402);
  719. append_attribute(attr,form,values[0]);
  720. end;
  721. procedure TDebugInfoDwarf.append_attribute(attr: tdwarf_attribute; form: tdwarf_form; const value: tvarrec);
  722. begin
  723. { attribute }
  724. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(cardinal(attr)));
  725. { form }
  726. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(cardinal(form)));
  727. { info itself }
  728. case form of
  729. DW_FORM_string:
  730. case value.VType of
  731. vtChar:
  732. current_asmdata.asmlists[al_dwarf_info].concat(tai_string.create(value.VChar));
  733. vtString:
  734. current_asmdata.asmlists[al_dwarf_info].concat(tai_string.create(value.VString^));
  735. vtAnsistring:
  736. current_asmdata.asmlists[al_dwarf_info].concat(tai_string.create(Ansistring(value.VAnsiString)));
  737. else
  738. internalerror(200601264);
  739. end;
  740. DW_FORM_flag:
  741. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(byte(value.VBoolean)));
  742. DW_FORM_data1:
  743. case value.VType of
  744. vtInteger:
  745. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VInteger));
  746. vtInt64:
  747. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VInt64^));
  748. vtQWord:
  749. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VQWord^));
  750. else
  751. internalerror(200602143);
  752. end;
  753. DW_FORM_data2:
  754. case value.VType of
  755. vtInteger:
  756. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_16bit(value.VInteger));
  757. vtInt64:
  758. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_16bit(value.VInt64^));
  759. vtQWord:
  760. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_16bit(value.VQWord^));
  761. else
  762. internalerror(200602144);
  763. end;
  764. DW_FORM_data4:
  765. case value.VType of
  766. vtInteger:
  767. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(value.VInteger));
  768. vtInt64:
  769. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(value.VInt64^));
  770. vtQWord:
  771. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(value.VQWord^));
  772. else
  773. internalerror(200602145);
  774. end;
  775. DW_FORM_data8:
  776. case value.VType of
  777. vtInteger:
  778. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_64bit(value.VInteger));
  779. vtInt64:
  780. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_64bit(value.VInt64^));
  781. vtQWord:
  782. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_64bit(value.VQWord^));
  783. else
  784. internalerror(200602146);
  785. end;
  786. DW_FORM_sdata:
  787. case value.VType of
  788. vtInteger:
  789. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sleb128bit(value.VInteger));
  790. vtInt64:
  791. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sleb128bit(value.VInt64^));
  792. vtQWord:
  793. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sleb128bit(value.VQWord^));
  794. else
  795. internalerror(200601285);
  796. end;
  797. DW_FORM_udata:
  798. case value.VType of
  799. vtInteger:
  800. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(value.VInteger));
  801. vtInt64:
  802. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(value.VInt64^));
  803. vtQWord:
  804. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(value.VQWord^));
  805. else
  806. internalerror(200601284);
  807. end;
  808. { block gets only the size, the rest is appended manually by the caller }
  809. DW_FORM_block1:
  810. case value.VType of
  811. vtInteger:
  812. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VInteger));
  813. vtInt64:
  814. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VInt64^));
  815. vtQWord:
  816. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(value.VQWord^));
  817. else
  818. internalerror(200602141);
  819. end;
  820. else
  821. internalerror(200601263);
  822. end;
  823. end;
  824. { writing the data through a few simply procedures allows to create easily extra information
  825. for debugging of debug info }
  826. procedure TDebugInfoDwarf.append_entry(tag : tdwarf_tag;has_children : boolean;data : array of const);
  827. var
  828. i : longint;
  829. begin
  830. { todo: store defined abbrevs, so you have to define tehm only once (for this unit) (MWE) }
  831. inc(currabbrevnumber);
  832. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_comment.Create(strpnew('Abbrev '+tostr(currabbrevnumber))));
  833. { abbrev number }
  834. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(currabbrevnumber));
  835. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(currabbrevnumber));
  836. { tag }
  837. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(tag)));
  838. { children? }
  839. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_8bit(ord(has_children)));
  840. i:=0;
  841. while i<=high(data) do
  842. begin
  843. if (i+2 > high(data)) then
  844. internalerror(2009040401);
  845. if data[i].VType<>vtInteger then
  846. internalerror(200601261);
  847. if data[i+1].VType<>vtInteger then
  848. internalerror(200601261);
  849. append_attribute(tdwarf_attribute(data[i].VInteger),tdwarf_form(data[i+1].VInteger),data[i+2]);
  850. inc(i,3);
  851. end;
  852. end;
  853. procedure TDebugInfoDwarf.append_block1(attr: tdwarf_attribute; size: aint);
  854. begin
  855. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(attr)));
  856. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_block1)));
  857. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(size));
  858. end;
  859. procedure TDebugInfoDwarf.append_labelentry(attr : tdwarf_attribute;sym : tasmsymbol);
  860. begin
  861. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(attr)));
  862. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_addr)));
  863. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sym(sym));
  864. end;
  865. procedure TDebugInfoDwarf.append_labelentry_ref(attr : tdwarf_attribute;sym : tasmsymbol);
  866. begin
  867. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(attr)));
  868. if not(tf_dwarf_only_local_labels in target_info.flags) then
  869. begin
  870. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_ref_addr)));
  871. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sym(sym))
  872. end
  873. else
  874. begin
  875. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_ref4)));
  876. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_rel_sym(offsetreltype,current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_info0'),sym));
  877. end;
  878. end;
  879. procedure TDebugInfoDwarf.append_labelentry_dataptr_common(attr : tdwarf_attribute);
  880. begin
  881. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(attr)));
  882. if use_64bit_headers then
  883. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data8)))
  884. else
  885. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data4)));
  886. end;
  887. procedure TDebugInfoDwarf.append_labelentry_dataptr_abs(attr : tdwarf_attribute;sym : tasmsymbol);
  888. begin
  889. {
  890. used for writing dwarf lineptr, loclistptr, macptr and rangelistptr classes as FORM_dataN
  891. The size of these depend on the header format
  892. Must be relative to another symbol on tf_dwarf_relative_addresses
  893. targets
  894. }
  895. if (tf_dwarf_relative_addresses in target_info.flags) then
  896. { use append_labelentry_dataptr_rel instead }
  897. internalerror(2007020210);
  898. append_labelentry_dataptr_common(attr);
  899. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_type_sym(offsetabstype,sym))
  900. end;
  901. procedure TDebugInfoDwarf.append_labelentry_dataptr_rel(attr : tdwarf_attribute;sym,endsym : tasmsymbol);
  902. begin
  903. {
  904. used for writing dwarf lineptr, loclistptr, macptr and rangelistptr classes as FORM_dataN
  905. The size of these depend on the header format
  906. Must be relative to another symbol on tf_dwarf_relative_addresses
  907. targets
  908. }
  909. append_labelentry_dataptr_common(attr);
  910. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_rel_sym(offsetreltype,sym,endsym));
  911. end;
  912. procedure TDebugInfoDwarf.finish_entry;
  913. begin
  914. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_8bit(0));
  915. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_8bit(0));
  916. end;
  917. procedure TDebugInfoDwarf.finish_children;
  918. begin
  919. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(0));
  920. end;
  921. procedure TDebugInfoDwarf.appenddef_ord(list:TAsmList;def:torddef);
  922. var
  923. basedef : tdef;
  924. sign : tdwarf_type;
  925. signform : tdwarf_form;
  926. fullbytesize : byte;
  927. begin
  928. case def.ordtype of
  929. s8bit,
  930. s16bit,
  931. s32bit,
  932. u8bit,
  933. u16bit,
  934. u32bit :
  935. begin
  936. { generate proper signed/unsigned info for types like 0..3 }
  937. { these are s8bit, but should be identified as unsigned }
  938. { because otherwise they are interpreted wrongly when used }
  939. { in a bitpacked record }
  940. if (def.low<0) then
  941. begin
  942. sign:=DW_ATE_signed;
  943. signform:=DW_FORM_sdata
  944. end
  945. else
  946. begin
  947. sign:=DW_ATE_unsigned;
  948. signform:=DW_FORM_udata
  949. end;
  950. fullbytesize:=def.size;
  951. case fullbytesize of
  952. 1:
  953. if (sign=DW_ATE_signed) then
  954. basedef:=s8inttype
  955. else
  956. basedef:=u8inttype;
  957. 2:
  958. if (sign=DW_ATE_signed) then
  959. basedef:=s16inttype
  960. else
  961. basedef:=u16inttype;
  962. 4:
  963. if (sign=DW_ATE_signed) then
  964. basedef:=s32inttype
  965. else
  966. basedef:=u32inttype;
  967. else
  968. internalerror(2008032201);
  969. end;
  970. if (def.low=torddef(basedef).low) and
  971. (def.high=torddef(basedef).high) then
  972. { base type such as byte/shortint/word/... }
  973. if assigned(def.typesym) then
  974. append_entry(DW_TAG_base_type,false,[
  975. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  976. DW_AT_encoding,DW_FORM_data1,sign,
  977. DW_AT_byte_size,DW_FORM_data1,fullbytesize])
  978. else
  979. append_entry(DW_TAG_base_type,false,[
  980. DW_AT_encoding,DW_FORM_data1,sign,
  981. DW_AT_byte_size,DW_FORM_data1,fullbytesize])
  982. else
  983. begin
  984. { subrange type }
  985. { note: don't do this 64 bit int types, they appear }
  986. { to be always clipped to s32bit for some reason }
  987. if assigned(def.typesym) then
  988. append_entry(DW_TAG_subrange_type,false,[
  989. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  990. DW_AT_lower_bound,signform,int64(def.low),
  991. DW_AT_upper_bound,signform,int64(def.high)
  992. ])
  993. else
  994. append_entry(DW_TAG_subrange_type,false,[
  995. DW_AT_lower_bound,signform,int64(def.low),
  996. DW_AT_upper_bound,signform,int64(def.high)
  997. ]);
  998. append_labelentry_ref(DW_AT_type,def_dwarf_lab(basedef));
  999. end;
  1000. finish_entry;
  1001. end;
  1002. uvoid :
  1003. begin
  1004. { gdb 6.4 doesn't support DW_TAG_unspecified_type so we
  1005. replace it with a unsigned type with size 0 (FK)
  1006. }
  1007. append_entry(DW_TAG_base_type,false,[
  1008. DW_AT_name,DW_FORM_string,'Void'#0,
  1009. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  1010. DW_AT_byte_size,DW_FORM_data1,0
  1011. ]);
  1012. finish_entry;
  1013. end;
  1014. uchar :
  1015. begin
  1016. append_entry(DW_TAG_base_type,false,[
  1017. DW_AT_name,DW_FORM_string,'Char'#0,
  1018. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned_char,
  1019. DW_AT_byte_size,DW_FORM_data1,1
  1020. ]);
  1021. finish_entry;
  1022. end;
  1023. uwidechar :
  1024. begin
  1025. append_entry(DW_TAG_base_type,false,[
  1026. DW_AT_name,DW_FORM_string,'WideChar'#0,
  1027. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned_char,
  1028. DW_AT_byte_size,DW_FORM_data1,2
  1029. ]);
  1030. finish_entry;
  1031. end;
  1032. pasbool,
  1033. bool8bit :
  1034. begin
  1035. append_entry(DW_TAG_base_type,false,[
  1036. DW_AT_name,DW_FORM_string,'Boolean'#0,
  1037. DW_AT_encoding,DW_FORM_data1,DW_ATE_boolean,
  1038. DW_AT_byte_size,DW_FORM_data1,1
  1039. ]);
  1040. finish_entry;
  1041. end;
  1042. bool16bit :
  1043. begin
  1044. append_entry(DW_TAG_base_type,false,[
  1045. DW_AT_name,DW_FORM_string,'WordBool'#0,
  1046. DW_AT_encoding,DW_FORM_data1,DW_ATE_boolean,
  1047. DW_AT_byte_size,DW_FORM_data1,2
  1048. ]);
  1049. finish_entry;
  1050. end;
  1051. bool32bit :
  1052. begin
  1053. append_entry(DW_TAG_base_type,false,[
  1054. DW_AT_name,DW_FORM_string,'LongBool'#0,
  1055. DW_AT_encoding,DW_FORM_data1,DW_ATE_boolean,
  1056. DW_AT_byte_size,DW_FORM_data1,4
  1057. ]);
  1058. finish_entry;
  1059. end;
  1060. bool64bit :
  1061. begin
  1062. append_entry(DW_TAG_base_type,false,[
  1063. DW_AT_name,DW_FORM_string,'QWordBool'#0,
  1064. DW_AT_encoding,DW_FORM_data1,DW_ATE_boolean,
  1065. DW_AT_byte_size,DW_FORM_data1,8
  1066. ]);
  1067. finish_entry;
  1068. end;
  1069. u64bit :
  1070. begin
  1071. append_entry(DW_TAG_base_type,false,[
  1072. DW_AT_name,DW_FORM_string,'QWord'#0,
  1073. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  1074. DW_AT_byte_size,DW_FORM_data1,8
  1075. ]);
  1076. finish_entry;
  1077. end;
  1078. scurrency :
  1079. begin
  1080. { we should use DW_ATE_signed_fixed, however it isn't supported yet by GDB (FK) }
  1081. append_entry(DW_TAG_base_type,false,[
  1082. DW_AT_name,DW_FORM_string,'Currency'#0,
  1083. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1084. DW_AT_byte_size,DW_FORM_data1,8
  1085. ]);
  1086. finish_entry;
  1087. end;
  1088. s64bit :
  1089. begin
  1090. append_entry(DW_TAG_base_type,false,[
  1091. DW_AT_name,DW_FORM_string,'Int64'#0,
  1092. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1093. DW_AT_byte_size,DW_FORM_data1,8
  1094. ]);
  1095. finish_entry;
  1096. end;
  1097. else
  1098. internalerror(200601287);
  1099. end;
  1100. end;
  1101. procedure TDebugInfoDwarf.appenddef_float(list:TAsmList;def:tfloatdef);
  1102. begin
  1103. case def.floattype of
  1104. s32real,
  1105. s64real,
  1106. s80real:
  1107. if assigned(def.typesym) then
  1108. append_entry(DW_TAG_base_type,false,[
  1109. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1110. DW_AT_encoding,DW_FORM_data1,DW_ATE_float,
  1111. DW_AT_byte_size,DW_FORM_data1,def.size
  1112. ])
  1113. else
  1114. append_entry(DW_TAG_base_type,false,[
  1115. DW_AT_encoding,DW_FORM_data1,DW_ATE_float,
  1116. DW_AT_byte_size,DW_FORM_data1,def.size
  1117. ]);
  1118. s64currency:
  1119. { we should use DW_ATE_signed_fixed, however it isn't supported yet by GDB (FK) }
  1120. if assigned(def.typesym) then
  1121. append_entry(DW_TAG_base_type,false,[
  1122. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1123. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1124. DW_AT_byte_size,DW_FORM_data1,8
  1125. ])
  1126. else
  1127. append_entry(DW_TAG_base_type,false,[
  1128. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1129. DW_AT_byte_size,DW_FORM_data1,8
  1130. ]);
  1131. s64comp:
  1132. if assigned(def.typesym) then
  1133. append_entry(DW_TAG_base_type,false,[
  1134. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1135. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1136. DW_AT_byte_size,DW_FORM_data1,8
  1137. ])
  1138. else
  1139. append_entry(DW_TAG_base_type,false,[
  1140. DW_AT_encoding,DW_FORM_data1,DW_ATE_signed,
  1141. DW_AT_byte_size,DW_FORM_data1,8
  1142. ]);
  1143. else
  1144. internalerror(200601289);
  1145. end;
  1146. finish_entry;
  1147. end;
  1148. procedure TDebugInfoDwarf.appenddef_enum(list:TAsmList;def:tenumdef);
  1149. var
  1150. hp : tenumsym;
  1151. begin
  1152. if assigned(def.typesym) then
  1153. append_entry(DW_TAG_enumeration_type,true,[
  1154. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1155. DW_AT_byte_size,DW_FORM_data1,def.size
  1156. ])
  1157. else
  1158. append_entry(DW_TAG_enumeration_type,true,[
  1159. DW_AT_byte_size,DW_FORM_data1,def.size
  1160. ]);
  1161. if assigned(def.basedef) then
  1162. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.basedef));
  1163. finish_entry;
  1164. { write enum symbols }
  1165. hp:=tenumsym(def.firstenum);
  1166. while assigned(hp) do
  1167. begin
  1168. append_entry(DW_TAG_enumerator,false,[
  1169. DW_AT_name,DW_FORM_string,symname(hp)+#0,
  1170. DW_AT_const_value,DW_FORM_data4,hp.value
  1171. ]);
  1172. finish_entry;
  1173. hp:=tenumsym(hp).nextenum;
  1174. end;
  1175. finish_children;
  1176. end;
  1177. procedure TDebugInfoDwarf.appenddef_array(list:TAsmList;def:tarraydef);
  1178. var
  1179. size : aint;
  1180. elesize : aint;
  1181. elestrideattr : tdwarf_attribute;
  1182. labsym: tasmlabel;
  1183. begin
  1184. if is_dynamic_array(def) then
  1185. begin
  1186. { It's a pointer to the actual array }
  1187. current_asmdata.getaddrlabel(labsym);
  1188. append_entry(DW_TAG_pointer_type,false,[]);
  1189. append_labelentry_ref(DW_AT_type,labsym);
  1190. finish_entry;
  1191. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(labsym,0));
  1192. end;
  1193. if not is_packed_array(def) then
  1194. begin
  1195. elestrideattr := DW_AT_byte_stride;
  1196. elesize := def.elesize;
  1197. end
  1198. else
  1199. begin
  1200. elestrideattr := DW_AT_stride_size;
  1201. elesize := def.elepackedbitsize;
  1202. end;
  1203. if is_special_array(def) then
  1204. begin
  1205. { no known size, no known upper bound }
  1206. if assigned(def.typesym) then
  1207. append_entry(DW_TAG_array_type,true,[
  1208. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0
  1209. ])
  1210. else
  1211. append_entry(DW_TAG_array_type,true,[]);
  1212. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef));
  1213. finish_entry;
  1214. { a missing upper bound means "unknown"/default }
  1215. append_entry(DW_TAG_subrange_type,false,[
  1216. DW_AT_lower_bound,DW_FORM_sdata,def.lowrange,
  1217. elestrideattr,DW_FORM_udata,elesize
  1218. ]);
  1219. end
  1220. else
  1221. begin
  1222. size:=def.size;
  1223. if assigned(def.typesym) then
  1224. append_entry(DW_TAG_array_type,true,[
  1225. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1226. DW_AT_byte_size,DW_FORM_udata,size
  1227. ])
  1228. else
  1229. append_entry(DW_TAG_array_type,true,[
  1230. DW_AT_byte_size,DW_FORM_udata,size
  1231. ]);
  1232. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef));
  1233. finish_entry;
  1234. { to simplify things, we don't write a multidimensional array here }
  1235. append_entry(DW_TAG_subrange_type,false,[
  1236. DW_AT_lower_bound,DW_FORM_sdata,def.lowrange,
  1237. DW_AT_upper_bound,DW_FORM_sdata,def.highrange,
  1238. elestrideattr,DW_FORM_udata,elesize
  1239. ]);
  1240. end;
  1241. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.rangedef));
  1242. finish_entry;
  1243. finish_children;
  1244. end;
  1245. procedure TDebugInfoDwarf.appenddef_record(list:TAsmList;def:trecorddef);
  1246. begin
  1247. if assigned(def.typesym) then
  1248. appenddef_record_named(list,def,symname(def.typesym))
  1249. else
  1250. appenddef_record_named(list,def,'');
  1251. end;
  1252. procedure TDebugInfoDwarf.appenddef_record_named(list:TAsmList;def:trecorddef;const name: shortstring);
  1253. begin
  1254. if (name<>'') then
  1255. append_entry(DW_TAG_structure_type,true,[
  1256. DW_AT_name,DW_FORM_string,name+#0,
  1257. DW_AT_byte_size,DW_FORM_udata,def.size
  1258. ])
  1259. else
  1260. append_entry(DW_TAG_structure_type,true,[
  1261. DW_AT_byte_size,DW_FORM_udata,def.size
  1262. ]);
  1263. finish_entry;
  1264. def.symtable.symList.ForEachCall(@enum_membersyms_callback,nil);
  1265. finish_children;
  1266. end;
  1267. procedure TDebugInfoDwarf.appenddef_pointer(list:TAsmList;def:tpointerdef);
  1268. begin
  1269. append_entry(DW_TAG_pointer_type,false,[]);
  1270. if not(is_voidpointer(def)) then
  1271. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.pointeddef));
  1272. finish_entry;
  1273. end;
  1274. procedure TDebugInfoDwarf.appenddef_string(list:TAsmList;def:tstringdef);
  1275. procedure addnormalstringdef(const name: shortstring; lendef: tdef; maxlen: aword);
  1276. var
  1277. { maxlen can be > high(int64) }
  1278. slen : aword;
  1279. arr : tasmlabel;
  1280. begin
  1281. { fix length of openshortstring }
  1282. slen:=aword(def.len);
  1283. if (slen=0) or
  1284. (slen>maxlen) then
  1285. slen:=maxlen;
  1286. { create a structure with two elements }
  1287. if not(tf_dwarf_only_local_labels in target_info.flags) then
  1288. current_asmdata.getdatalabel(arr)
  1289. else
  1290. current_asmdata.getaddrlabel(arr);
  1291. append_entry(DW_TAG_structure_type,true,[
  1292. DW_AT_name,DW_FORM_string,name+#0,
  1293. DW_AT_byte_size,DW_FORM_udata,qword(lendef.size)+slen
  1294. ]);
  1295. finish_entry;
  1296. { length entry }
  1297. append_entry(DW_TAG_member,false,[
  1298. DW_AT_name,DW_FORM_string,'length'#0,
  1299. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(0)
  1300. ]);
  1301. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  1302. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(0));
  1303. append_labelentry_ref(DW_AT_type,def_dwarf_lab(lendef));
  1304. finish_entry;
  1305. { string data entry }
  1306. append_entry(DW_TAG_member,false,[
  1307. DW_AT_name,DW_FORM_string,'st'#0,
  1308. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(1)
  1309. ]);
  1310. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  1311. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(lendef.size));
  1312. append_labelentry_ref(DW_AT_type,arr);
  1313. finish_entry;
  1314. finish_children;
  1315. { now the data array }
  1316. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(arr,0));
  1317. append_entry(DW_TAG_array_type,true,[
  1318. DW_AT_byte_size,DW_FORM_udata,def.size,
  1319. DW_AT_byte_stride,DW_FORM_udata,1
  1320. ]);
  1321. append_labelentry_ref(DW_AT_type,def_dwarf_lab(cchartype));
  1322. finish_entry;
  1323. append_entry(DW_TAG_subrange_type,false,[
  1324. DW_AT_lower_bound,DW_FORM_udata,0,
  1325. DW_AT_upper_bound,DW_FORM_udata,qword(slen)
  1326. ]);
  1327. append_labelentry_ref(DW_AT_type,def_dwarf_lab(lendef));
  1328. finish_entry;
  1329. finish_children;
  1330. end;
  1331. begin
  1332. case def.stringtype of
  1333. st_shortstring:
  1334. begin
  1335. addnormalstringdef('ShortString',u8inttype,255);
  1336. end;
  1337. st_longstring:
  1338. begin
  1339. { a) we don't actually support variables of this type currently
  1340. b) this type is only used as the type for constant strings
  1341. > 255 characters
  1342. c) in such a case, gdb will allocate and initialise enough
  1343. memory to hold the maximum size for such a string
  1344. -> don't use high(qword)/high(cardinal) as maximum, since that
  1345. will cause exhausting the VM space, but some "reasonably high"
  1346. number that should be enough for most constant strings
  1347. }
  1348. {$ifdef cpu64bitaddr}
  1349. addnormalstringdef('LongString',u64inttype,qword(1024*1024));
  1350. {$else cpu64bitaddr}
  1351. addnormalstringdef('LongString',u32inttype,cardinal(1024*1024));
  1352. {$endif cpu64bitaddr}
  1353. end;
  1354. st_ansistring:
  1355. begin
  1356. { looks like a pchar }
  1357. append_entry(DW_TAG_pointer_type,false,[]);
  1358. append_labelentry_ref(DW_AT_type,def_dwarf_lab(cchartype));
  1359. finish_entry;
  1360. end;
  1361. st_unicodestring,
  1362. st_widestring:
  1363. begin
  1364. { looks like a pwidechar }
  1365. append_entry(DW_TAG_pointer_type,false,[]);
  1366. append_labelentry_ref(DW_AT_type,def_dwarf_lab(cwidechartype));
  1367. finish_entry;
  1368. end;
  1369. end;
  1370. end;
  1371. procedure TDebugInfoDwarf.appenddef_procvar(list:TAsmList;def:tprocvardef);
  1372. procedure doappend;
  1373. var
  1374. i : longint;
  1375. begin
  1376. if assigned(def.typesym) then
  1377. append_entry(DW_TAG_subroutine_type,true,[
  1378. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  1379. DW_AT_prototyped,DW_FORM_flag,true
  1380. ])
  1381. else
  1382. append_entry(DW_TAG_subroutine_type,true,[
  1383. DW_AT_prototyped,DW_FORM_flag,true
  1384. ]);
  1385. if not(is_void(tprocvardef(def).returndef)) then
  1386. append_labelentry_ref(DW_AT_type,def_dwarf_lab(tprocvardef(def).returndef));
  1387. finish_entry;
  1388. { write parameters }
  1389. for i:=0 to def.paras.count-1 do
  1390. begin
  1391. append_entry(DW_TAG_formal_parameter,false,[
  1392. DW_AT_name,DW_FORM_string,symname(tsym(def.paras[i]))+#0
  1393. ]);
  1394. append_labelentry_ref(DW_AT_type,def_dwarf_lab(tparavarsym(def.paras[i]).vardef));
  1395. finish_entry;
  1396. end;
  1397. finish_children;
  1398. end;
  1399. var
  1400. proc : tasmlabel;
  1401. begin
  1402. if def.is_methodpointer then
  1403. begin
  1404. { create a structure with two elements }
  1405. if not(tf_dwarf_only_local_labels in target_info.flags) then
  1406. current_asmdata.getdatalabel(proc)
  1407. else
  1408. current_asmdata.getaddrlabel(proc);
  1409. append_entry(DW_TAG_structure_type,true,[
  1410. DW_AT_byte_size,DW_FORM_data1,2*sizeof(pint)
  1411. ]);
  1412. finish_entry;
  1413. { proc entry }
  1414. append_entry(DW_TAG_member,false,[
  1415. DW_AT_name,DW_FORM_string,'Proc'#0,
  1416. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(0)
  1417. ]);
  1418. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  1419. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(0));
  1420. append_labelentry_ref(DW_AT_type,proc);
  1421. finish_entry;
  1422. { self entry }
  1423. append_entry(DW_TAG_member,false,[
  1424. DW_AT_name,DW_FORM_string,'Self'#0,
  1425. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(sizeof(pint))
  1426. ]);
  1427. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  1428. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(sizeof(pint)));
  1429. append_labelentry_ref(DW_AT_type,def_dwarf_lab(class_tobject));
  1430. finish_entry;
  1431. finish_children;
  1432. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(proc,0));
  1433. doappend;
  1434. end
  1435. else
  1436. doappend;
  1437. end;
  1438. procedure TDebugInfoDwarf.beforeappenddef(list:TAsmList;def:tdef);
  1439. var
  1440. labsym : tasmsymbol;
  1441. begin
  1442. current_asmdata.asmlists[al_dwarf_info].concat(tai_comment.Create(strpnew('Definition '+def.typename)));
  1443. labsym:=def_dwarf_lab(def);
  1444. if ds_dwarf_dbg_info_written in def.defstates then
  1445. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create_global(labsym,0))
  1446. else
  1447. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(labsym,0));
  1448. { On Darwin, dwarf info is not linked in the final binary,
  1449. but kept in the individual object files. This allows for
  1450. faster linking, but means that you have to keep the object
  1451. files for debugging and also that gdb only loads in the
  1452. debug info of a particular object file once you step into
  1453. or over a procedure in it.
  1454. To solve this, there is a tool called dsymutil which can
  1455. extract all the dwarf info from a program's object files.
  1456. This utility however performs "smart linking" on the dwarf
  1457. info and throws away all unreferenced dwarf entries. Since
  1458. variables' types always point to the dwarfinfo for a tdef
  1459. and never to that for a typesym, this means all debug
  1460. entries generated for typesyms are thrown away.
  1461. The problem with that is that we translate typesyms into
  1462. DW_TAG_typedef, and gdb's dwarf-2 reader only makes types
  1463. globally visibly if they are defined using a DW_TAG_typedef.
  1464. So as a result, before running dsymutil types only become
  1465. available once you stepped into/over a function in the object
  1466. file where they are declared, and after running dsymutil they
  1467. are all gone (printing variables still works because the
  1468. tdef dwarf info is still available, but you cannot typecast
  1469. anything outside the declaring units because the type names
  1470. are not known there).
  1471. The solution: if a tdef has an associated typesym, let the
  1472. debug label for the tdef point to a DW_TAG_typedef instead
  1473. of directly to the tdef itself. And don't write anything
  1474. special for the typesym itself.
  1475. Update: we now also do this for other platforms, because
  1476. otherwise if you compile unit A without debug info and
  1477. use one of its types in unit B, then no typedef will be
  1478. generated and hence gdb will not be able to give a definition
  1479. of the type.
  1480. }
  1481. if is_objc_class_or_protocol(def) then
  1482. begin
  1483. { for Objective-C classes, the typedef must refer to the
  1484. struct itself, not to the pointer of the struct; Objective-C
  1485. classes are not implicit pointers in Objective-C itself, only
  1486. in FPC. So make the def label point to a pointer to the
  1487. typedef, which in turn refers to the actual struct (for Delphi-
  1488. style classes, the def points to the typedef, which refers to
  1489. a pointer to the actual struct) }
  1490. { implicit pointer }
  1491. current_asmdata.getaddrlabel(TAsmLabel(pointer(labsym)));
  1492. append_entry(DW_TAG_pointer_type,false,[]);
  1493. append_labelentry_ref(DW_AT_type,labsym);
  1494. finish_entry;
  1495. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(labsym,0));
  1496. end;
  1497. if assigned(def.typesym) and
  1498. not(df_generic in def.defoptions) then
  1499. begin
  1500. current_asmdata.getaddrlabel(TAsmLabel(pointer(labsym)));
  1501. append_entry(DW_TAG_typedef,false,[
  1502. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0
  1503. ]);
  1504. append_labelentry_ref(DW_AT_type,labsym);
  1505. finish_entry;
  1506. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(labsym,0));
  1507. end
  1508. end;
  1509. procedure TDebugInfoDwarf.afterappenddef(list:TAsmList;def:tdef);
  1510. var
  1511. labsym : tasmsymbol;
  1512. begin
  1513. { create a derived reference type for pass-by-reference parameters }
  1514. { (gdb doesn't support DW_AT_variable_parameter yet) }
  1515. labsym:=def_dwarf_ref_lab(def);
  1516. if ds_dwarf_dbg_info_written in def.defstates then
  1517. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create_global(labsym,0))
  1518. else
  1519. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(labsym,0));
  1520. append_entry(DW_TAG_reference_type,false,[]);
  1521. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def));
  1522. finish_entry;
  1523. end;
  1524. procedure TDebugInfoDwarf.appendprocdef(list:TAsmList; def:tprocdef);
  1525. function dwarf_calling_convention(def: tprocdef): Tdwarf_calling_convention;
  1526. begin
  1527. case def.proccalloption of
  1528. pocall_register:
  1529. result:=DW_CC_GNU_borland_fastcall_i386;
  1530. pocall_cdecl,
  1531. pocall_stdcall,
  1532. pocall_cppdecl,
  1533. pocall_mwpascal:
  1534. result:=DW_CC_normal;
  1535. else
  1536. result:=DW_CC_nocall;
  1537. end
  1538. end;
  1539. var
  1540. procendlabel : tasmlabel;
  1541. procentry : string;
  1542. cc : Tdwarf_calling_convention;
  1543. st : tsymtable;
  1544. vmtindexnr : pint;
  1545. incurrentunit : boolean;
  1546. begin
  1547. { only write debug info for procedures defined in the current module,
  1548. except in case of methods (gcc-compatible)
  1549. }
  1550. st:=def.owner;
  1551. while not(st.symtabletype in [globalsymtable,staticsymtable]) do
  1552. st:=st.defowner.owner;
  1553. incurrentunit:=st.iscurrentunit;
  1554. if not incurrentunit and
  1555. (def.owner.symtabletype<>objectsymtable) then
  1556. exit;
  1557. { happens for init procdef of units without init section }
  1558. if incurrentunit and
  1559. not assigned(def.procstarttai) then
  1560. exit;
  1561. { Procdefs are not handled by the regular def writing code, so
  1562. dbg_state is not set/checked for them. Do it here. }
  1563. if (def.dbg_state in [dbg_state_writing,dbg_state_written]) then
  1564. exit;
  1565. defnumberlist.Add(def);
  1566. { Write methods and only in the scope of their parent objectdefs. }
  1567. if (def.owner.symtabletype=objectsymtable) then
  1568. begin
  1569. { this code can also work for nested procdefs, but is not yet
  1570. activated for those because there is no clear advantage yet to
  1571. limiting the scope of nested procedures to that of their parent,
  1572. and it makes it impossible to set breakpoints in them by
  1573. referring to their name. }
  1574. st:=def.owner;
  1575. while assigned(st.defowner) and
  1576. (tdef(st.defowner).typ = procdef) do
  1577. st:=tprocdef(st.defowner).owner;
  1578. if assigned(st) and
  1579. (tdef(st.defowner).dbg_state<>dbg_state_writing) then
  1580. exit;
  1581. end;
  1582. def.dbg_state:=dbg_state_writing;
  1583. current_asmdata.asmlists[al_dwarf_info].concat(tai_comment.Create(strpnew('Procdef '+def.fullprocname(true))));
  1584. if not is_objc_class_or_protocol(def._class) then
  1585. append_entry(DW_TAG_subprogram,true,
  1586. [DW_AT_name,DW_FORM_string,symname(def.procsym)+#0
  1587. { data continues below }
  1588. { problem: base reg isn't known here
  1589. DW_AT_frame_base,DW_FORM_block1,1
  1590. }
  1591. ])
  1592. else
  1593. append_entry(DW_TAG_subprogram,true,
  1594. [DW_AT_name,DW_FORM_string,def.mangledname+#0
  1595. { data continues below }
  1596. { problem: base reg isn't known here
  1597. DW_AT_frame_base,DW_FORM_block1,1
  1598. }
  1599. ]);
  1600. { Append optional flags. }
  1601. { All Pascal procedures are prototyped }
  1602. append_attribute(DW_AT_prototyped,DW_FORM_flag,[true]);
  1603. { Calling convention. }
  1604. cc:=dwarf_calling_convention(def);
  1605. if (cc<>DW_CC_normal) then
  1606. append_attribute(DW_AT_calling_convention,DW_FORM_data1,[ord(cc)]);
  1607. { Externally visible. }
  1608. if (po_global in def.procoptions) and
  1609. (def.parast.symtablelevel<=normal_function_level) then
  1610. append_attribute(DW_AT_external,DW_FORM_flag,[true]);
  1611. { Abstract or virtual/overriding method. }
  1612. if (([po_abstractmethod, po_virtualmethod, po_overridingmethod] * def.procoptions) <> []) and
  1613. not is_objc_class_or_protocol(def._class) then
  1614. begin
  1615. if not(po_abstractmethod in def.procoptions) then
  1616. append_attribute(DW_AT_virtuality,DW_FORM_data1,[ord(DW_VIRTUALITY_virtual)])
  1617. else
  1618. append_attribute(DW_AT_virtuality,DW_FORM_data1,[ord(DW_VIRTUALITY_pure_virtual)]);
  1619. { Element number in the vmt (needs to skip stuff coming before the
  1620. actual method addresses in the vmt, so we use vmtmethodoffset()
  1621. and then divide by sizeof(pint)). }
  1622. vmtindexnr:=tobjectdef(def.owner.defowner).vmtmethodoffset(def.extnumber) div sizeof(pint);
  1623. append_attribute(DW_AT_vtable_elem_location,DW_FORM_block1,[1+LengthUleb128(vmtindexnr)]);
  1624. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_constu)));
  1625. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.Create_uleb128bit(vmtindexnr));
  1626. end;
  1627. { accessibility: public/private/protected }
  1628. if (def.owner.symtabletype=objectsymtable) then
  1629. append_visibility(def.visibility);
  1630. { Return type. }
  1631. if not(is_void(tprocdef(def).returndef)) then
  1632. append_labelentry_ref(DW_AT_type,def_dwarf_lab(tprocdef(def).returndef));
  1633. { we can only write the start/end if this procedure is implemented in
  1634. this module
  1635. }
  1636. if incurrentunit then
  1637. begin
  1638. { mark end of procedure }
  1639. current_asmdata.getlabel(procendlabel,alt_dbgtype);
  1640. current_asmdata.asmlists[al_procedures].insertbefore(tai_label.create(procendlabel),def.procendtai);
  1641. if (target_info.system = system_powerpc64_linux) then
  1642. procentry := '.' + def.mangledname
  1643. else
  1644. procentry := def.mangledname;
  1645. append_labelentry(DW_AT_low_pc,current_asmdata.RefAsmSymbol(procentry));
  1646. append_labelentry(DW_AT_high_pc,procendlabel);
  1647. end;
  1648. { Don't write the funcretsym explicitly, it's also in the
  1649. localsymtable and/or parasymtable.
  1650. }
  1651. finish_entry;
  1652. if assigned(def.parast) then
  1653. begin
  1654. { First insert self, because gdb uses the fact whether or not the
  1655. first parameter of a method is artificial to distinguish static
  1656. from regular methods. }
  1657. { fortunately, self is the always the first parameter in the
  1658. paralist, since it has the lowest paranr. Note that this is not
  1659. true for Objective-C, but those methods are detected in
  1660. another way (by reading the ObjC run time information) }
  1661. write_symtable_parasyms(current_asmdata.asmlists[al_dwarf_info],def.paras);
  1662. end;
  1663. { local type defs and vars should not be written
  1664. inside the main proc }
  1665. if incurrentunit and
  1666. assigned(def.localst) and
  1667. (def.localst.symtabletype=localsymtable) then
  1668. write_symtable_syms(current_asmdata.asmlists[al_dwarf_info],def.localst);
  1669. { last write the types from this procdef }
  1670. if assigned(def.parast) then
  1671. write_symtable_defs(current_asmdata.asmlists[al_dwarf_info],def.parast);
  1672. { only try to write the localst if the routine is implemented here }
  1673. if incurrentunit and
  1674. assigned(def.localst) and
  1675. (def.localst.symtabletype=localsymtable) then
  1676. begin
  1677. write_symtable_defs(current_asmdata.asmlists[al_dwarf_info],def.localst);
  1678. { Write nested procedures -- disabled, see scope check at the
  1679. beginning; currently, these are still written in the global
  1680. scope. }
  1681. // write_symtable_procdefs(current_asmdata.asmlists[al_dwarf_info],def.localst);
  1682. end;
  1683. finish_children;
  1684. end;
  1685. function TDebugInfoDwarf.get_symlist_sym_offset(symlist: ppropaccesslistitem; out sym: tabstractvarsym; out offset: pint): boolean;
  1686. var
  1687. elesize : pint;
  1688. currdef : tdef;
  1689. indirection: boolean;
  1690. begin
  1691. result:=false;
  1692. if not assigned(symlist) then
  1693. exit;
  1694. sym:=nil;
  1695. offset:=0;
  1696. currdef:=nil;
  1697. indirection:=false;
  1698. repeat
  1699. case symlist^.sltype of
  1700. sl_load:
  1701. begin
  1702. if assigned(sym) then
  1703. internalerror(2009031203);
  1704. if not(symlist^.sym.typ in [paravarsym,localvarsym,staticvarsym,fieldvarsym]) then
  1705. { can't handle... }
  1706. exit;
  1707. sym:=tabstractvarsym(symlist^.sym);
  1708. currdef:=tabstractvarsym(sym).vardef;
  1709. if ((sym.typ=paravarsym) and
  1710. paramanager.push_addr_param(tparavarsym(sym).varspez,sym.vardef,tprocdef(sym.owner.defowner).proccalloption)) then
  1711. indirection:=true;
  1712. end;
  1713. sl_subscript:
  1714. begin
  1715. if not assigned(currdef) then
  1716. internalerror(2009031301);
  1717. if (symlist^.sym.typ<>fieldvarsym) then
  1718. internalerror(2009031202);
  1719. { can't handle offsets with indirections yet }
  1720. if indirection then
  1721. exit;
  1722. if is_packed_record_or_object(currdef) then
  1723. begin
  1724. { can't calculate the address of a non-byte aligned field }
  1725. if (tfieldvarsym(symlist^.sym).fieldoffset mod 8) <> 0 then
  1726. exit;
  1727. inc(offset,tfieldvarsym(symlist^.sym).fieldoffset div 8)
  1728. end
  1729. else
  1730. inc(offset,tfieldvarsym(symlist^.sym).fieldoffset);
  1731. currdef:=tfieldvarsym(symlist^.sym).vardef;
  1732. end;
  1733. sl_absolutetype,
  1734. sl_typeconv:
  1735. begin
  1736. currdef:=tfieldvarsym(symlist^.sym).vardef;
  1737. { ignore, these don't change the address }
  1738. end;
  1739. sl_vec:
  1740. begin
  1741. if not assigned(currdef) or
  1742. (currdef.typ<>arraydef) then
  1743. internalerror(2009031201);
  1744. { can't handle offsets with indirections yet }
  1745. if indirection then
  1746. exit;
  1747. if not is_packed_array(currdef) then
  1748. elesize:=tarraydef(currdef).elesize
  1749. else
  1750. begin
  1751. elesize:=tarraydef(currdef).elepackedbitsize;
  1752. { can't calculate the address of a non-byte aligned element }
  1753. if (elesize mod 8)<>0 then
  1754. exit;
  1755. elesize:=elesize div 8;
  1756. end;
  1757. inc(offset,(symlist^.value.svalue-tarraydef(currdef).lowrange)*elesize);
  1758. currdef:=tarraydef(currdef).elementdef;
  1759. end;
  1760. else
  1761. internalerror(2009031401);
  1762. end;
  1763. symlist:=symlist^.next;
  1764. until not assigned(symlist);
  1765. if not assigned(sym) then
  1766. internalerror(2009031205);
  1767. result:=true;
  1768. end;
  1769. procedure TDebugInfoDwarf.appendsym_var(list:TAsmList;sym:tabstractnormalvarsym);
  1770. begin
  1771. appendsym_var_with_name_type_offset(list,sym,symname(sym),sym.vardef,0,[]);
  1772. end;
  1773. procedure TDebugInfoDwarf.appendsym_var_with_name_type_offset(list:TAsmList; sym:tabstractnormalvarsym; const name: string; def: tdef; offset: pint; const flags: tdwarfvarsymflags);
  1774. var
  1775. templist : TAsmList;
  1776. blocksize : longint;
  1777. tag : tdwarf_tag;
  1778. dreg : byte;
  1779. begin
  1780. { external symbols can't be resolved at link time, so we
  1781. can't generate stabs for them
  1782. not sure if this applies to dwarf as well (FK)
  1783. }
  1784. if vo_is_external in sym.varoptions then
  1785. exit;
  1786. { There is no space allocated for not referenced locals }
  1787. if (sym.owner.symtabletype=localsymtable) and (sym.refs=0) then
  1788. exit;
  1789. templist:=TAsmList.create;
  1790. case sym.localloc.loc of
  1791. LOC_REGISTER,
  1792. LOC_CREGISTER,
  1793. LOC_MMREGISTER,
  1794. LOC_CMMREGISTER,
  1795. LOC_FPUREGISTER,
  1796. LOC_CFPUREGISTER :
  1797. begin
  1798. templist.concat(tai_const.create_8bit(ord(DW_OP_regx)));
  1799. dreg:=dwarf_reg(sym.localloc.register);
  1800. templist.concat(tai_const.create_uleb128bit(dreg));
  1801. blocksize:=1+Lengthuleb128(dreg);
  1802. end;
  1803. else
  1804. begin
  1805. case sym.typ of
  1806. staticvarsym:
  1807. begin
  1808. if (vo_is_thread_var in sym.varoptions) then
  1809. begin
  1810. { TODO: !!! FIXME: dwarf for thread vars !!!}
  1811. blocksize:=0;
  1812. end
  1813. else
  1814. begin
  1815. templist.concat(tai_const.create_8bit(ord(DW_OP_addr)));
  1816. templist.concat(tai_const.createname(sym.mangledname,offset));
  1817. blocksize:=1+sizeof(puint);
  1818. end;
  1819. end;
  1820. paravarsym,
  1821. localvarsym:
  1822. begin
  1823. { Happens when writing debug info for paras of procdefs not
  1824. implemented in the current module. Can't add a general check
  1825. for LOC_INVALID above, because staticvarsyms may also have it.
  1826. }
  1827. if sym.localloc.loc<> LOC_INVALID then
  1828. begin
  1829. dreg:=dwarf_reg(sym.localloc.reference.base);
  1830. templist.concat(tai_const.create_8bit(ord(DW_OP_breg0)+dreg));
  1831. templist.concat(tai_const.create_sleb128bit(sym.localloc.reference.offset+offset));
  1832. blocksize:=1+Lengthsleb128(sym.localloc.reference.offset);
  1833. end;
  1834. end
  1835. else
  1836. internalerror(200601288);
  1837. end;
  1838. end;
  1839. end;
  1840. { function results must not be added to the parameter list,
  1841. as they are not part of the signature of the function
  1842. (gdb automatically adds them according to the ABI specifications
  1843. when calling the function)
  1844. }
  1845. if (sym.typ=paravarsym) and
  1846. not(dvf_force_local_var in flags) and
  1847. not(vo_is_funcret in sym.varoptions) then
  1848. tag:=DW_TAG_formal_parameter
  1849. else
  1850. tag:=DW_TAG_variable;
  1851. { must be parasym of externally implemented procdef, but
  1852. the parasymtable can con also contain e.g. absolutevarsyms
  1853. -> check symtabletype}
  1854. if (sym.owner.symtabletype=parasymtable) and
  1855. (sym.localloc.loc=LOC_INVALID) then
  1856. begin
  1857. if (sym.owner.symtabletype<>parasymtable) then
  1858. internalerror(2009101001);
  1859. append_entry(tag,false,[
  1860. DW_AT_name,DW_FORM_string,name+#0
  1861. {
  1862. DW_AT_decl_file,DW_FORM_data1,0,
  1863. DW_AT_decl_line,DW_FORM_data1,
  1864. }
  1865. ])
  1866. end
  1867. else if not(sym.localloc.loc in [LOC_REGISTER,LOC_CREGISTER,LOC_MMREGISTER,
  1868. LOC_CMMREGISTER,LOC_FPUREGISTER,LOC_CFPUREGISTER]) and
  1869. ((sym.owner.symtabletype = globalsymtable) or
  1870. (sp_static in sym.symoptions) or
  1871. (vo_is_public in sym.varoptions)) then
  1872. append_entry(tag,false,[
  1873. DW_AT_name,DW_FORM_string,name+#0,
  1874. {
  1875. DW_AT_decl_file,DW_FORM_data1,0,
  1876. DW_AT_decl_line,DW_FORM_data1,
  1877. }
  1878. DW_AT_external,DW_FORM_flag,true,
  1879. { data continues below }
  1880. DW_AT_location,DW_FORM_block1,blocksize
  1881. ])
  1882. {$ifdef gdb_supports_DW_AT_variable_parameter}
  1883. else if (sym.typ=paravarsym) and
  1884. paramanager.push_addr_param(sym.varspez,sym.vardef,tprocdef(sym.owner.defowner).proccalloption) and
  1885. not(vo_has_local_copy in sym.varoptions) and
  1886. not is_open_string(sym.vardef) then
  1887. append_entry(tag,false,[
  1888. DW_AT_name,DW_FORM_string,name+#0,
  1889. DW_AT_variable_parameter,DW_FORM_flag,true,
  1890. {
  1891. DW_AT_decl_file,DW_FORM_data1,0,
  1892. DW_AT_decl_line,DW_FORM_data1,
  1893. }
  1894. { data continues below }
  1895. DW_AT_location,DW_FORM_block1,blocksize
  1896. ])
  1897. {$endif gdb_supports_DW_AT_variable_parameter}
  1898. else
  1899. append_entry(tag,false,[
  1900. DW_AT_name,DW_FORM_string,name+#0,
  1901. {
  1902. DW_AT_decl_file,DW_FORM_data1,0,
  1903. DW_AT_decl_line,DW_FORM_data1,
  1904. }
  1905. { data continues below }
  1906. DW_AT_location,DW_FORM_block1,blocksize
  1907. ]);
  1908. { append block data }
  1909. current_asmdata.asmlists[al_dwarf_info].concatlist(templist);
  1910. { Mark self as artificial for methods, because gdb uses the fact
  1911. whether or not the first parameter of a method is artificial to
  1912. distinguish regular from static methods (since there are no
  1913. no vo_is_self parameters for static methods, we don't have to check
  1914. that). }
  1915. if (vo_is_self in sym.varoptions) then
  1916. append_attribute(DW_AT_artificial,DW_FORM_flag,[true]);
  1917. {$ifndef gdb_supports_DW_AT_variable_parameter}
  1918. if (sym.typ=paravarsym) and
  1919. paramanager.push_addr_param(sym.varspez,sym.vardef,tprocdef(sym.owner.defowner).proccalloption) and
  1920. not(vo_has_local_copy in sym.varoptions) and
  1921. not is_open_string(sym.vardef) then
  1922. append_labelentry_ref(DW_AT_type,def_dwarf_ref_lab(def))
  1923. else
  1924. {$endif not gdb_supports_DW_AT_variable_parameter}
  1925. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def));
  1926. templist.free;
  1927. finish_entry;
  1928. end;
  1929. procedure TDebugInfoDwarf.appendsym_staticvar(list:TAsmList;sym:tstaticvarsym);
  1930. begin
  1931. appendsym_var(list,sym);
  1932. end;
  1933. procedure TDebugInfoDwarf.appendsym_localvar(list:TAsmList;sym:tlocalvarsym);
  1934. begin
  1935. appendsym_var(list,sym);
  1936. end;
  1937. procedure TDebugInfoDwarf.appendsym_paravar(list:TAsmList;sym:tparavarsym);
  1938. begin
  1939. appendsym_var(list,sym);
  1940. end;
  1941. procedure TDebugInfoDwarf.appendsym_fieldvar(list:TAsmList;sym: tfieldvarsym);
  1942. begin
  1943. appendsym_fieldvar_with_name_offset(list,sym,symname(sym),sym.vardef,0);
  1944. end;
  1945. procedure TDebugInfoDwarf.appendsym_fieldvar_with_name_offset(list:TAsmList;sym: tfieldvarsym;const name: string; def: tdef; offset: pint);
  1946. var
  1947. bitoffset,
  1948. fieldoffset,
  1949. fieldnatsize: aint;
  1950. begin
  1951. if (sp_static in sym.symoptions) or
  1952. (sym.visibility=vis_hidden) then
  1953. exit;
  1954. if (tabstractrecordsymtable(sym.owner).usefieldalignment<>bit_alignment) or
  1955. { only ordinals are bitpacked }
  1956. not is_ordinal(sym.vardef) then
  1957. begin
  1958. { other kinds of fields can however also appear in a bitpacked }
  1959. { record, and then their offset is also specified in bits rather }
  1960. { than in bytes }
  1961. if (tabstractrecordsymtable(sym.owner).usefieldalignment<>bit_alignment) then
  1962. fieldoffset:=sym.fieldoffset
  1963. else
  1964. fieldoffset:=sym.fieldoffset div 8;
  1965. inc(fieldoffset,offset);
  1966. append_entry(DW_TAG_member,false,[
  1967. DW_AT_name,DW_FORM_string,name+#0,
  1968. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(fieldoffset)
  1969. ]);
  1970. end
  1971. else
  1972. begin
  1973. if (sym.vardef.packedbitsize > 255) then
  1974. internalerror(2007061201);
  1975. { we don't bitpack according to the ABI, but as close as }
  1976. { possible, i.e., equivalent to gcc's }
  1977. { __attribute__((__packed__)), which is also what gpc }
  1978. { does. }
  1979. fieldnatsize:=max(sizeof(pint),sym.vardef.size);
  1980. fieldoffset:=(sym.fieldoffset div (fieldnatsize*8)) * fieldnatsize;
  1981. inc(fieldoffset,offset);
  1982. bitoffset:=sym.fieldoffset mod (fieldnatsize*8);
  1983. if (target_info.endian=endian_little) then
  1984. bitoffset:=(fieldnatsize*8)-bitoffset-sym.vardef.packedbitsize;
  1985. append_entry(DW_TAG_member,false,[
  1986. DW_AT_name,DW_FORM_string,symname(sym)+#0,
  1987. { gcc also generates both a bit and byte size attribute }
  1988. { we don't support ordinals >= 256 bits }
  1989. DW_AT_byte_size,DW_FORM_data1,fieldnatsize,
  1990. { nor >= 256 bits (not yet, anyway, see IE above) }
  1991. DW_AT_bit_size,DW_FORM_data1,sym.vardef.packedbitsize,
  1992. { data1 and data2 are unsigned, bitoffset can also be negative }
  1993. DW_AT_bit_offset,DW_FORM_data4,bitoffset,
  1994. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(fieldoffset)
  1995. ]);
  1996. end;
  1997. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  1998. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(fieldoffset));
  1999. if (sym.owner.symtabletype=objectsymtable) then
  2000. append_visibility(sym.visibility);
  2001. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def));
  2002. finish_entry;
  2003. end;
  2004. procedure TDebugInfoDwarf.appendsym_const(list:TAsmList;sym:tconstsym);
  2005. var
  2006. i,
  2007. size: aint;
  2008. usedef: tdef;
  2009. begin
  2010. { These are default values of parameters. These should be encoded
  2011. via DW_AT_default_value, not as a separate sym. Moreover, their
  2012. type is not available when writing the debug info for external
  2013. procedures.
  2014. }
  2015. if (sym.owner.symtabletype=parasymtable) then
  2016. exit;
  2017. append_entry(DW_TAG_variable,false,[
  2018. DW_AT_name,DW_FORM_string,symname(sym)+#0
  2019. ]);
  2020. { for string constants, constdef isn't set because they have no real type }
  2021. case sym.consttyp of
  2022. conststring:
  2023. begin
  2024. { if DW_FORM_string is used below one day, this usedef should
  2025. probably become 0 }
  2026. if (sym.value.len<=255) then
  2027. usedef:=cshortstringtype
  2028. else
  2029. usedef:=clongstringtype;
  2030. end;
  2031. constresourcestring,
  2032. constwstring:
  2033. usedef:=nil;
  2034. else
  2035. usedef:=sym.constdef;
  2036. end;
  2037. if assigned(usedef) then
  2038. append_labelentry_ref(DW_AT_type,def_dwarf_lab(usedef));
  2039. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_AT_const_value)));
  2040. case sym.consttyp of
  2041. conststring:
  2042. begin
  2043. { DW_FORM_string isn't supported yet by the Pascal value printer
  2044. -> create a string using raw bytes }
  2045. if (sym.value.len<=255) then
  2046. begin
  2047. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_block1)));
  2048. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(sym.value.len+1));
  2049. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(sym.value.len));
  2050. end
  2051. else
  2052. begin
  2053. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_block)));
  2054. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(sym.value.len+sizeof(pint)));
  2055. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_pint(sym.value.len));
  2056. end;
  2057. i:=0;
  2058. size:=sym.value.len;
  2059. while(i<size) do
  2060. begin
  2061. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit((pbyte(sym.value.valueptr+i)^)));
  2062. inc(i);
  2063. end;
  2064. end;
  2065. constguid,
  2066. constset:
  2067. begin
  2068. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_block1)));
  2069. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(usedef.size));
  2070. i:=0;
  2071. size:=sym.constdef.size;
  2072. while (i<size) do
  2073. begin
  2074. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit((pbyte(sym.value.valueptr+i)^)));
  2075. inc(i);
  2076. end;
  2077. end;
  2078. constwstring,
  2079. constresourcestring:
  2080. begin
  2081. { write dummy for now }
  2082. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_string)));
  2083. current_asmdata.asmlists[al_dwarf_info].concat(tai_string.create(''));
  2084. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(0));
  2085. end;
  2086. constord:
  2087. begin
  2088. if (sym.value.valueord<0) then
  2089. begin
  2090. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_sdata)));
  2091. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_sleb128bit(sym.value.valueord.svalue));
  2092. end
  2093. else
  2094. begin
  2095. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_udata)));
  2096. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(sym.value.valueord.uvalue));
  2097. end;
  2098. end;
  2099. constnil:
  2100. begin
  2101. {$ifdef cpu64bitaddr}
  2102. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data8)));
  2103. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_64bit(0));
  2104. {$else cpu64bitaddr}
  2105. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data4)));
  2106. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(0));
  2107. {$endif cpu64bitaddr}
  2108. end;
  2109. constpointer:
  2110. begin
  2111. {$ifdef cpu64bitaddr}
  2112. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data8)));
  2113. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_64bit(int64(sym.value.valueordptr)));
  2114. {$else cpu64bitaddr}
  2115. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_data4)));
  2116. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(longint(sym.value.valueordptr)));
  2117. {$endif cpu64bitaddr}
  2118. end;
  2119. constreal:
  2120. begin
  2121. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_uleb128bit(ord(DW_FORM_block1)));
  2122. case tfloatdef(sym.constdef).floattype of
  2123. s32real:
  2124. begin
  2125. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(4));
  2126. current_asmdata.asmlists[al_dwarf_info].concat(tai_real_32bit.create(psingle(sym.value.valueptr)^));
  2127. end;
  2128. s64comp,
  2129. s64currency,
  2130. s64real:
  2131. begin
  2132. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(8));
  2133. current_asmdata.asmlists[al_dwarf_info].concat(tai_real_64bit.create(pdouble(sym.value.valueptr)^));
  2134. end;
  2135. s80real:
  2136. begin
  2137. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(10));
  2138. current_asmdata.asmlists[al_dwarf_info].concat(tai_real_80bit.create(pextended(sym.value.valueptr)^));
  2139. end;
  2140. else
  2141. internalerror(200601291);
  2142. end;
  2143. end;
  2144. else
  2145. internalerror(200601292);
  2146. end;
  2147. finish_entry;
  2148. end;
  2149. procedure TDebugInfoDwarf.appendsym_label(list:TAsmList;sym: tlabelsym);
  2150. begin
  2151. { ignore label syms for now, the problem is that a label sym
  2152. can have more than one label associated e.g. in case of
  2153. an inline procedure expansion }
  2154. end;
  2155. procedure TDebugInfoDwarf.appendsym_property(list:TAsmList;sym: tpropertysym);
  2156. var
  2157. symlist: ppropaccesslistitem;
  2158. tosym: tabstractvarsym;
  2159. offset: pint;
  2160. begin
  2161. if assigned(sym.propaccesslist[palt_read]) and
  2162. not assigned(sym.propaccesslist[palt_read].procdef) then
  2163. symlist:=sym.propaccesslist[palt_read].firstsym
  2164. else
  2165. { can't handle }
  2166. exit;
  2167. if not get_symlist_sym_offset(symlist,tosym,offset) then
  2168. exit;
  2169. if (tosym.owner.symtabletype<>objectsymtable) then
  2170. begin
  2171. if (tosym.typ=fieldvarsym) then
  2172. internalerror(2009031404);
  2173. appendsym_var_with_name_type_offset(list,tabstractnormalvarsym(tosym),symname(sym),sym.propdef,offset,[])
  2174. end
  2175. else
  2176. appendsym_fieldvar_with_name_offset(list,tfieldvarsym(tosym),symname(sym),sym.propdef,offset)
  2177. end;
  2178. procedure TDebugInfoDwarf.appendsym_type(list:TAsmList;sym: ttypesym);
  2179. begin
  2180. { just queue the def if needed, beforeappenddef will
  2181. emit the typedef if necessary }
  2182. def_dwarf_lab(sym.typedef);
  2183. end;
  2184. procedure TDebugInfoDwarf.appendsym_absolute(list:TAsmList;sym:tabsolutevarsym);
  2185. var
  2186. templist : TAsmList;
  2187. blocksize : longint;
  2188. symlist : ppropaccesslistitem;
  2189. tosym: tabstractvarsym;
  2190. offset: pint;
  2191. flags: tdwarfvarsymflags;
  2192. begin
  2193. templist:=TAsmList.create;
  2194. case tabsolutevarsym(sym).abstyp of
  2195. toaddr :
  2196. begin
  2197. { MWE: replaced ifdef i368 }
  2198. (*
  2199. if target_cpu = cpu_i386 then
  2200. begin
  2201. { in theory, we could write a DW_AT_segment entry here for sym.absseg,
  2202. however I doubt that gdb supports this (FK) }
  2203. end;
  2204. *)
  2205. templist.concat(tai_const.create_8bit(3));
  2206. templist.concat(tai_const.create_pint(sym.addroffset));
  2207. blocksize:=1+sizeof(puint);
  2208. end;
  2209. toasm :
  2210. begin
  2211. templist.concat(tai_const.create_8bit(3));
  2212. templist.concat(tai_const.createname(sym.mangledname,0));
  2213. blocksize:=1+sizeof(puint);
  2214. end;
  2215. tovar:
  2216. begin
  2217. symlist:=tabsolutevarsym(sym).ref.firstsym;
  2218. if get_symlist_sym_offset(symlist,tosym,offset) then
  2219. begin
  2220. if (tosym.typ=fieldvarsym) then
  2221. internalerror(2009031402);
  2222. flags:=[];
  2223. if (sym.owner.symtabletype=localsymtable) then
  2224. include(flags,dvf_force_local_var);
  2225. appendsym_var_with_name_type_offset(list,tabstractnormalvarsym(tosym),symname(sym),tabstractvarsym(sym).vardef,offset,flags);
  2226. end;
  2227. templist.free;
  2228. exit;
  2229. end;
  2230. end;
  2231. append_entry(DW_TAG_variable,false,[
  2232. DW_AT_name,DW_FORM_string,symname(sym)+#0,
  2233. {
  2234. DW_AT_decl_file,DW_FORM_data1,0,
  2235. DW_AT_decl_line,DW_FORM_data1,
  2236. }
  2237. DW_AT_external,DW_FORM_flag,true,
  2238. { data continues below }
  2239. DW_AT_location,DW_FORM_block1,blocksize
  2240. ]);
  2241. { append block data }
  2242. current_asmdata.asmlists[al_dwarf_info].concatlist(templist);
  2243. append_labelentry_ref(DW_AT_type,def_dwarf_lab(sym.vardef));
  2244. templist.free;
  2245. finish_entry;
  2246. end;
  2247. procedure TDebugInfoDwarf.beforeappendsym(list:TAsmList;sym:tsym);
  2248. begin
  2249. current_asmdata.asmlists[al_dwarf_info].concat(tai_comment.Create(strpnew('Symbol '+symname(sym))));
  2250. end;
  2251. procedure TDebugInfoDwarf.insertmoduleinfo;
  2252. var
  2253. templist: TAsmList;
  2254. linelist: TAsmList;
  2255. lbl : tasmlabel;
  2256. n,m : Integer;
  2257. ditem : TDirIndexItem;
  2258. fitem : TFileIndexItem;
  2259. flist : TFPList;
  2260. dbgname : String;
  2261. begin
  2262. { insert DEBUGSTART and DEBUGEND labels }
  2263. dbgname:=make_mangledname('DEBUGSTART',current_module.localsymtable,'');
  2264. { Darwin's linker does not like two global labels both pointing to the
  2265. end of a section, which can happen in case of units without code ->
  2266. make them local; we don't need the debugtable stuff there either,
  2267. so it doesn't matter that they are not global.
  2268. }
  2269. if (target_info.system in systems_darwin) then
  2270. dbgname:='L'+dbgname;
  2271. new_section(current_asmdata.asmlists[al_start],sec_code,dbgname,0,secorder_begin);
  2272. if not(target_info.system in systems_darwin) then
  2273. current_asmdata.asmlists[al_start].concat(tai_symbol.Createname_global(dbgname,AT_DATA,0))
  2274. else
  2275. current_asmdata.asmlists[al_start].concat(tai_symbol.Createname(dbgname,AT_DATA,0));
  2276. dbgname:=make_mangledname('DEBUGEND',current_module.localsymtable,'');
  2277. { See above. }
  2278. if (target_info.system in systems_darwin) then
  2279. dbgname:='L'+dbgname;
  2280. new_section(current_asmdata.asmlists[al_end],sec_code,dbgname,0,secorder_end);
  2281. if not(target_info.system in systems_darwin) then
  2282. current_asmdata.asmlists[al_end].concat(tai_symbol.Createname_global(dbgname,AT_DATA,0))
  2283. else
  2284. current_asmdata.asmlists[al_end].concat(tai_symbol.Createname(dbgname,AT_DATA,0));
  2285. { insert .Ldebug_abbrev0 label }
  2286. templist:=TAsmList.create;
  2287. new_section(templist,sec_debug_abbrev,'',0);
  2288. templist.concat(tai_symbol.createname(target_asm.labelprefix+'debug_abbrevsection0',AT_DATA,0));
  2289. { add any extra stuff which needs to be in the abbrev section, but before }
  2290. { the actual abbreviations, in between the symbol above and below, i.e. here }
  2291. templist.concat(tai_symbol.createname(target_asm.labelprefix+'debug_abbrev0',AT_DATA,0));
  2292. current_asmdata.asmlists[al_start].insertlist(templist);
  2293. templist.free;
  2294. { insert .Ldebug_line0 label }
  2295. templist:=TAsmList.create;
  2296. new_section(templist,sec_debug_line,'',0);
  2297. templist.concat(tai_symbol.createname(target_asm.labelprefix+'debug_linesection0',AT_DATA,0));
  2298. { add any extra stuff which needs to be in the line section, but before }
  2299. { the actual line info, in between the symbol above and below, i.e. here }
  2300. templist.concat(tai_symbol.createname(target_asm.labelprefix+'debug_line0',AT_DATA,0));
  2301. current_asmdata.asmlists[al_start].insertlist(templist);
  2302. templist.free;
  2303. { finalize line info if the unit doesn't contain any function/ }
  2304. { procedure/init/final code }
  2305. finish_lineinfo;
  2306. { debug line header }
  2307. linelist := current_asmdata.asmlists[al_dwarf_line];
  2308. new_section(linelist,sec_debug_line,'',0);
  2309. linelist.concat(tai_comment.Create(strpnew('=== header start ===')));
  2310. { size }
  2311. current_asmdata.getlabel(lbl,alt_dbgfile);
  2312. if use_64bit_headers then
  2313. linelist.concat(tai_const.create_32bit(longint($FFFFFFFF)));
  2314. linelist.concat(tai_const.create_rel_sym(offsetreltype,
  2315. lbl,current_asmdata.RefAsmSymbol(target_asm.labelprefix+'edebug_line0')));
  2316. linelist.concat(tai_label.create(lbl));
  2317. { version }
  2318. linelist.concat(tai_const.create_16bit(dwarf_version));
  2319. { header length }
  2320. current_asmdata.getlabel(lbl,alt_dbgfile);
  2321. linelist.concat(tai_const.create_rel_sym(offsetreltype,
  2322. lbl,current_asmdata.RefAsmSymbol(target_asm.labelprefix+'ehdebug_line0')));
  2323. linelist.concat(tai_label.create(lbl));
  2324. { minimum_instruction_length }
  2325. linelist.concat(tai_const.create_8bit(1));
  2326. { default_is_stmt }
  2327. linelist.concat(tai_const.create_8bit(1));
  2328. { line_base }
  2329. linelist.concat(tai_const.create_8bit(LINE_BASE));
  2330. { line_range }
  2331. { only line increase, no adress }
  2332. linelist.concat(tai_const.create_8bit(255));
  2333. { opcode_base }
  2334. linelist.concat(tai_const.create_8bit(OPCODE_BASE));
  2335. { standard_opcode_lengths }
  2336. { MWE: sigh... why adding the default lengths (and make those sizes sense with LEB encoding) }
  2337. { DW_LNS_copy }
  2338. linelist.concat(tai_const.create_8bit(0));
  2339. { DW_LNS_advance_pc }
  2340. linelist.concat(tai_const.create_8bit(1));
  2341. { DW_LNS_advance_line }
  2342. linelist.concat(tai_const.create_8bit(1));
  2343. { DW_LNS_set_file }
  2344. linelist.concat(tai_const.create_8bit(1));
  2345. { DW_LNS_set_column }
  2346. linelist.concat(tai_const.create_8bit(1));
  2347. { DW_LNS_negate_stmt }
  2348. linelist.concat(tai_const.create_8bit(0));
  2349. { DW_LNS_set_basic_block }
  2350. linelist.concat(tai_const.create_8bit(0));
  2351. { DW_LNS_const_add_pc }
  2352. linelist.concat(tai_const.create_8bit(0));
  2353. { DW_LNS_fixed_advance_pc }
  2354. linelist.concat(tai_const.create_8bit(1));
  2355. { DW_LNS_set_prologue_end }
  2356. linelist.concat(tai_const.create_8bit(0));
  2357. { DW_LNS_set_epilogue_begin }
  2358. linelist.concat(tai_const.create_8bit(0));
  2359. { DW_LNS_set_isa }
  2360. linelist.concat(tai_const.create_8bit(1));
  2361. { Create single list of filenames sorted in IndexNr }
  2362. flist:=TFPList.Create;
  2363. for n := 0 to dirlist.Count - 1 do
  2364. begin
  2365. ditem := TDirIndexItem(dirlist[n]);
  2366. for m := 0 to ditem.Files.Count - 1 do
  2367. flist.Add(ditem.Files[m]);
  2368. end;
  2369. flist.Sort(@FileListSortCompare);
  2370. { include_directories }
  2371. linelist.concat(tai_comment.Create(strpnew('include_directories')));
  2372. for n := 0 to dirlist.Count - 1 do
  2373. begin
  2374. ditem := TDirIndexItem(dirlist[n]);
  2375. if ditem.Name = '.' then
  2376. Continue;
  2377. { Write without trailing path delimiter and also don't prefix with ./ for current dir (already done while adding to dirlist }
  2378. linelist.concat(tai_string.create(ditem.Name+#0));
  2379. end;
  2380. linelist.concat(tai_const.create_8bit(0));
  2381. { file_names }
  2382. linelist.concat(tai_comment.Create(strpnew('file_names')));
  2383. for n := 0 to flist.Count - 1 do
  2384. begin
  2385. fitem := TFileIndexItem(flist[n]);
  2386. { file name }
  2387. linelist.concat(tai_string.create(fitem.Name+#0));
  2388. { directory index }
  2389. linelist.concat(tai_const.create_uleb128bit(fitem.DirIndex));
  2390. { last modification }
  2391. linelist.concat(tai_const.create_uleb128bit(0));
  2392. { file length }
  2393. linelist.concat(tai_const.create_uleb128bit(0));
  2394. end;
  2395. linelist.concat(tai_const.create_8bit(0));
  2396. { end of debug line header }
  2397. linelist.concat(tai_symbol.createname(target_asm.labelprefix+'ehdebug_line0',AT_DATA,0));
  2398. linelist.concat(tai_comment.Create(strpnew('=== header end ===')));
  2399. { add line program }
  2400. linelist.concatList(asmline);
  2401. { end of debug line table }
  2402. linelist.concat(tai_symbol.createname(target_asm.labelprefix+'edebug_line0',AT_DATA,0));
  2403. flist.free;
  2404. end;
  2405. procedure TDebugInfoDwarf.inserttypeinfo;
  2406. procedure write_defs_to_write;
  2407. var
  2408. n : integer;
  2409. looplist,
  2410. templist: TFPObjectList;
  2411. def : tdef;
  2412. begin
  2413. templist := TFPObjectList.Create(False);
  2414. looplist := deftowritelist;
  2415. while looplist.count > 0 do
  2416. begin
  2417. deftowritelist := templist;
  2418. for n := 0 to looplist.count - 1 do
  2419. begin
  2420. def := tdef(looplist[n]);
  2421. case def.dbg_state of
  2422. dbg_state_written:
  2423. continue;
  2424. dbg_state_writing:
  2425. internalerror(200610052);
  2426. dbg_state_unused:
  2427. internalerror(200610053);
  2428. dbg_state_used:
  2429. appenddef(nil,def)
  2430. else
  2431. internalerror(200610054);
  2432. end;
  2433. end;
  2434. looplist.clear;
  2435. templist := looplist;
  2436. looplist := deftowritelist;
  2437. end;
  2438. templist.free;
  2439. end;
  2440. var
  2441. storefilepos : tfileposinfo;
  2442. lenstartlabel : tasmlabel;
  2443. i : longint;
  2444. def: tdef;
  2445. dbgname: string;
  2446. begin
  2447. current_module.flags:=current_module.flags or uf_has_dwarf_debuginfo;
  2448. storefilepos:=current_filepos;
  2449. current_filepos:=current_module.mainfilepos;
  2450. currabbrevnumber:=0;
  2451. defnumberlist:=TFPObjectList.create(false);
  2452. deftowritelist:=TFPObjectList.create(false);
  2453. { not exported (FK)
  2454. FILEREC
  2455. TEXTREC
  2456. }
  2457. vardatadef:=trecorddef(search_system_type('TVARDATA').typedef);
  2458. { write start labels }
  2459. current_asmdata.asmlists[al_dwarf_info].concat(tai_section.create(sec_debug_info,'',0));
  2460. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.createname(target_asm.labelprefix+'debug_info0',AT_DATA,0));
  2461. { start abbrev section }
  2462. new_section(current_asmdata.asmlists[al_dwarf_abbrev],sec_debug_abbrev,'',0);
  2463. { debug info header }
  2464. current_asmdata.getlabel(lenstartlabel,alt_dbgfile);
  2465. { size }
  2466. if use_64bit_headers then
  2467. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_32bit(longint($FFFFFFFF)));
  2468. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_rel_sym(offsetreltype,
  2469. lenstartlabel,current_asmdata.RefAsmSymbol(target_asm.labelprefix+'edebug_info0')));
  2470. current_asmdata.asmlists[al_dwarf_info].concat(tai_label.create(lenstartlabel));
  2471. { version }
  2472. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_16bit(dwarf_version));
  2473. { abbrev table (=relative from section start)}
  2474. if not(tf_dwarf_relative_addresses in target_info.flags) then
  2475. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_type_sym(offsetabstype,
  2476. current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_abbrev0')))
  2477. else
  2478. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_rel_sym(offsetreltype,
  2479. current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_abbrevsection0'),
  2480. current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_abbrev0')));
  2481. { address size }
  2482. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(sizeof(pint)));
  2483. { first manadatory compilation unit TAG }
  2484. append_entry(DW_TAG_compile_unit,true,[
  2485. DW_AT_name,DW_FORM_string,relative_dwarf_path(current_module.sourcefiles.get_file(1).path^+current_module.sourcefiles.get_file(1).name^)+#0,
  2486. DW_AT_producer,DW_FORM_string,'Free Pascal '+full_version_string+' '+date_string+#0,
  2487. DW_AT_comp_dir,DW_FORM_string,BSToSlash(FixPath(GetCurrentDir,false))+#0,
  2488. DW_AT_language,DW_FORM_data1,DW_LANG_Pascal83,
  2489. DW_AT_identifier_case,DW_FORM_data1,DW_ID_case_insensitive]);
  2490. { reference to line info section }
  2491. if not(tf_dwarf_relative_addresses in target_info.flags) then
  2492. append_labelentry_dataptr_abs(DW_AT_stmt_list,current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_line0'))
  2493. else
  2494. append_labelentry_dataptr_rel(DW_AT_stmt_list,
  2495. current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_linesection0'),
  2496. current_asmdata.RefAsmSymbol(target_asm.labelprefix+'debug_line0'));
  2497. if (m_objectivec1 in current_settings.modeswitches) then
  2498. append_attribute(DW_AT_APPLE_major_runtime_vers,DW_FORM_data1,[1]);
  2499. dbgname:=make_mangledname('DEBUGSTART',current_module.localsymtable,'');
  2500. if (target_info.system in systems_darwin) then
  2501. dbgname:='L'+dbgname;
  2502. append_labelentry(DW_AT_low_pc,current_asmdata.RefAsmSymbol(dbgname));
  2503. dbgname:=make_mangledname('DEBUGEND',current_module.localsymtable,'');
  2504. if (target_info.system in systems_darwin) then
  2505. dbgname:='L'+dbgname;
  2506. append_labelentry(DW_AT_high_pc,current_asmdata.RefAsmSymbol(dbgname));
  2507. finish_entry;
  2508. { write all global/local variables. This will flag all required tdefs }
  2509. if assigned(current_module.globalsymtable) then
  2510. write_symtable_syms(current_asmdata.asmlists[al_dwarf_info],current_module.globalsymtable);
  2511. if assigned(current_module.localsymtable) then
  2512. write_symtable_syms(current_asmdata.asmlists[al_dwarf_info],current_module.localsymtable);
  2513. { write all procedures and methods. This will flag all required tdefs }
  2514. if assigned(current_module.globalsymtable) then
  2515. write_symtable_procdefs(current_asmdata.asmlists[al_dwarf_info],current_module.globalsymtable);
  2516. if assigned(current_module.localsymtable) then
  2517. write_symtable_procdefs(current_asmdata.asmlists[al_dwarf_info],current_module.localsymtable);
  2518. { reset unit type info flag }
  2519. reset_unit_type_info;
  2520. { write used types from the used units }
  2521. write_used_unit_type_info(current_asmdata.asmlists[al_dwarf_info],current_module);
  2522. { last write the types from this unit }
  2523. if assigned(current_module.globalsymtable) then
  2524. write_symtable_defs(current_asmdata.asmlists[al_dwarf_info],current_module.globalsymtable);
  2525. if assigned(current_module.localsymtable) then
  2526. write_symtable_defs(current_asmdata.asmlists[al_dwarf_info],current_module.localsymtable);
  2527. { write defs not written yet }
  2528. write_defs_to_write;
  2529. { close compilation unit entry }
  2530. finish_children;
  2531. { end of debug info table }
  2532. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.createname(target_asm.labelprefix+'edebug_info0',AT_DATA,0));
  2533. { end of abbrev table }
  2534. current_asmdata.asmlists[al_dwarf_abbrev].concat(tai_const.create_8bit(0));
  2535. { reset all def labels }
  2536. for i:=0 to defnumberlist.count-1 do
  2537. begin
  2538. def := tdef(defnumberlist[i]);
  2539. if assigned(def) then
  2540. begin
  2541. def.dwarf_lab:=nil;
  2542. def.dbg_state:=dbg_state_unused;
  2543. end;
  2544. end;
  2545. defnumberlist.free;
  2546. defnumberlist:=nil;
  2547. deftowritelist.free;
  2548. deftowritelist:=nil;
  2549. current_filepos:=storefilepos;
  2550. end;
  2551. procedure TDebugInfoDwarf.referencesections(list:TAsmList);
  2552. var
  2553. hp : tmodule;
  2554. begin
  2555. { Reference all DEBUGINFO sections from the main .fpc section }
  2556. { to prevent eliminating them by smartlinking }
  2557. if (target_info.system in ([system_powerpc_macos]+systems_darwin)) then
  2558. exit;
  2559. list.concat(Tai_section.create(sec_fpc,'links',0));
  2560. { include reference to all debuginfo sections of used units }
  2561. hp:=tmodule(loaded_units.first);
  2562. while assigned(hp) do
  2563. begin
  2564. If (hp.flags and uf_has_dwarf_debuginfo)=uf_has_dwarf_debuginfo then
  2565. begin
  2566. list.concat(Tai_const.Createname(make_mangledname('DEBUGSTART',hp.localsymtable,''),0));
  2567. list.concat(Tai_const.Createname(make_mangledname('DEBUGEND',hp.localsymtable,''),0));
  2568. end;
  2569. hp:=tmodule(hp.next);
  2570. end;
  2571. end;
  2572. function TDebugInfoDwarf.symname(sym: tsym): String;
  2573. begin
  2574. if (sym.typ=paravarsym) and
  2575. (vo_is_self in tparavarsym(sym).varoptions) then
  2576. { We use 'this' for regular methods because that's what gdb triggers
  2577. on to automatically search fields. Don't do this for class methods,
  2578. because search class fields is not supported, and gdb 7.0+ fails
  2579. in this case because "this" is not a record in that case (it's a
  2580. pointer to a vmt) }
  2581. if not is_objc_class_or_protocol(tdef(sym.owner.defowner.owner.defowner)) and
  2582. not(po_classmethod in tabstractprocdef(sym.owner.defowner).procoptions) then
  2583. result:='this'
  2584. else
  2585. result:='self'
  2586. else if (sym.typ=typesym) and
  2587. is_objc_class_or_protocol(ttypesym(sym).typedef) then
  2588. result:=tobjectdef(ttypesym(sym).typedef).objextname^
  2589. else if (ds_dwarf_method_class_prefix in current_settings.debugswitches) and
  2590. (sym.typ=procsym) and
  2591. (tprocsym(sym).owner.symtabletype=objectsymtable) then
  2592. result:=tprocsym(sym).owner.name^+'__'+sym.name
  2593. else
  2594. result:=sym.name;
  2595. end;
  2596. procedure tdebuginfodwarf.append_visibility(vis: tvisibility);
  2597. begin
  2598. case vis of
  2599. vis_private,
  2600. vis_strictprivate:
  2601. append_attribute(DW_AT_accessibility,DW_FORM_data1,[ord(DW_ACCESS_private)]);
  2602. vis_protected,
  2603. vis_strictprotected:
  2604. append_attribute(DW_AT_accessibility,DW_FORM_data1,[ord(DW_ACCESS_protected)]);
  2605. vis_public:
  2606. { default };
  2607. end;
  2608. end;
  2609. procedure TDebugInfoDwarf.insertlineinfo(list:TAsmList);
  2610. var
  2611. currfileinfo,
  2612. lastfileinfo : tfileposinfo;
  2613. currfuncname : pshortstring;
  2614. currsectype : TAsmSectiontype;
  2615. hp, hpend : tai;
  2616. infile : tinputfile;
  2617. prevcolumn,
  2618. diffline,
  2619. prevline,
  2620. prevfileidx,
  2621. currfileidx,
  2622. nolineinfolevel : Integer;
  2623. prevlabel,
  2624. currlabel : tasmlabel;
  2625. begin
  2626. { this function will always terminate the lineinfo block }
  2627. generated_lineinfo := true;
  2628. FillChar(lastfileinfo,sizeof(lastfileinfo),0);
  2629. currfuncname:=nil;
  2630. currsectype:=sec_code;
  2631. hp:=Tai(list.first);
  2632. prevcolumn := 0;
  2633. prevline := 1;
  2634. prevfileidx := 1;
  2635. prevlabel := nil;
  2636. nolineinfolevel:=0;
  2637. while assigned(hp) do
  2638. begin
  2639. case hp.typ of
  2640. ait_section :
  2641. currsectype:=tai_section(hp).sectype;
  2642. ait_function_name :
  2643. begin
  2644. currfuncname:=tai_function_name(hp).funcname;
  2645. asmline.concat(tai_comment.Create(strpnew('function: '+currfuncname^)));
  2646. end;
  2647. ait_force_line :
  2648. begin
  2649. lastfileinfo.line:=-1;
  2650. end;
  2651. ait_marker :
  2652. begin
  2653. case tai_marker(hp).kind of
  2654. mark_NoLineInfoStart:
  2655. inc(nolineinfolevel);
  2656. mark_NoLineInfoEnd:
  2657. dec(nolineinfolevel);
  2658. end;
  2659. end;
  2660. end;
  2661. if (currsectype=sec_code) and
  2662. (hp.typ=ait_instruction) and
  2663. (nolineinfolevel=0) then
  2664. begin
  2665. currfileinfo:=tailineinfo(hp).fileinfo;
  2666. { file changed ? (must be before line info) }
  2667. if (currfileinfo.fileindex<>0) and
  2668. ((lastfileinfo.fileindex<>currfileinfo.fileindex) or
  2669. (lastfileinfo.moduleindex<>currfileinfo.moduleindex)) then
  2670. begin
  2671. infile:=get_module(currfileinfo.moduleindex).sourcefiles.get_file(currfileinfo.fileindex);
  2672. if assigned(infile) then
  2673. begin
  2674. currfileidx := get_file_index(infile);
  2675. if prevfileidx <> currfileidx then
  2676. begin
  2677. list.insertbefore(tai_comment.Create(strpnew('path: '+infile.path^)), hp);
  2678. list.insertbefore(tai_comment.Create(strpnew('file: '+infile.name^)), hp);
  2679. list.insertbefore(tai_comment.Create(strpnew('indx: '+tostr(currfileidx))), hp);
  2680. { set file }
  2681. asmline.concat(tai_comment.Create(strpnew('path: '+infile.path^)));
  2682. asmline.concat(tai_comment.Create(strpnew('file: '+infile.name^)));
  2683. asmline.concat(tai_const.create_8bit(DW_LNS_set_file));
  2684. asmline.concat(tai_const.create_uleb128bit(currfileidx));
  2685. prevfileidx := currfileidx;
  2686. end;
  2687. { force new line info }
  2688. lastfileinfo.line:=-1;
  2689. end;
  2690. end;
  2691. { line changed ? }
  2692. if (lastfileinfo.line<>currfileinfo.line) and (currfileinfo.line<>0) then
  2693. begin
  2694. { set address }
  2695. current_asmdata.getlabel(currlabel, alt_dbgline);
  2696. list.insertbefore(tai_label.create(currlabel), hp);
  2697. asmline.concat(tai_comment.Create(strpnew('['+tostr(currfileinfo.line)+':'+tostr(currfileinfo.column)+']')));
  2698. if (prevlabel = nil) or
  2699. { darwin's assembler cannot create an uleb128 of the difference }
  2700. { between to symbols }
  2701. (target_info.system in systems_darwin) then
  2702. begin
  2703. asmline.concat(tai_const.create_8bit(DW_LNS_extended_op));
  2704. asmline.concat(tai_const.create_uleb128bit(1+sizeof(pint)));
  2705. asmline.concat(tai_const.create_8bit(DW_LNE_set_address));
  2706. asmline.concat(tai_const.create_sym(currlabel));
  2707. end
  2708. else
  2709. begin
  2710. asmline.concat(tai_const.create_8bit(DW_LNS_advance_pc));
  2711. asmline.concat(tai_const.create_rel_sym(aitconst_uleb128bit, prevlabel, currlabel));
  2712. end;
  2713. prevlabel := currlabel;
  2714. { set column }
  2715. if prevcolumn <> currfileinfo.column then
  2716. begin
  2717. asmline.concat(tai_const.create_8bit(DW_LNS_set_column));
  2718. asmline.concat(tai_const.create_uleb128bit(currfileinfo.column));
  2719. prevcolumn := currfileinfo.column;
  2720. end;
  2721. { set line }
  2722. diffline := currfileinfo.line - prevline;
  2723. if (diffline >= LINE_BASE) and (OPCODE_BASE + diffline - LINE_BASE <= 255) then
  2724. begin
  2725. { use special opcode, this also adds a row }
  2726. asmline.concat(tai_const.create_8bit(OPCODE_BASE + diffline - LINE_BASE));
  2727. end
  2728. else
  2729. begin
  2730. if diffline <> 0 then
  2731. begin
  2732. asmline.concat(tai_const.create_8bit(DW_LNS_advance_line));
  2733. asmline.concat(tai_const.create_sleb128bit(diffline));
  2734. end;
  2735. { no row added yet, do it manually }
  2736. asmline.concat(tai_const.create_8bit(DW_LNS_copy));
  2737. end;
  2738. prevline := currfileinfo.line;
  2739. end;
  2740. lastfileinfo:=currfileinfo;
  2741. end;
  2742. hpend:=hp;
  2743. hp:=tai(hp.next);
  2744. end;
  2745. if assigned(hpend) then
  2746. begin
  2747. { set address for end (see appendix 3 of dwarf 2 specs) }
  2748. current_asmdata.getlabel(currlabel, alt_dbgline);
  2749. list.insertafter(tai_label.create(currlabel), hpend);
  2750. asmline.concat(tai_const.create_8bit(DW_LNS_extended_op));
  2751. asmline.concat(tai_const.create_uleb128bit(1+sizeof(pint)));
  2752. asmline.concat(tai_const.create_8bit(DW_LNE_set_address));
  2753. asmline.concat(tai_const.create_sym(currlabel));
  2754. end;
  2755. { end sequence }
  2756. asmline.concat(tai_const.Create_8bit(DW_LNS_extended_op));
  2757. asmline.concat(tai_const.Create_8bit(1));
  2758. asmline.concat(tai_const.Create_8bit(DW_LNE_end_sequence));
  2759. asmline.concat(tai_comment.Create(strpnew('###################')));
  2760. end;
  2761. procedure TDebugInfoDwarf.finish_lineinfo;
  2762. var
  2763. infile: tinputfile;
  2764. begin
  2765. { only needed if no line info at all has been generated }
  2766. if generated_lineinfo then
  2767. begin
  2768. { reset for next module compilation }
  2769. generated_lineinfo:=false;
  2770. exit;
  2771. end;
  2772. { at least the Darwin linker is annoyed if you do not }
  2773. { finish the lineinfo section, or if it doesn't }
  2774. { contain at least one file name and set_address }
  2775. infile:=current_module.sourcefiles.get_file(1);
  2776. if not assigned(infile) then
  2777. internalerror(2006020211);
  2778. asmline.concat(tai_const.create_8bit(DW_LNS_set_file));
  2779. asmline.concat(tai_const.create_uleb128bit(get_file_index(infile)));
  2780. asmline.concat(tai_const.create_8bit(DW_LNS_extended_op));
  2781. asmline.concat(tai_const.create_uleb128bit(1+sizeof(pint)));
  2782. asmline.concat(tai_const.create_8bit(DW_LNE_set_address));
  2783. asmline.concat(tai_const.create_sym(nil));
  2784. asmline.concat(tai_const.create_8bit(DW_LNS_extended_op));
  2785. asmline.concat(tai_const.Create_8bit(1));
  2786. asmline.concat(tai_const.Create_8bit(DW_LNE_end_sequence));
  2787. asmline.concat(tai_comment.Create(strpnew('###################')));
  2788. end;
  2789. {****************************************************************************
  2790. TDebugInfoDwarf2
  2791. ****************************************************************************}
  2792. procedure TDebugInfoDwarf2.appenddef_file(list:TAsmList;def: tfiledef);
  2793. begin
  2794. { gdb 6.4 doesn't support files so far so we use some fake recorddef
  2795. file recs. are less than 1k so using data2 is enough }
  2796. if assigned(def.typesym) then
  2797. append_entry(DW_TAG_structure_type,false,[
  2798. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  2799. DW_AT_byte_size,DW_FORM_udata,def.size
  2800. ])
  2801. else
  2802. append_entry(DW_TAG_structure_type,false,[
  2803. DW_AT_byte_size,DW_FORM_udata,def.size
  2804. ]);
  2805. finish_entry;
  2806. end;
  2807. procedure TDebugInfoDwarf2.appenddef_formal(list:TAsmList;def: tformaldef);
  2808. begin
  2809. { gdb 6.4 doesn't support DW_TAG_unspecified_type so we
  2810. replace it with a unsigned type with size 0 (FK)
  2811. }
  2812. append_entry(DW_TAG_base_type,false,[
  2813. DW_AT_name,DW_FORM_string,'FormalDef'#0,
  2814. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  2815. DW_AT_byte_size,DW_FORM_data1,0
  2816. ]);
  2817. finish_entry;
  2818. end;
  2819. procedure TDebugInfoDwarf2.appenddef_object(list:TAsmList;def: tobjectdef);
  2820. procedure doappend;
  2821. begin
  2822. { Objective-C class: same as regular class, except for
  2823. a) Apple-specific tag that identifies it as an Objective-C class
  2824. b) use extname^ instead of objname
  2825. }
  2826. if (def.objecttype=odt_objcclass) then
  2827. append_entry(DW_TAG_structure_type,true,[
  2828. DW_AT_name,DW_FORM_string,def.objextname^+#0,
  2829. DW_AT_byte_size,DW_FORM_udata,tobjectsymtable(def.symtable).datasize,
  2830. DW_AT_APPLE_runtime_class,DW_FORM_data1,DW_LANG_ObjC
  2831. ])
  2832. else if assigned(def.objname) then
  2833. append_entry(DW_TAG_structure_type,true,[
  2834. DW_AT_name,DW_FORM_string,def.objname^+#0,
  2835. DW_AT_byte_size,DW_FORM_udata,tobjectsymtable(def.symtable).datasize
  2836. ])
  2837. else
  2838. append_entry(DW_TAG_structure_type,true,[
  2839. DW_AT_byte_size,DW_FORM_udata,tobjectsymtable(def.symtable).datasize
  2840. ]);
  2841. finish_entry;
  2842. if assigned(def.childof) then
  2843. begin
  2844. append_entry(DW_TAG_inheritance,false,[
  2845. DW_AT_accessibility,DW_FORM_data1,DW_ACCESS_public,
  2846. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(0)
  2847. ]);
  2848. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  2849. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(0));
  2850. if (def.childof.dbg_state=dbg_state_unused) then
  2851. def.childof.dbg_state:=dbg_state_used;
  2852. if is_class_or_interface_or_dispinterface_or_objc(def) then
  2853. append_labelentry_ref(DW_AT_type,def_dwarf_class_struct_lab(def.childof))
  2854. else
  2855. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.childof));
  2856. finish_entry;
  2857. end;
  2858. if (oo_has_vmt in def.objectoptions) and
  2859. (not assigned(def.childof) or
  2860. not(oo_has_vmt in def.childof.objectoptions)) then
  2861. begin
  2862. { vmt field }
  2863. append_entry(DW_TAG_member,false,[
  2864. DW_AT_artificial,DW_FORM_flag,true,
  2865. DW_AT_name,DW_FORM_string,'_vptr$'+def.objname^+#0,
  2866. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(def.vmt_offset)
  2867. ]);
  2868. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  2869. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(def.vmt_offset));
  2870. { should be changed into a pointer to a function returning an }
  2871. { int and with TAG_unspecified_parameters }
  2872. if (voidpointertype.dbg_state=dbg_state_unused) then
  2873. voidpointertype.dbg_state:=dbg_state_used;
  2874. append_labelentry_ref(DW_AT_type,def_dwarf_lab(voidpointertype));
  2875. finish_entry;
  2876. end;
  2877. def.symtable.symList.ForEachCall(@enum_membersyms_callback,nil);
  2878. { Write the methods in the scope of the class/object, except for Objective-C. }
  2879. if is_objc_class_or_protocol(def) then
  2880. finish_children;
  2881. { don't write procdefs of externally defined classes, gcc doesn't
  2882. either (info is probably gotten from ObjC runtime) }
  2883. if not(oo_is_external in def.objectoptions) then
  2884. write_symtable_procdefs(current_asmdata.asmlists[al_dwarf_info],def.symtable);
  2885. if not is_objc_class_or_protocol(def) then
  2886. finish_children;
  2887. end;
  2888. begin
  2889. case def.objecttype of
  2890. odt_cppclass,
  2891. odt_object:
  2892. doappend;
  2893. odt_interfacecom,
  2894. odt_interfacecorba,
  2895. odt_dispinterface,
  2896. odt_class,
  2897. odt_objcclass:
  2898. begin
  2899. if (def.objecttype<>odt_objcclass) then
  2900. begin
  2901. { implicit pointer }
  2902. append_entry(DW_TAG_pointer_type,false,[]);
  2903. append_labelentry_ref(DW_AT_type,def_dwarf_class_struct_lab(def));
  2904. finish_entry;
  2905. end;
  2906. if not(tf_dwarf_only_local_labels in target_info.flags) then
  2907. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create_global(def_dwarf_class_struct_lab(def),0))
  2908. else
  2909. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(def_dwarf_class_struct_lab(def),0));
  2910. doappend;
  2911. end;
  2912. odt_objcprotocol:
  2913. begin
  2914. append_entry(DW_TAG_pointer_type,false,[]);
  2915. append_labelentry_ref(DW_AT_type,def_dwarf_lab(voidpointertype));
  2916. finish_entry;
  2917. end;
  2918. else
  2919. internalerror(200602041);
  2920. end;
  2921. end;
  2922. procedure TDebugInfoDwarf2.appenddef_set_intern(list:TAsmList;def: tsetdef; force_tag_set: boolean);
  2923. var
  2924. lab: tasmlabel;
  2925. begin
  2926. if force_tag_set or
  2927. (ds_dwarf_sets in current_settings.debugswitches) then
  2928. begin
  2929. { current (20070704 -- patch was committed on 20060513) gdb cvs supports set types }
  2930. if assigned(def.typesym) then
  2931. append_entry(DW_TAG_set_type,false,[
  2932. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  2933. DW_AT_byte_size,DW_FORM_data2,def.size
  2934. ])
  2935. else
  2936. append_entry(DW_TAG_set_type,false,[
  2937. DW_AT_byte_size,DW_FORM_data2,def.size
  2938. ]);
  2939. if assigned(def.elementdef) then
  2940. begin
  2941. if not(tf_dwarf_only_local_labels in target_info.flags) then
  2942. current_asmdata.getdatalabel(lab)
  2943. else
  2944. current_asmdata.getaddrlabel(lab);
  2945. append_labelentry_ref(DW_AT_type,lab);
  2946. finish_entry;
  2947. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(lab,0));
  2948. { Sets of e.g. [1..5] are actually stored as a set of [0..7],
  2949. so write the exact boundaries of the set here. Let's hope no
  2950. debugger ever rejects this because this "subrange" type can
  2951. actually have a larger range than the original one. }
  2952. append_entry(DW_TAG_subrange_type,false,[
  2953. DW_AT_lower_bound,DW_FORM_sdata,def.setbase,
  2954. DW_AT_upper_bound,DW_FORM_sdata,get_max_value(def.elementdef).svalue
  2955. ]);
  2956. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef))
  2957. end
  2958. end
  2959. else
  2960. begin
  2961. { gdb versions which don't support sets refuse to load the debug }
  2962. { info of modules that contain set tags }
  2963. if assigned(def.typesym) then
  2964. append_entry(DW_TAG_base_type,false,[
  2965. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  2966. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  2967. DW_AT_byte_size,DW_FORM_data2,def.size
  2968. ])
  2969. else
  2970. append_entry(DW_TAG_base_type,false,[
  2971. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  2972. DW_AT_byte_size,DW_FORM_data2,def.size
  2973. ]);
  2974. end;
  2975. finish_entry;
  2976. end;
  2977. procedure TDebugInfoDwarf2.appenddef_set(list:TAsmList;def: tsetdef);
  2978. begin
  2979. appenddef_set_intern(list,def,false);
  2980. end;
  2981. procedure TDebugInfoDwarf2.appenddef_undefined(list:TAsmList;def: tundefineddef);
  2982. begin
  2983. { gdb 6.4 doesn't support DW_TAG_unspecified_type so we
  2984. replace it with a unsigned type with size 0 (FK)
  2985. }
  2986. append_entry(DW_TAG_base_type,false,[
  2987. DW_AT_name,DW_FORM_string,'FormalDef'#0,
  2988. DW_AT_encoding,DW_FORM_data1,DW_ATE_unsigned,
  2989. DW_AT_byte_size,DW_FORM_data1,0
  2990. ]);
  2991. finish_entry;
  2992. end;
  2993. procedure TDebugInfoDwarf2.appenddef_variant(list:TAsmList;def: tvariantdef);
  2994. begin
  2995. { variants aren't known to dwarf2 but writting tvardata should be enough }
  2996. appenddef_record_named(list,trecorddef(vardatadef),'Variant');
  2997. end;
  2998. function TDebugInfoDwarf2.dwarf_version: Word;
  2999. begin
  3000. Result:=2;
  3001. end;
  3002. {****************************************************************************
  3003. TDebugInfoDwarf3
  3004. ****************************************************************************}
  3005. procedure tdebuginfodwarf3.appenddef_array(list: tasmlist; def: tarraydef);
  3006. begin
  3007. if not is_dynamic_array(def) then
  3008. begin
  3009. inherited appenddef_array(list,def);
  3010. exit;
  3011. end;
  3012. if assigned(def.typesym) then
  3013. append_entry(DW_TAG_array_type,true,[
  3014. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  3015. DW_AT_data_location,DW_FORM_block1,2
  3016. ])
  3017. else
  3018. append_entry(DW_TAG_array_type,true,[
  3019. DW_AT_data_location,DW_FORM_block1,2
  3020. ]);
  3021. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3022. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3023. append_block1(DW_AT_allocated,2);
  3024. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3025. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3026. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef));
  3027. finish_entry;
  3028. { to simplify things, we don't write a multidimensional array here }
  3029. append_entry(DW_TAG_subrange_type,false,[
  3030. DW_AT_byte_stride,DW_FORM_udata,def.elesize,
  3031. DW_AT_lower_bound,DW_FORM_udata,0,
  3032. DW_AT_upper_bound,DW_FORM_block1,5
  3033. ]);
  3034. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3035. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3036. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_lit0)+sizeof(ptrint)));
  3037. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_minus)));
  3038. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3039. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.rangedef));
  3040. finish_entry;
  3041. finish_children;
  3042. end;
  3043. procedure tdebuginfodwarf3.appenddef_string(list: tasmlist; def: tstringdef);
  3044. procedure addstringdef(const name: shortstring; chardef: tdef; deref: boolean; lensize: aint);
  3045. var
  3046. upperopcodes: longint;
  3047. begin
  3048. { deref=true -> ansi/unicde/widestring; deref = false -> short/longstring }
  3049. if assigned(def.typesym) then
  3050. append_entry(DW_TAG_array_type,true,[
  3051. DW_AT_name,DW_FORM_string,name+#0,
  3052. DW_AT_data_location,DW_FORM_block1,2+ord(not(deref))
  3053. ])
  3054. else
  3055. append_entry(DW_TAG_array_type,true,[
  3056. DW_AT_data_location,DW_FORM_block1,2+ord(not(deref))
  3057. ]);
  3058. { in all cases we start with the address of the string }
  3059. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3060. if deref then
  3061. begin
  3062. { ansi/unicode/widestring -> dereference the address of the string, and then
  3063. we point to address of the string
  3064. }
  3065. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3066. { also add how to detect whether or not the string is allocated: if the pointer is 0
  3067. then it isn't, otherwise it is
  3068. }
  3069. append_block1(DW_AT_allocated,2);
  3070. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3071. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3072. end
  3073. else
  3074. begin
  3075. { shortstring characters begin at string[1], so add one to the string's address }
  3076. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_lit0)+lensize));
  3077. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus)))
  3078. end;
  3079. { reference to the element type of the string }
  3080. append_labelentry_ref(DW_AT_type,def_dwarf_lab(chardef));
  3081. finish_entry;
  3082. { now the information about the length of the string }
  3083. if deref then
  3084. begin
  3085. if (chardef.size=1) then
  3086. upperopcodes:=5
  3087. else
  3088. upperopcodes:=7;
  3089. { lower bound is always 1, upper bound (length) needs to be calculated }
  3090. append_entry(DW_TAG_subrange_type,false,[
  3091. DW_AT_lower_bound,DW_FORM_udata,1,
  3092. DW_AT_upper_bound,DW_FORM_block1,upperopcodes
  3093. ]);
  3094. { high(string) is stored sizeof(ptrint) bytes before the string data }
  3095. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3096. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3097. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_lit0)+sizeof(ptrint)));
  3098. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_minus)));
  3099. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref)));
  3100. { for widestrings, the length is specified in bytes, so divide by two }
  3101. if (upperopcodes=7) then
  3102. begin
  3103. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_lit1)));
  3104. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_shra)));
  3105. end;
  3106. end
  3107. else
  3108. begin
  3109. append_entry(DW_TAG_subrange_type,false,[
  3110. DW_AT_lower_bound,DW_FORM_udata,1,
  3111. DW_AT_upper_bound,DW_FORM_block1,3
  3112. ]);
  3113. { for shortstrings, the length is the first byte of the string }
  3114. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_push_object_address)));
  3115. { load 1 byte }
  3116. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_deref_size)));
  3117. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(lensize));
  3118. end;
  3119. finish_entry;
  3120. finish_children;
  3121. end;
  3122. begin
  3123. case def.stringtype of
  3124. st_shortstring:
  3125. begin
  3126. addstringdef('ShortString',cchartype,false,1);
  3127. end;
  3128. st_longstring:
  3129. begin
  3130. {$ifdef cpu64bitaddr}
  3131. addstringdef('LongString',cchartype,false,8);
  3132. {$else cpu64bitaddr}
  3133. addstringdef('LongString',cchartype,false,4);
  3134. {$endif cpu64bitaddr}
  3135. end;
  3136. st_ansistring:
  3137. begin
  3138. addstringdef('AnsiString',cchartype,true,-1);
  3139. end;
  3140. st_unicodestring:
  3141. begin
  3142. addstringdef('UnicodeString',cwidechartype,true,-1);
  3143. end;
  3144. st_widestring:
  3145. begin
  3146. if not(tf_winlikewidestring in target_info.flags) then
  3147. addstringdef('WideString',cwidechartype,true,-1)
  3148. else
  3149. begin
  3150. { looks like a pwidechar (no idea about length location) }
  3151. append_entry(DW_TAG_pointer_type,false,[]);
  3152. append_labelentry_ref(DW_AT_type,def_dwarf_lab(cwidechartype));
  3153. finish_entry;
  3154. end;
  3155. end;
  3156. end;
  3157. end;
  3158. procedure TDebugInfoDwarf3.appenddef_file(list:TAsmList;def: tfiledef);
  3159. begin
  3160. if assigned(def.typesym) then
  3161. append_entry(DW_TAG_file_type,false,[
  3162. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0,
  3163. DW_AT_byte_size,DW_FORM_data2,def.size
  3164. ])
  3165. else
  3166. append_entry(DW_TAG_file_type,false,[
  3167. DW_AT_byte_size,DW_FORM_data2,def.size
  3168. ]);
  3169. if tfiledef(def).filetyp=ft_typed then
  3170. append_labelentry_ref(DW_AT_type,def_dwarf_lab(tfiledef(def).typedfiledef));
  3171. finish_entry;
  3172. end;
  3173. procedure TDebugInfoDwarf3.appenddef_formal(list:TAsmList;def: tformaldef);
  3174. begin
  3175. append_entry(DW_TAG_unspecified_type,false,[
  3176. ]);
  3177. finish_entry;
  3178. end;
  3179. procedure TDebugInfoDwarf3.appenddef_object(list:TAsmList;def: tobjectdef);
  3180. procedure dostruct(tag: tdwarf_tag);
  3181. begin
  3182. if assigned(def.objname) then
  3183. append_entry(tag,true,[
  3184. DW_AT_name,DW_FORM_string,def.objrealname^+#0,
  3185. DW_AT_byte_size,DW_FORM_udata,def.size
  3186. ])
  3187. else
  3188. append_entry(DW_TAG_structure_type,true,[
  3189. DW_AT_byte_size,DW_FORM_udata,def.size
  3190. ]);
  3191. finish_entry;
  3192. end;
  3193. procedure doimplicitpointer;
  3194. var
  3195. obj : tasmlabel;
  3196. begin
  3197. if not(tf_dwarf_only_local_labels in target_info.flags) then
  3198. current_asmdata.getdatalabel(obj)
  3199. else
  3200. current_asmdata.getaddrlabel(obj);
  3201. { implicit pointer }
  3202. append_entry(DW_TAG_pointer_type,false,[]);
  3203. append_labelentry_ref(DW_AT_type,obj);
  3204. finish_entry;
  3205. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(obj,0));
  3206. end;
  3207. procedure doparent(isinterface: boolean);
  3208. begin
  3209. if not assigned(def.childof) then
  3210. exit;
  3211. if isinterface then
  3212. begin
  3213. append_entry(DW_TAG_inheritance,false,[]);
  3214. end
  3215. else
  3216. begin
  3217. append_entry(DW_TAG_inheritance,false,[
  3218. DW_AT_accessibility,DW_FORM_data1,DW_ACCESS_public,
  3219. DW_AT_data_member_location,DW_FORM_block1,1+lengthuleb128(0)
  3220. ]);
  3221. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_8bit(ord(DW_OP_plus_uconst)));
  3222. current_asmdata.asmlists[al_dwarf_info].concat(tai_const.create_uleb128bit(0));
  3223. end;
  3224. append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.childof));
  3225. finish_entry;
  3226. end;
  3227. var
  3228. n: integer;
  3229. begin
  3230. case def.objecttype of
  3231. odt_cppclass,
  3232. odt_object:
  3233. begin
  3234. dostruct(DW_TAG_structure_type);
  3235. doparent(false);
  3236. end;
  3237. odt_interfacecom,
  3238. odt_interfacecorba,
  3239. odt_dispinterface:
  3240. begin
  3241. dostruct(DW_TAG_interface_type);
  3242. doparent(true);
  3243. end;
  3244. odt_class:
  3245. begin
  3246. { not sure if the implicit pointer is needed for tag_class (MWE)}
  3247. {
  3248. doimplicitpointer;
  3249. }
  3250. dostruct(DW_TAG_class_type);
  3251. doparent(false);
  3252. end;
  3253. else
  3254. internalerror(200609171);
  3255. end;
  3256. { add implemented interfaces }
  3257. if assigned(def.ImplementedInterfaces) then
  3258. for n := 0 to def.ImplementedInterfaces.count-1 do
  3259. begin
  3260. append_entry(DW_TAG_inheritance,false,[]);
  3261. append_labelentry_ref(DW_AT_type,def_dwarf_lab(TImplementedInterface(def.ImplementedInterfaces[n]).IntfDef));
  3262. finish_entry;
  3263. end;
  3264. { add members }
  3265. def.symtable.symList.ForEachCall(@enum_membersyms_callback,nil);
  3266. finish_children;
  3267. end;
  3268. procedure TDebugInfoDwarf3.appenddef_set(list:TAsmList;def: tsetdef);
  3269. begin
  3270. appenddef_set_intern(list,def,true);
  3271. end;
  3272. procedure TDebugInfoDwarf3.appenddef_undefined(list:TAsmList;def: tundefineddef);
  3273. begin
  3274. { ??? can a undefined def have a typename ? }
  3275. if assigned(def.typesym) then
  3276. append_entry(DW_TAG_unspecified_type,false,[
  3277. DW_AT_name,DW_FORM_string,symname(def.typesym)+#0
  3278. ])
  3279. else
  3280. append_entry(DW_TAG_unspecified_type,false,[
  3281. ]);
  3282. finish_entry;
  3283. end;
  3284. procedure TDebugInfoDwarf3.appenddef_variant(list:TAsmList;def: tvariantdef);
  3285. const
  3286. VARIANTS: array[1..27] of record Value: Word; Name: String end = (
  3287. (value:0; name:''),
  3288. (value:1; name:''),
  3289. (value:2; name:'VSMALLINT'),
  3290. (value:3; name:'VINTEGER'),
  3291. (value:4; name:'VSINGLE'),
  3292. (value:5; name:'VDOUBLE'),
  3293. (value:6; name:'VCURRENCY'),
  3294. (value:7; name:'VDATE'),
  3295. (value:8; name:'VOLESTR'),
  3296. (value:9; name:'VDISPATCH'),
  3297. (value:10; name:'VERROR'),
  3298. (value:11; name:'VBOOLEAN'),
  3299. (value:12; name:''),
  3300. (value:13; name:'VUNKNOWN'),
  3301. (value:14; name:''),
  3302. (value:16; name:'VSHORTINT'),
  3303. (value:17; name:'VBYTE'),
  3304. (value:18; name:'VWORD'),
  3305. (value:19; name:'VLONGWORD'),
  3306. (value:20; name:'VINT64'),
  3307. (value:21; name:'VQWORD'),
  3308. (value:36; name:'VRECORD'),
  3309. (value:$48; name:''),
  3310. (value:$100; name:'VSTRING'),
  3311. (value:$101; name:'VANY'),
  3312. (value:$2000; name:'VARRAY'),
  3313. (value:$4000; name:'VPOINTER')
  3314. );
  3315. var
  3316. fs: tfieldvarsym;
  3317. lbl: tasmlabel;
  3318. idx: integer;
  3319. begin
  3320. { it could be done with DW_TAG_variant for the union part (if that info was available)
  3321. now we do it manually for variants (MWE) }
  3322. { struct }
  3323. append_entry(DW_TAG_structure_type,true,[
  3324. DW_AT_name,DW_FORM_string,'Variant'#0,
  3325. DW_AT_byte_size,DW_FORM_udata,vardatadef.size
  3326. ]);
  3327. finish_entry;
  3328. append_entry(DW_TAG_variant_part,true,[
  3329. ]);
  3330. current_asmdata.getaddrlabel(lbl);
  3331. append_labelentry_ref(DW_AT_discr,lbl);
  3332. finish_entry;
  3333. { discriminant }
  3334. fs := tfieldvarsym(vardatadef.symtable.Find('VTYPE'));
  3335. if (fs = nil) or (fs.typ <> fieldvarsym) then
  3336. internalerror(200609271);
  3337. current_asmdata.asmlists[al_dwarf_info].concat(tai_symbol.create(lbl,0));
  3338. appendsym_fieldvar(list,fs);
  3339. { variants }
  3340. for idx := Low(VARIANTS) to High(VARIANTS) do
  3341. begin
  3342. append_entry(DW_TAG_variant,true,[
  3343. DW_AT_discr_value,DW_FORM_udata,VARIANTS[idx].value
  3344. ]);
  3345. finish_entry;
  3346. if VARIANTS[idx].name <> '' then
  3347. begin
  3348. fs := tfieldvarsym(vardatadef.symtable.Find(VARIANTS[idx].name));
  3349. if (fs = nil) or (fs.typ <> fieldvarsym) then
  3350. internalerror(20060927200+idx);
  3351. appendsym_fieldvar(list,fs);
  3352. end;
  3353. finish_children; { variant }
  3354. end;
  3355. finish_children; { variant part }
  3356. finish_children; { struct }
  3357. end;
  3358. function TDebugInfoDwarf3.dwarf_version: Word;
  3359. begin
  3360. Result:=3;
  3361. end;
  3362. function TDebugInfoDwarf3.symname(sym: tsym): String;
  3363. begin
  3364. Result:=sym.realname;
  3365. end;
  3366. {****************************************************************************
  3367. ****************************************************************************}
  3368. const
  3369. dbg_dwarf2_info : tdbginfo =
  3370. (
  3371. id : dbg_dwarf2;
  3372. idtxt : 'DWARF2';
  3373. );
  3374. dbg_dwarf3_info : tdbginfo =
  3375. (
  3376. id : dbg_dwarf3;
  3377. idtxt : 'DWARF3';
  3378. );
  3379. initialization
  3380. RegisterDebugInfo(dbg_dwarf2_info,TDebugInfoDwarf2);
  3381. RegisterDebugInfo(dbg_dwarf3_info,TDebugInfoDwarf3);
  3382. end.