<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;
        mso-fareast-language:EN-US;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="DE" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-GB">Hello LLVM-people,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">I compiled a source file - containing a string - with Clang-cl to IR and.... found my string there again, which looks like that:<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">@"??_C@_1BO@NHIBMFPN@?$AAS?$AAc?$AAh?$AAw?$AAi?$AAm?$AAm?$AAf?$AAl?$AAu?$AAe?$AAg?$AAe?$AAl?$AA?$AA@" = linkonce_odr dso_local unnamed_addr constant [15 x i16] [i16 83, i16 99, i16 104, i16 119, i16 105, i16 109, i16
 109, i16 102, i16 108, i16 117, i16 101, i16 103, i16 101, i16 108, i16 0], comdat, align 2<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">Which should be the string "Schwimmfluegel" in Windows wchar_t. This module is later loaded and will be jitted.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">My question is, can I modify the content of the string? Even change it from 16 bit to 32 bit (adjusting the alignment as well of course) and how would I do that?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">I'm not much familiar with editing a LLVM Module in code - but I guess the first thing is to search for the strings (or strings in general) so I would start with:<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">                for(auto &global : module->globals())<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">                {<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">                               <o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">                }<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">However... there my knowledge already stops x.x"<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">Do I need to check the mangled name of my symbol to identify it as a string or does "global" provide a function for that? And then of course... how to proceed reading the string content? Writing it, extending it - changing
 the underlying type?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">Any help is appreciated >o<<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">Kind greetings<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-GB">Björn<o:p></o:p></span></p>
</div>
Als GmbH eingetragen im Handelsregister Bad Homburg v.d.H. HRB 9816, USt.ID-Nr. DE 114 165 789 Geschäftsführer: Dr. Hiroshi Nakamura, Dr. Robert Plank, Markus Bode, Takashi Nagano, Junichi Tajika, Ergin Cansiz.
</body>
</html>