473,396 Members | 2,147 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.

How to redefine arithmetic operators.

Hello all,

I need your help on how to redefine teh function of arithmetic operators in
C.

for example : if there is an equation c = a/b;

i want to execute my own algorithm for division operator.
I am compelled to use the native C , instead of calling functions or using
macros for doing arithmetic operations.
I mean i was compelled not to use c =MYDIV(a,b) or somewthing like that.

This i needeed to simulate floating point unit of MPC5554 on PC.In MPC the
way the rounding , overflow,errors dealt is different from those used in P4
or AMD.

so i need to simulate the floating point arithmetic of MPC5554 , when i want
to simualte the code designed for it.
I hope i could able express my question clearly.

Your help and advice is sought after at the earliest.

Thanks and Best Regards
Raghu.

Nov 29 '05 #1
12 2091
Le 29-11-2005, Raghu <ra***************@in.bosch.com> a écrit*:
I need your help on how to redefine teh function of arithmetic operators in
C.

for example : if there is an equation c = a/b;

i want to execute my own algorithm for division operator.
I am compelled to use the native C , instead of calling functions or using
macros for doing arithmetic operations.
I mean i was compelled not to use c =MYDIV(a,b) or somewthing like that.


The difference between c=MYDIV(a,b) and c=a/b is only 'syntaxic
sugar'.
If you really need to overload operators, you can do it in C++,
but there is no way to do it in C.

Marc Boyer
Nov 29 '05 #2
Raghu a écrit :
Hello all,

I need your help on how to redefine teh function of arithmetic operators in
C.

for example : if there is an equation c = a/b;

i want to execute my own algorithm for division operator.
I am compelled to use the native C , instead of calling functions or using
macros for doing arithmetic operations.
I mean i was compelled not to use c =MYDIV(a,b) or somewthing like that.

This i needeed to simulate floating point unit of MPC5554 on PC.In MPC the
way the rounding , overflow,errors dealt is different from those used in P4
or AMD.

so i need to simulate the floating point arithmetic of MPC5554 , when i want
to simualte the code designed for it.
I hope i could able express my question clearly.

Your help and advice is sought after at the earliest.

Thanks and Best Regards
Raghu.

I am afraid to start a new flame war here, but if you accept
to use *non-standard* C, the lcc-win32 compiler allows you to
do operator overloading without leaving the framework of C.

Of course this is an extension, but it is compatible with the standard.
No new keywords are used.

http://www.cs.virinia.edu/~lcc-win32
Nov 29 '05 #3
jacob navia <ja***@jacob.remcomp.fr> writes:
Raghu a écrit :
I need your help on how to redefine teh function of arithmetic
operators in
C.
for example : if there is an equation c = a/b; [snip]

I am afraid to start a new flame war here, but if you accept
to use *non-standard* C, the lcc-win32 compiler allows you to
do operator overloading without leaving the framework of C.

Of course this is an extension, but it is compatible with the
standard. No new keywords are used.


In what sense is this "without leaving the framework of C"?

You don't really *need* operator overloading; anything you can do with
it, you can do without it (with ordinary function calls).

Some languages support operator overloading: C++, Ada, the extended
C-like language supported by lcc-win32, and others. Standard C itself
does not. (And of course lcc-win32, as the name implies, is limited
to 32-bit Windows systems; see comp.compilers.lcc for more
information.)

Note that a conforming implementation may have extensions (including
additional library functions), provided they do not alter the behavior
of any strictly conforming program, so lcc-win32 may still qualify as
a C compiler.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 29 '05 #4
Keith Thompson a écrit :

You don't really *need* operator overloading; anything you can do with
it, you can do without it (with ordinary function calls).


This is of course true.

It is just a matter of measure.

Consider this:
qfloat a;
qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));

compared with:

tmp1 = qadd(a,1);
tmp2 = sqrtq(tmp1);
tmp3 = qsub(a,1);
tmp4 = sqrt(tmp3);
tmp5 = qdiv(tmp1,tmp3);
tmp6 = cosq(tmp1);
tmp7 = cosq(tmp3);
tmp8 = qdiv(tmp6,tmp7);
result = qmul(tmp8,tmp5);

This does the *same* stuff but which expression would
you prefer???

And above all, which expression would you like to MAINTAIN?

Of course operator overloading is just "syntactic sugar".
But sugar is an essential component of meals !!!

Of course you can abuse it, (as you can abuse *real* sugar!)
but for *many* applications is the only way to go!

Being able to define new types of numbers is one of them.
Otherwise, the C syntax is totally awkward.

jacob
Nov 29 '05 #5
jacob navia wrote
(in article <43***********************@news.wanadoo.fr>):
I am afraid to start a new flame war here,
Actually, you seem to revel in it.
but if you accept to use *non-standard* C, (thereby leaving the 'framework of C')
the lcc-win32 compiler allows you to
do operator overloading without leaving the framework of C.
Incorrect. You are using extensions so non-standard that they
ONLY work on a single compiler, for a single operating system.

Even the folks that use gcc extensions are far better off than
that, nevermind the POSIX crowd, which has it golden in
comparison.
... but it is compatible with the standard.


No, it isn't. Try compiling it on a compiler from anyone else.
So much for that theory.

--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Nov 29 '05 #6
On Tue, 29 Nov 2005 11:31:19 +0100, jacob navia
<ja***@jacob.remcomp.fr> wrote in comp.lang.c:
Raghu a écrit :
Hello all,

I need your help on how to redefine teh function of arithmetic operators in
C.

for example : if there is an equation c = a/b;

i want to execute my own algorithm for division operator.
I am compelled to use the native C , instead of calling functions or using
macros for doing arithmetic operations.
I mean i was compelled not to use c =MYDIV(a,b) or somewthing like that.

This i needeed to simulate floating point unit of MPC5554 on PC.In MPC the
way the rounding , overflow,errors dealt is different from those used in P4
or AMD.

so i need to simulate the floating point arithmetic of MPC5554 , when i want
to simualte the code designed for it.
I hope i could able express my question clearly.

Your help and advice is sought after at the earliest.

Thanks and Best Regards
Raghu.

I am afraid to start a new flame war here, but if you accept
to use *non-standard* C, the lcc-win32 compiler allows you to
do operator overloading without leaving the framework of C.

Of course this is an extension, but it is compatible with the standard.
No new keywords are used.

http://www.cs.virinia.edu/~lcc-win32


Jacob, as much as I admire lcc-win32, I was not aware that you had a
cross compiler that output PowerPC executables.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Nov 29 '05 #7
jacob navia <ja***@jacob.remcomp.fr> wrote:
Consider this:
qfloat a;
qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));

compared with: This does the *same* stuff but which expression would
you prefer???


Neither. I would prefer not to use superfluous not-C. Even more than
that I would prefer not-C not to be discussed here.

Richard
Nov 29 '05 #8
Jack Klein wrote:
On Tue, 29 Nov 2005 11:31:19 +0100, jacob navia
<ja***@jacob.remcomp.fr> wrote in comp.lang.c:

Raghu a écrit :
Hello all,

I need your help on how to redefine teh function of arithmetic operators in
C.

for example : if there is an equation c = a/b;

i want to execute my own algorithm for division operator.
I am compelled to use the native C , instead of calling functions or using
macros for doing arithmetic operations.
I mean i was compelled not to use c =MYDIV(a,b) or somewthing like that.

This i needeed to simulate floating point unit of MPC5554 on PC.In MPC the
way the rounding , overflow,errors dealt is different from those used in P4
or AMD.

so i need to simulate the floating point arithmetic of MPC5554 , when i want
to simualte the code designed for it.
I hope i could able express my question clearly.

Your help and advice is sought after at the earliest.

Thanks and Best Regards
Raghu.


I am afraid to start a new flame war here, but if you accept
to use *non-standard* C, the lcc-win32 compiler allows you to
do operator overloading without leaving the framework of C.

Of course this is an extension, but it is compatible with the standard.
No new keywords are used.

http://www.cs.virinia.edu/~lcc-win32

Jacob, as much as I admire lcc-win32, I was not aware that you had a
cross compiler that output PowerPC executables.


AAAAArgh!!

You are right. My fault.

jacob
Nov 29 '05 #9
In article <43*************@news.xs4all.nl>,
Richard Bos <rl*@hoekstra-uitgeverij.nl> wrote:
jacob navia <ja***@jacob.remcomp.fr> wrote:
Consider this:
qfloat a;
qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));

compared with:

This does the *same* stuff but which expression would
you prefer???


Neither. I would prefer not to use superfluous not-C. Even more than
that I would prefer not-C not to be discussed here.

Richard


Because we all know how dangerous thoughts and words can be to an
established order.

Nov 29 '05 #10
jacob navia <ja***@jacob.remcomp.fr> writes:
Keith Thompson a écrit :
You don't really *need* operator overloading; anything you can do
with
it, you can do without it (with ordinary function calls).


This is of course true.

It is just a matter of measure.

Consider this:
qfloat a;
qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));

compared with:

tmp1 = qadd(a,1);
tmp2 = sqrtq(tmp1);
tmp3 = qsub(a,1);
tmp4 = sqrt(tmp3);
tmp5 = qdiv(tmp1,tmp3);
tmp6 = cosq(tmp1);
tmp7 = cosq(tmp3);
tmp8 = qdiv(tmp6,tmp7);
result = qmul(tmp8,tmp5);

This does the *same* stuff but which expression would
you prefer???


I prefer the one that's valid C, and that I can use on systems other
than Win32.

In the context of this newsgroup (now listen carefully), *C does not
support operator overloading*. Conversely, a language that does
support operator overloading is not C. I've used languages that do
support operator overloading, and I've found it useful when used
carefully -- but those languages have their own newsgroups, as does
the lcc compiler.

And jacob, please don't send me e-mail copies of Usenet followups.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 29 '05 #11
In article <43**************@jacob.remcomp.fr> jacob navia <ja***@jacob.remcomp.fr> writes:
....
Consider this:
qfloat a;
qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));

compared with:

tmp1 = qadd(a,1);
tmp2 = sqrtq(tmp1);
tmp3 = qsub(a,1);
tmp4 = sqrt(tmp3);
tmp5 = qdiv(tmp1,tmp3);
tmp6 = cosq(tmp1);
tmp7 = cosq(tmp3);
tmp8 = qdiv(tmp6,tmp7);
result = qmul(tmp8,tmp5);

This does the *same* stuff but which expression would
you prefer???


This is obviously a distortion of what is possible, how many of those
tmp's do you really need?
aplus1 = qadd(a, 1);
asub1 = qsub(a, 1);
result = qmul(qdiv(qsqrt(aplus1),qsqrt(asub1)),
qdiv(qcos(aplus1),qcos(asub1)));
which has the added advantage that it is correct.

Does your compiler calculate a+1 and a-1 only once? I have no idea, and
cannot check. I have no access to a win32 machine.
--
dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland, +31205924131
home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
Nov 30 '05 #12
Dik T. Winter wrote:
In article <43**************@jacob.remcomp.fr> jacob navia <ja***@jacob.remcomp.fr> writes:
...
> Consider this:
> qfloat a;
> qfloat q = (sqrt(a+1)/sqrt(a-1))*(cos(a+1)/cos(a-1));
>
> compared with:
>
> tmp1 = qadd(a,1);
> tmp2 = sqrtq(tmp1);
> tmp3 = qsub(a,1);
> tmp4 = sqrt(tmp3);
> tmp5 = qdiv(tmp1,tmp3);
> tmp6 = cosq(tmp1);
> tmp7 = cosq(tmp3);
> tmp8 = qdiv(tmp6,tmp7);
> result = qmul(tmp8,tmp5);
>
> This does the *same* stuff but which expression would
> you prefer???


This is obviously a distortion of what is possible, how many of those
tmp's do you really need?
aplus1 = qadd(a, 1);
asub1 = qsub(a, 1);
result = qmul(qdiv(qsqrt(aplus1),qsqrt(asub1)),
qdiv(qcos(aplus1),qcos(asub1)));
which has the added advantage that it is correct.

Does your compiler calculate a+1 and a-1 only once? I have no idea, and
cannot check. I have no access to a win32 machine.


It's very old-fashioned of me, I know, but I cringe at
code that calculates a product or quotient of square roots.

Other spine-tinglers include products and quotients of
power functions and exponentials, sums of logarithms, and
trig functions applied to arctangents. All such expressions
ought to be simplified unless there's a *very* good reason
not to, usually having to do with extraordinary care about
precision: sqrt(x)/sqrt(y) need not equal sqrt(x/y) exactly.
But if that sort of thing is a problem, the code needs an
extensive comment to explain why the expression should not
be simplified; the default behavior should be to simplify
such things, always.

--
Eric Sosman
es*****@acm-dot-org.invalid
Nov 30 '05 #13

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

Similar topics

6
by: Christian Brechbühler | last post by:
The template std::valarray behaves pretty much like a mathematical vector. Arithmetic operators apply elementwise. Now I'd like to extend this to a user-defined type, e.g., complex. ...
13
by: Amy | last post by:
Hello, We are developing C++ appplications for PDAs where memory is limited, so we want to do memory management by ourselves --- pre-allocated a big chunk and overwrite new and delete to call...
5
by: Lionel B | last post by:
Greetings, I am trying to implement "element-wise" arithmetic operators for a class along the following lines (this is a simplified example): // ----- BEGIN CODE ----- struct X { int a,b;
43
by: Mehta Shailendrakumar | last post by:
Hello, Can anyone suggest me operator to perform arithmetic shift in C? May it be for a perticular compiler. Thank you in advance. Regards, Shailendra
1
by: Satpreet | last post by:
I'm looking to simulate the behavior of a digital hardware arithmetic block in a C/C++ program. I was just wondering if there are any libraries (with datatypes and overloaded operators etc.)...
335
by: extrudedaluminiu | last post by:
Hi, Is there any group in the manner of the C++ Boost group that works on the evolution of the C language? Or is there any group that performs an equivalent function? Thanks, -vs
4
by: Thomas Kreuzer | last post by:
Hello everyone, I have a question regarding how to interpret a string. Basically I want to write a little calculator, I will type something like "12+69*12-44/2" and then want my program to...
6
by: sarathy | last post by:
Hi, What is integer promotion? How is it different from arithmetic conversion? Regards, Sarathy
0
by: tommyng | last post by:
Hi, I couldn't find any information/examples on how to redefine/overload the math operators in PHP. Is this even possible? Thanks, Tommy
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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.