473,387 Members | 1,572 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,387 software developers and data experts.

cheking overflow

there is a function f
i need to check whether the value returned by f is positive or
negative
but if the number overflows and shows negative even when actually it
is positive
how can i check that the number is really negative?

Aug 16 '07 #1
7 1884
quarkcode wrote, On 16/08/07 11:26:
there is a function f
i need to check whether the value returned by f is positive or
negative
but if the number overflows and shows negative even when actually it
is positive
how can i check that the number is really negative?
You will have to check for overflow in function f and return (or
otherwise make available) the status. Note that you generally need to
check whether an operation will overflow *before* doing the operation
rather than after, unsigned integer types being the exception.
--
Flash Gordon
Aug 16 '07 #2
quarkcode wrote:
>
there is a function f. i need to check whether the value returned
by f is positive or negative but if the number overflows and shows
negative even when actually it is positive how can i check that
the number is really negative?
You can't. Once the overflow occurs all operation is classified as
"undefined behaviour". You have to detect the overflow before it
actually occurs. How to do this depends on the types and codes
involved.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
--
Posted via a free Usenet account from http://www.teranews.com

Aug 16 '07 #3
On 16 Aug, 11:26, quarkcode <shaunak...@gmail.comwrote:
there is a function f
i need to check whether the value returned by f is positive or
negative
but if the number overflows and shows negative even when actually it
is positive
how can i check that the number is really negative?
One possibility might be for f to use a wider type internally, one
which is big enough that your routine won't overflow it. You can then
see whether the result is within the range of values you are able to
return from f - if it is not, then f could flag up an error somehow,
or you could replace the actual value with an artificial one (eg
INT_MAX).

I'll leave the details to you...

Paul.

Aug 16 '07 #4
quarkcode <sh********@gmail.comwrote:
# there is a function f
# i need to check whether the value returned by f is positive or
# negative
# but if the number overflows and shows negative even when actually it
# is positive
# how can i check that the number is really negative?

ANSI C doesn't require overflow detection. You would have used to
system dependent facilities, if they exist, though I've never heard
of a C compiler that can report integer overflow.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
Wow. A sailboat.
Aug 16 '07 #5
On Aug 16, 6:32 am, CBFalconer <cbfalco...@yahoo.comwrote:
quarkcode wrote:
there is a function f. i need to check whether the value returned
by f is positive or negative but if the number overflows and shows
negative even when actually it is positive how can i check that
the number is really negative?

You can't. Once the overflow occurs all operation is classified as
"undefined behaviour". You have to detect the overflow before it
actually occurs. How to do this depends on the types and codes
involved.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account fromhttp://www.teranews.com
suppose i calculate f(x),the function being long enough and i
calculate using link list.Can i know at what point dring the
calculation is it going to overflow
if i want to trap overflow before it actually happens

Aug 20 '07 #6
quarkcode wrote:
>
On Aug 16, 6:32 am, CBFalconer <cbfalco...@yahoo.comwrote:
quarkcode wrote:
there is a function f. i need to check whether the value returned
by f is positive or negative but if the number overflows and shows
negative even when actually it is positive how can i check that
the number is really negative?
You can't. Once the overflow occurs all operation is classified as
"undefined behaviour". You have to detect the overflow before it
actually occurs. How to do this depends on the types and codes
involved.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account fromhttp://www.teranews.com

suppose i calculate f(x),the function being long enough and i
calculate using link list.Can i know at what point dring the
calculation is it going to overflow
if i want to trap overflow before it actually happens
What is your procedure for "calculate using link list"?

What kind of operators and operands are invloved in
"calculate using link list"?

What's involved in "calculate using link list"
is pretty nebulous from my point of view.

--
pete
Aug 20 '07 #7
quarkcode wrote:
CBFalconer <cbfalco...@yahoo.comwrote:
>quarkcode wrote:
>>there is a function f. i need to check whether the value returned
by f is positive or negative but if the number overflows and shows
negative even when actually it is positive how can i check that
the number is really negative?

You can't. Once the overflow occurs all operation is classified as
"undefined behaviour". You have to detect the overflow before it
actually occurs. How to do this depends on the types and codes
involved.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account fromhttp://www.teranews.com

suppose i calculate f(x),the function being long enough and i
calculate using link list.Can i know at what point dring the
calculation is it going to overflow
if i want to trap overflow before it actually happens
Why is my sig, and my ISPs added sig, still present here? They are
plainly marked with sig markers. Are you crippled in some manner
that prevents operation of the selection and deletion keys? Is
this the same reason you fail to add blanks between sentences, and
fail to capitalize the personal pronoun 'I'?

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Aug 20 '07 #8

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

Similar topics

15
by: Andrew Fedoniouk | last post by:
I have a simple test document which produce the following in Mozilla and Opera: http://terrainformatica.com/w3/p2/problem1.png Internet Explorer behaves as per recommendation (I guess) Did I...
4
by: aling | last post by:
Given: signed a, b; How to judge overflow of the sum of these two operands? Just use one *if* statement. Is this statement right? if ((a>0 && b>0 && sum<=0) || (a<0 && b<0 && sum>=0)) //...
19
by: Jim | last post by:
I have spent the past few weeks designing a database for my company. The problem is I have started running into what I believe are stack overflow problems. There are two tab controls on the form...
27
by: REH | last post by:
I asked this on c.l.c++, but they suggested you folks may be better able to answer. Basically, I am trying to write code to detect overflows in signed integer math. I am trying to make it as...
7
by: wij | last post by:
Hi: Is there better way of detecting multiplication overflow for type long than by using double precision of lldiv to verify the result? Thanks in advance. I.J.Wang
25
by: junky_fellow | last post by:
Is there any way by which the overflow during addition of two integers may be detected ? eg. suppose we have three unsigned integers, a ,b, c. we are doing a check like if ((a +b) > c) do...
8
by: starffly | last post by:
In my program, the caculated value is supposed to be no more than the constant named MAXINT,otherwise, overflow error will be informed.however, I cannot test if the value exceeds MAXINT within the...
2
by: lexor | last post by:
Hi! I'm struggling with a strange IE behavior regarding tables. I have a table like the following one <table cellpadding="0" cellspacing="0" border="1" width="500"> <tr> <td><div...
42
by: thomas.mertes | last post by:
Is it possible to use some C or compiler extension to catch integer overflow? The situation is as follows: I use C as target language for compiled Seed7 programs. For integer computions the C...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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:
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...

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.