473,462 Members | 1,243 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

function without an address?

In days of old, for no discernible reason, many CPU's had the ability
to execute one or more instructions out of registers. Not very common
today.

Which brings up a semi interesting point.

We know the "register" keyword suggests the compiler keep the
following variable in a register.

We also have the "inline" suggestion in C++ to suggest inlining a
function.

What if one could suggest: register int max(a,b) { return a>b?a:b }

.... meaning "you might want to keep this function in registers"

of course the usual "register" and "inline" restrictions would apply--
you cant take the address of this function or pass it as a function
parameter. Plus the registers would be unavailable for any other use.

I guess all these hints are kinda obsolescent as the hardware guys are
always trying to find ways of giving us more speed, like adding a cache
so some variables have register-like speed, same for code cache so some
code executes like it was in registers.

Kinda weird for a function being "there" but not having an address.

Nov 2 '06 #1
7 1402
Ancient_Hacker wrote:
In days of old, for no discernible reason, many CPU's had the ability
to execute one or more instructions out of registers. Not very common
today.

Which brings up a semi interesting point.

We know the "register" keyword suggests the compiler keep the
following variable in a register.

We also have the "inline" suggestion in C++ to suggest inlining a
function.

What if one could suggest: register int max(a,b) { return a>b?a:b }

... meaning "you might want to keep this function in registers"

of course the usual "register" and "inline" restrictions would apply--
you cant take the address of this function or pass it as a function
parameter. Plus the registers would be unavailable for any other use.

I guess all these hints are kinda obsolescent as the hardware guys are
always trying to find ways of giving us more speed, like adding a cache
so some variables have register-like speed, same for code cache so some
code executes like it was in registers.
You never know, these instructions (which CPUs by the way?) may already
be used by some cunning optimiser.
Kinda weird for a function being "there" but not having an address.
Well there are CPUs out there with addressable registers (8051 for
example) so if that set intersects with those with register
instructions, it might be possible :)

--
Ian Collins.
Nov 2 '06 #2
In article <11**********************@b28g2000cwb.googlegroups .com>,
Ancient_Hacker <gr**@comcast.netwrote:
>In days of old, for no discernible reason, many CPU's had the ability
to execute one or more instructions out of registers.
Often this didn't speed things up unless you'd paid extra for
semiconductor registers. (I used to have a PDP-10 price list with the
price for these, but I fear it was destroyed when most of our AI
department burnt down.)

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Nov 2 '06 #3
2006-11-02 <ei***********@pc-news.cogsci.ed.ac.uk>,
Richard Tobin wrote:
Often this didn't speed things up unless you'd paid extra for
semiconductor registers. (I used to have a PDP-10 price list with the
price for these, but I fear it was destroyed when most of our AI
department burnt down.)
What were registers otherwise? surely not core memory?
Nov 2 '06 #4
In article <sl*******************@rlaptop.random.yi.org>,
Jordan Abel <ra*******@gmail.comwrote:
>What were registers otherwise? surely not core memory?
Yes.

Looking back at previous threads on this subject, I see that it may be
that DEC never actually shipped any of these machines without the
theoretically optional fast registers:

http://groups.google.com/group/alt.s...8b87a6590ffa44

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Nov 3 '06 #5
Richard Tobin wrote:
Ancient_Hacker <gr**@comcast.netwrote:
>In days of old, for no discernible reason, many CPU's had the
ability to execute one or more instructions out of registers.

Often this didn't speed things up unless you'd paid extra for
semiconductor registers. (I used to have a PDP-10 price list
with the price for these, but I fear it was destroyed when most
of our AI department burnt down.)
That was the 'execute' instruction. Some machines could operate on
storage with it. HP3000 for one. It was in a register if on top
of stack.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
Nov 3 '06 #6
ri*****@cogsci.ed.ac.uk (Richard Tobin) wrote:
In article <11**********************@b28g2000cwb.googlegroups .com>,
Ancient_Hacker <gr**@comcast.netwrote:
In days of old, for no discernible reason, many CPU's had the ability
to execute one or more instructions out of registers.

Often this didn't speed things up unless you'd paid extra for
semiconductor registers. (I used to have a PDP-10 price list with the
price for these, but I fear it was destroyed when most of our AI
department burnt down.)
Evidently Eliza acidentally loaded one of her registers with an HCF
instruction.

Richard
Nov 3 '06 #7
In article <11**********************@b28g2000cwb.googlegroups .com>
Ancient_Hacker <gr**@comcast.netwrote:
>In days of old, for no discernible reason, many CPU's had the ability
to execute one or more instructions out of registers. Not very common
today.
I can only think of two general examples (more on that in a moment).
>Which brings up a semi interesting point.

We know the "register" keyword suggests the compiler keep the
following variable in a register.

We also have the "inline" suggestion in C++ to suggest inlining a
function.
C99 has "inline" as well, with (I believe) somewhat different semantics.
>What if one could suggest: register int max(a,b) { return a>b?a:b }

... meaning "you might want to keep this function in registers"

of course the usual "register" and "inline" restrictions would apply--
you cant take the address of this function ...
In C89, of course, any legitimate use of a function identifier
winds up computing its address.[%] (If a C99 inline function is
actually expanded in line, it makes sense to talk about this as
*not* having "taken the address" of the function, since the code
that implements it has simply been inserted in line, as the keyword
itself suggests. In a sense, the *value* of the call has then been
recorded, instead of the call itself, even if/when that requires
a bunch of expanded-in-line computation.)

On the other hand, if one is writing a Standard, one simply (hah)
goes back and changes the language describing function calls to
make them not "find the pointer" first, at least for inline.

-----
[%] This is not unlike "register T arr[N];" in C89, except that
here, you can do "sizeof arr", making register arrays only *almost*
completely useless. :-)
-----
>Kinda weird for a function being "there" but not having an address.
Back to the two "general examples" ... the first is machines on
which registers have addresses. (PDP-10, TI-9900, possibly others;
I only know of actual "code in registers" instances for the first
though.) In this case, putting code in the registers still leaves
it with an address.

The other example is machines with an "execute indirect" instruction,
where one can, e.g., point a register at a memory location that
contains a single instruction, then use the "exec" instruction to
pull in that single instruction. Sometimes the "exec" instruction
will allow the instruction-to-execute to be in a register itself
(instead of pointed-to *by* a register). In this last case, the
target instruction does not have an address -- but in both cases,
the "function" is only a single instruction. In general, this is
not useful to C compilers, where functions (inline or not) often
need multiple instructions.

In any case, I think if one were designing a C-like language from
scratch, "inline" alone would suffice -- "register inline" is not
so useful after all. Indeed, I think I would rather just define
the language so that functions default to internal-linkage, and
can then easily be inlined during optimization, the same way modern
compilers largely ignore "register" declarations on automatic
variables and just assign registers as appropriate.
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
Nov 3 '06 #8

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

Similar topics

3
by: Roy Yao | last post by:
Hello, I need to pass a pointer to a callback function to the lower level modules. But the function is thought to be a virtual member one. How can I get the real address of the virtual...
58
by: jr | last post by:
Sorry for this very dumb question, but I've clearly got a long way to go! Can someone please help me pass an array into a function. Here's a starting point. void TheMainFunc() { // Body of...
11
by: JKop | last post by:
Take the following simple function: unsigned long Plus5Percent(unsigned long input) { return ( input + input / 20 ); } Do yous ever consider the possibly more efficent:
89
by: Sweety | last post by:
hi, Is main function address is 657. its show in all compiler. try it & say why? bye,
4
by: Nicole | last post by:
Is there a way to explicitly define the address pointed to by a function pointer without using the address-of operator? Such as: void (*ptrFunction)(void) = NULL; void funcA(void); //Address...
38
by: maadhuu | last post by:
does it make sense to find the size of a function ??? something like sizeof(main) ??? thanking you ranjan.
23
by: bluejack | last post by:
Ahoy... before I go off scouring particular platforms for specialized answers, I thought I would see if there is a portable C answer to this question: I want a function pointer that, when...
8
by: all.junks | last post by:
Hi, Let's say I'm in function foo. I am trying to find the function(or return address) which called foo. Initially, I thought I could use stack base pointer(ebp+4) to find the return address....
13
by: JD | last post by:
Hi, My associate has written a copy constructor for a class. Now I need to add an operator = to the class. Is there a way to do it without change her code (copy constructor) at all? Your help...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
1
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.