<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=us-ascii">
<meta name=Generator content="Microsoft Word 12 (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:0in;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
{page:Section1;}
-->
</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=EN-US link=blue vlink=purple>
<div class=Section1>
<p class=MsoNormal>Hello,<o:p></o:p></p>
<p class=MsoNormal>I have the following simple C code below. It should return ‘8’
as a result. But the returned result is false as it returns ‘1’.
<o:p></o:p></p>
<p class=MsoNormal>When I remove the line of ‘__attribute__((noinline))’
, the returned results are correct ‘8’. <o:p></o:p></p>
<p class=MsoNormal>Any idea? Please advice as I need to get the assembly code
of the ‘getTexSize’ function alone.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>Note: I compile using the following commands<o:p></o:p></p>
<p class=MsoNormal> clang -O2 -emit-llvm test.cpp -c -o
test.bc<o:p></o:p></p>
<p class=MsoNormal> lli -use-mcjit test.bc<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>Thanks in advance<o:p></o:p></p>
<p class=MsoNormal>Sara Elshbaky<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>=============================<o:p></o:p></p>
<p class=MsoNormal>#include <stdio.h><o:p></o:p></p>
<p class=MsoNormal>#include <stdlib.h><o:p></o:p></p>
<p class=MsoNormal>#include <math.h><o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>__attribute__((noinline))<o:p></o:p></p>
<p class=MsoNormal>int getTexSize(int n)<o:p></o:p></p>
<p class=MsoNormal>{<o:p></o:p></p>
<p class=MsoNormal> if((n & (n - 1)) != 0) // determining
if an integer is not a power of 2<o:p></o:p></p>
<p class=MsoNormal> {<o:p></o:p></p>
<p class=MsoNormal> n-- ;<o:p></o:p></p>
<p class=MsoNormal> n |= n >>
1;<o:p></o:p></p>
<p class=MsoNormal> n |= n >>
2;<o:p></o:p></p>
<p class=MsoNormal> n |= n >>
4;<o:p></o:p></p>
<p class=MsoNormal> n |= n >>
8;<o:p></o:p></p>
<p class=MsoNormal> n |= n >>
16;<o:p></o:p></p>
<p class=MsoNormal> n++;// this is
the nearest higher power of 2<o:p></o:p></p>
<p class=MsoNormal> n >>=
1;//this is the nearest lower power of 2 value<o:p></o:p></p>
<p class=MsoNormal> }<o:p></o:p></p>
<p class=MsoNormal> return sqrt(n>>2);//divide by 4,
then get its square root<o:p></o:p></p>
<p class=MsoNormal>}<o:p></o:p></p>
<p class=MsoNormal>int main(int argc, char **argv) {<o:p></o:p></p>
<p class=MsoNormal> int n =
257;<o:p></o:p></p>
<p class=MsoNormal>
printf("----%d----",getTexSize(n));<o:p></o:p></p>
<p class=MsoNormal> return 0;<o:p></o:p></p>
<p class=MsoNormal>}<o:p></o:p></p>
</div>
</body>
</html>