I read on OSDev wiki, that protected mode of x86 architecture allow you to create separate segments for code and data, while you cannot write into code section. That Windows (yes, this is the platform) loads new code into code segment, and data are created on data segment. But, if this is the case, how does program know it must switch segments to the data segment? Becouse if I understand it right, all adress instructions point to the segment you run the code from, unless you switch the descriptor. But I also read, that so colled flat memory model allows you to run code and data within one segment. But I read this only in connection to assembler. So, please, what is the case with C compiled code on Windows? Thanks.
|
feedback
|
|
There are two meanings for segment in the explanation:
The first is related to what is loaded into an 80386+ segment register; it contains a physical memory start address, memory allocation length, permitted read/write/execute access, and whether it grows from low to high or vice versa (plus some more obscure flags, like "copy on reference"). The second meaning is part of the object module language. Basically, there is a segment named As far as the x86 executing instructions, each operand has an associated segment register. Sometimes these are explicit, and sometimes they are implicit. Code is implicitly accessed through So, to answer your last question, the CPU has four (or more) segment registers set up at once to access the flat virtual memory space of the process. Each operand access is checked for being appropriate to the instruction (like not incrementing a | |||
|
feedback
|
|
The info you read is outdated. Windows versions since ~1993 use a flat 32-bit virtual memory space. The values of the CS and DS segment registers no longer matter and cannot be changed. There is still a notion of code vs data, now implemented by memory page attributes. Review the allowed values passed in the flNewProtect argument for the VirtualProtectEx() API function. You very rarely use this API yourself, the attributes are set by the executable image loader and the heap manager. | |||||||
feedback
|
|
The C language does not support memory segmentation. There are some old compilers that attempt to provide some access to segmented memory though. But, C the language itself does not support segmentation. It is meant to be used in a flat memory model. In a protected mode OS, the data and code segments typically overlap. That is they both have a base of 0 and a maximum of 0xffffffff on 32 bit systems. You would use paging to control access to memory. | |||
|
feedback
|