473,396 Members | 1,836 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Another inline assembly question

Hi group,

inspired by the other inline assembly thread a question popped up in my
mind... Victor Bazarov mentioned in his response that the asm() clause
was covered by the C++ standard, subclause 7.3.. Well, I couldn't find
the C++ standard definition on the net, so I'm asking here:

Why is a thing like assembly covered by the standard at all? According
to Victor's response, it seems to be totally compiler dependent what's
done with the char* I pass on to asm(). If that were true, usage of
asm() would always yield undefined results (according to the standard).
Doesn't that totally defy the purpose of a standard in the first place?

And isn't usage of a highly object-oriented language mixed with
_assembly_, a language not only dependant on the running OS (like
implementation of system/library calls), but also to the very most
extent dependant on the hardware a little bit odd?

Well, just wondered... hope somebody can clear that up.
Greetings,
Johannes

--
PLEASE verify my signature. Some forging troll is claiming to be me.
My GPG key id is 0xCC727E2E (dated 2004-11-03). You can get it from
wwwkeys.pgp.net or random.sks.keyserver.penguin.de.
Also: Messages from "Comcast Online" are ALWAYS forged.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCUz2GCseFG8xyfi4RAuiQAJsG0juW41Uru5F/KNgPax88SEb65wCfYFqK
Ty9+dh5y17fNfCVpi/32bbc=
=NQhT
-----END PGP SIGNATURE-----

Jul 23 '05 #1
11 1601
Johannes Bauer wrote:
Hi group,

inspired by the other inline assembly thread a question popped up in my
mind... Victor Bazarov mentioned in his response that the asm() clause
was covered by the C++ standard, subclause 7.3.. Well, I couldn't find
the C++ standard definition on the net, so I'm asking here:

Why is a thing like assembly covered by the standard at all? According
to Victor's response, it seems to be totally compiler dependent what's
done with the char* I pass on to asm(). If that were true, usage of
asm() would always yield undefined results (according to the standard).
Doesn't that totally defy the purpose of a standard in the first place?
No, it produces *implementation defined* results, just as is the case
with, for example, system(). [Implementation defined != undefined]
And isn't usage of a highly object-oriented language mixed with
_assembly_, a language not only dependant on the running OS (like
implementation of system/library calls), but also to the very most
extent dependant on the hardware a little bit odd?

See above.

HTH and Cheers,
--ag
--
Artie Gold -- Austin, Texas
http://it-matters.blogspot.com (new post 12/5)
http://www.cafepress.com/goldsays
Jul 23 '05 #2
Johannes Bauer wrote:
Hi group,

inspired by the other inline assembly thread a question popped up in my
mind... Victor Bazarov mentioned in his response that the asm() clause
was covered by the C++ standard, subclause 7.3.. Well, I couldn't find
the C++ standard definition on the net, so I'm asking here:

Why is a thing like assembly covered by the standard at all? According
to Victor's response, it seems to be totally compiler dependent what's
done with the char* I pass on to asm(). If that were true, usage of
asm() would always yield undefined results (according to the standard).

Implementation-defined.

Doesn't that totally defy the purpose of a standard in the first place?

And isn't usage of a highly object-oriented language mixed with
_assembly_, a language not only dependant on the running OS (like
implementation of system/library calls), but also to the very most
extent dependant on the hardware a little bit odd?


With C++ you can do both portable and system-specific programming.

--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #3
Artie Gold wrote:
Why is a thing like assembly covered by the standard at all? According
to Victor's response, it seems to be totally compiler dependent what's
done with the char* I pass on to asm(). If that were true, usage of
asm() would always yield undefined results (according to the standard).
Doesn't that totally defy the purpose of a standard in the first place?


No, it produces *implementation defined* results, just as is the case
with, for example, system(). [Implementation defined != undefined]


Well, but isn't the sole purpose of a _standard_ that I can compile my
programs with whichever compiler fulfills the standard's requirements
and it always behaves the same? An "implementation defined" result would
mean there could be compilers out there translating asm() into something
comepletely weird, maybe some compilers ignore it completely. And they
would all fulfill the standard's requirements, as the standard states
it's up to the implementation to decide what to do.

This seems awkward... are there more "implementation defined" places in
the C++ standard?

Greetings,
Johannes

--
PLEASE verify my signature. Some forging troll is claiming to be me.
My GPG key id is 0xCC727E2E (dated 2004-11-03). You can get it from
wwwkeys.pgp.net or random.sks.keyserver.penguin.de.
Also: Messages from "Comcast Online" are ALWAYS forged.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCU8ryCseFG8xyfi4RAgClAJ9Q3n6CS+F+RponoG9QJ3 U79gwA3gCgocPV
i+uT6p9KvTdDDxy9Zi909qA=
=PYNO
-----END PGP SIGNATURE-----

Jul 23 '05 #4
Johannes Bauer wrote:

Artie Gold wrote:
Why is a thing like assembly covered by the standard at all? According
to Victor's response, it seems to be totally compiler dependent what's
done with the char* I pass on to asm(). If that were true, usage of
asm() would always yield undefined results (according to the standard).
Doesn't that totally defy the purpose of a standard in the first place?
No, it produces *implementation defined* results, just as is the case
with, for example, system(). [Implementation defined != undefined]


Well, but isn't the sole purpose of a _standard_ that I can compile my
programs with whichever compiler fulfills the standard's requirements
and it always behaves the same? An "implementation defined" result would
mean there could be compilers out there translating asm() into something
comepletely weird, maybe some compilers ignore it completely.


Yes exacxtly.
The problem for those writing the standard is as follows. There are
always regions where the committee cannot rule down what has to be done,
since those things are dependent on external influences. Take the system()
command for example. The standard committee thought it to be neccessary
to have some way to communicate with the operating systems command processor
(if there is one). But the exact way how this should be done, which string
to pass to create a specific reaction is outside their scope, mostly because
it is not the C++ committee who defines what those command line syntax looks
like. Or the exact format of file names or directory specifications in file
names, or ...
And they
would all fulfill the standard's requirements, as the standard states
it's up to the implementation to decide what to do.

This seems awkward... are there more "implementation defined" places in
the C++ standard?


Sure.
Whenever the standard needs to 'look across the borders of the language'
and has to accept that it cannot control the behaviour of the underlying
hardware and/or operating system.

C++ defines a language in contrast to eg. Java. Java defines the whole
platform, thus it has much better control over that platform. How that
virtual platform is implemented in real hardware or in a real operating
system is not the problem of Java per se.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 23 '05 #5
Johannes Bauer wrote:

Well, but isn't the sole purpose of a _standard_ that I can compile my
programs with whichever compiler fulfills the standard's requirements
and it always behaves the same?


No. The purpose is to give you a good shot at writing code that's
reasonably portable, which means knowing which parts can move to a
different system without change and which ones may need to be rewritten.
If you like the myth of "write once, run anywhere," use Java and learn
to love the undocumented changes in behavior.

--

Pete Becker
Dinkumware, Ltd. (http://www.dinkumware.com)
Jul 23 '05 #6

"Pete Becker" <pe********@acm.org> wrote in message
news:X9********************@rcn.net...
If you like the myth of "write once, run anywhere," use Java and learn
to love the undocumented changes in behavior.


Certainly Java has no inline assember <g>, and Java has not 100% achieved
the goal of write once, run anywhere. However, Java has made a major effort
to remove things like implementation defined and undefined behavior from the
language, and as a result it is intrinsically much more portable than C++.

For example, Java has a defined order of evaluation of the components of an
expression. Therefore, if those components have side effects, the expression
will behave the same on different platforms. C++ does not, it's
implementation defined, and the expression may behave differently, even
using the same compiler (just by changing optimization switches).

The reason for this flexibility in C++ is to allow more opportunities for
optimizing an expression. But I've written an advanced optimizer for both
C++ and Java compilers, and switching the "reorder the expression even if it
has side effects" has no discernible advantage for real code.

C++ would benefit from a pass through the spec and revisit each
implementation defined and undefined behavior, to see if they are still
justifiable given today's compiler technology rather than yesteryear's.
Fixing the spec won't break existing code if that code is written to avoid
relying on undefined and implementation defined code anyway <g>.

And can't C++ just say that shorts are 16 bits? Does anyone care about
programming the PDP-10 in C++? (I personally have a big soft spot for
the -10, but let's face it, it's been obsolete for 20 years.) Anyone have 18
bit shorts on the CPU drawing table? I'd be shocked if there was.

-Walter
www.digitalmars.com free C, C++, D compilers
Jul 23 '05 #7
Walter wrote:
"Pete Becker" <pe********@acm.org> wrote in message
news:X9********************@rcn.net...
If you like the myth of "write once, run anywhere," use Java and learn
to love the undocumented changes in behavior.

Certainly Java has no [...] Java has not 100% achieved
[..] Java [...] much more portable than C++.

For example, [...]


Java is a platform. C++ is a language. Can we move on now?
Jul 23 '05 #8
Walter wrote:
And can't C++ just say that shorts are 16 bits? Does anyone care about
programming the PDP-10 in C++? (I personally have a big soft spot for
the -10, but let's face it, it's been obsolete for 20 years.) Anyone have 18
bit shorts on the CPU drawing table? I'd be shocked if there was.

When people mention "Java" they are actually talking about two things. The Java language
(syntax) and the Java framework (JVM). The last is open only to the Java language. So when
you are programming form the JVM you are targeting only one platform, the JVM. That's why
everything has fixed size.
If JVM was available to other languages like C++, then C++ programmers would also target
one platform when targeting the JVM, and thus would also have the same fixed size and
other JVM facilities (like garbage collection etc).
This is what is happening with other virtual machine frameworks, like .NET (a CLI
compliant VM). My .NET applications are always targeting the framework and thus always
have fixed sizes (int and long are always 32-bit, short is always 16) in 64-bit .NET
frameworks too. They also have the garbage collection and other facilities of the framework.
So in few words, C++ takes advantage of all facilities a system provides. If you target a
virtual machine you get the type sizes and other facilities of the virtual machine, if you
target a native machine you get the sizes of the native machine.
I hope this makes things clear.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #9
Ioannis Vranos wrote:

If JVM was available to other languages like C++,


The JVM *is* available to other languages like C++.
Jul 23 '05 #10
E. Robert Tisdale wrote:
The JVM *is* available to other languages like C++.

May be I have missed that. May you provide more information on this? Is there a JVM C++
compiler?

--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #11

"Ioannis Vranos" <iv*@remove.this.grad.com> wrote in message
news:1112809414.369683@athnrd02...
Walter wrote:
And can't C++ just say that shorts are 16 bits? Does anyone care about
programming the PDP-10 in C++? (I personally have a big soft spot for
the -10, but let's face it, it's been obsolete for 20 years.) Anyone have 18 bit shorts on the CPU drawing table? I'd be shocked if there was. When people mention "Java" they are actually talking about two things. The

Java language (syntax) and the Java framework (JVM).
I'm talking about Java the language, of course, including its semantics as
well as syntax.
So in few words, C++ takes advantage of all facilities a system provides. If you target a virtual machine you get the type sizes and other facilities of the virtual machine, if you target a native machine you get the sizes of the native machine.


Are there any current or projected CPUs that have don't have 16 bit shorts?
Are there any current C++ compilers where shorts aren't 16 bits? Where chars
aren't 8 bits? Anyone have plans for one?

(BTW, Java targetting a VM rather than a native CPU is not what makes it
portable. What makes it portable is having more thoroughly defined semantics
of the language than C++ has. Java the language can, and has been,
implemented without a VM.)
Jul 23 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: __PPS__ | last post by:
Hello I have a simple question about inline asm. suppose I have asm { push eax, 123 } does it mean that it will have exactly this effect as in usual asm or it's just a suggestion to the compiler...
3
by: Ganesh Tawde | last post by:
Hi. I am trying to use the below pure assembly code as inline assembly in C. The pure assembly code gives proper data but the inline assembly code gives me distorted data. I am not able to...
18
by: Method Man | last post by:
If I don't care about the size of my executable or compile time, is there any reason why I wouldn't want to inline every function in my code to make the program run more efficient?
30
by: Will Pittenger | last post by:
Does C# inline functions? I do not see a inline keyword. Is there an implicit inline? Can the compiler select functions for auto-inlining? I am more used to C++ where all these things are...
8
by: neilmcguigan | last post by:
I just wanted to list some reasons why I prefer inline code to code-behind. 1. you can fix some bugs more quickly. remote desktop into server, change the aspx file, and she's good to go. I'd say...
9
by: chinu | last post by:
hi all, i did a small experiment to grasp the advantages of declaring a function as inline. inline int fun1(); int main(){ unsigned int start=0,end=0; asm("rdtsc\n\t"
7
by: ypjofficial | last post by:
Hello All, Inline before a function definition is just a request to the compiler to make the function inline. The compiler may or maynot make it inline.. My question is ..is there any way by...
2
by: =?Utf-8?B?TWljayBPJ05laWxs?= | last post by:
I am currently trying to wrap an old library (ImageMagick) in .NET, and am having problems with inline expansions. I have recompiled the library in vc++ 2005 OK. However, when I try to access any...
15
by: Chris Peters | last post by:
Hello Group Can anyone confirm or suggest workrounds for the following bug in lccwin32. If an inline assembly statement immediately follows a for loop and you try to set a breakpoint on it, then...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.