Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi far; bei procedure - was sagt das aus? (https://www.delphipraxis.net/169487-far%3B-bei-procedure-sagt-das-aus.html)

Helmi 23. Jul 2012 18:39

far; bei procedure - was sagt das aus?
 
Hallo,

ich hab mir gerade einen Code einer Komponente angeschaut und da ist mir an einer procedure-Bezeichnung die "Erweiterung" (falls man das so nennt) far aufgefallen.

Delphi-Quellcode:
procedure DestroyLocals; far;
Was macht das far?

jaenicke 23. Jul 2012 18:46

AW: far; bei procedure - was sagt das aus?
 
Nix mehr, das gab es mal bei 16-Bit als Aufrufkonvention.

Helmi 23. Jul 2012 18:52

AW: far; bei procedure - was sagt das aus?
 
und für was war das gut?

WM_CLOSE 23. Jul 2012 18:57

AW: far; bei procedure - was sagt das aus?
 
Für weit (im Speicher) entfernte Sprünge.
könnte damit zusammenhängen:

http://stackoverflow.com/questions/3...d-far-pointers
Zitat:

The near and far keywords have its origin in the segmented memory model that Intel had before. The near pointers could only access a block of memory originally around 64Kb in size called a segment whereas the far pointers could go outside of that range consisting of a segment and offset in the that segment. The near pointers were much faster than far pointers so therefore in some contexts it paid off to use them.
Nowadays with virtual memory near and far pointers have no use.

EDIT: eher das:
http://stackoverflow.com/questions/1...word-in-delphi

Zitat:

As Ken White explained, it's only used in 16 bit applications.

As a 16 bit pointer only can address 64 kb of memory, memory segments are used to access more memory. The processor has four segment registers so it can have four active segments at the same time, a code segment (cs), a data segment (ds), a stack segment (ss) and an extra segment (es). Each segment is 64 kb, but they may address the same memory area or party overlap.

A near pointer is a 16 bit pointer inside the same segment. It's used as a pointer to data or code in the same module.

A far pointer is a 16+16 bit pointer consisting of a 16 bit segment offset and a near pointer. It's used as a pointer to data or code in a different module. When you use a far pointer to call a procedure, the segment part is put in the cs and ds registers (IIRC) to access the code and data in that module.

The physical address of a segment+pointer pair is calculated as segment * 16 + pointer. That means that a 16 bit program can address 1024 kB of memory. To get access to more memory the two techniques of extended and expanded memory is used. (Also the high memory technique to some extent, where the address would not wrap at a 1 MB barrier, but using the segment offset FFFF would give you direct access to 65520 bytes of extended memory.)


Alle Zeitangaben in WEZ +1. Es ist jetzt 02:42 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz