What's sizeof(size_t) on 32-bit vs the various 64-bit data models? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:59:09Z http://stackoverflow.com/feeds/question/918787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models 1 What's sizeof(size_t) on 32-bit vs the various 64-bit data models? anonymous 2009-05-28T01:27:06Z 2009-07-22T05:07:24Z <p>On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) supposed to be? Does it vary with data model like "long" does? If so, how?</p> <p>[1] en.wikipedia.org/wiki/64-bit#64-bit_data_models</p> http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models/918796#918796 3 Answer by beef2k for What's sizeof(size_t) on 32-bit vs the various 64-bit data models? beef2k 2009-05-28T01:30:40Z 2009-05-28T16:40:21Z <p><strong>EDIT:</strong> Thanks for the comments - I looked it up in the <a href="http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf" rel="nofollow">C99 standard</a>, which says in section 6.5.3.4:</p> <blockquote> <p>The value of the result is implementation-defined, and its type (an <strong>unsigned integer type</strong>) is <code>size_t</code>, defined in <code>&lt;stddef.h&gt;</code> (and other headers)</p> </blockquote> <p>So, the size of <code>size_t</code> is not specified, only that it has to be an unsigned integer type. However, an interesting specification can be found in chapter 7.18.3 of the standard:</p> <blockquote> <p>limit of <code>size_t</code></p> <p><code>SIZE_MAX 65535</code></p> </blockquote> <p>Which basically means that, irrespective of the size of <code>size_t</code>, the allowed value range is from 0-65535, the rest is implementation dependent.</p> http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models/918799#918799 2 Answer by Evan Teran for What's sizeof(size_t) on 32-bit vs the various 64-bit data models? Evan Teran 2009-05-28T01:32:18Z 2009-05-28T01:32:18Z <p>it should vary with the architecture because it represents the size of any object. So on a 32-bit system size_t will likely be at least 32-bits wide. On a 64-bit system it will likely be at least 64-bit wide.</p> http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models/918809#918809 0 Answer by adwords for What's sizeof(size_t) on 32-bit vs the various 64-bit data models? adwords 2009-05-28T01:35:36Z 2009-05-28T01:35:36Z <p>size_t is 64 bit normally on 64 bit machine</p> http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models/918909#918909 2 Answer by bdonlan for What's sizeof(size_t) on 32-bit vs the various 64-bit data models? bdonlan 2009-05-28T02:13:59Z 2009-05-28T02:13:59Z <p>size_t is defined by the C standard to be the unsigned integer return type of the sizeof operator (C99 6.3.5.4.4), and the argument of malloc and friends (C99 7.20.3.3 etc). The actual range is set such that the maximum (SIZE_MAX) is at least 65535 (C99 7.18.3.2).</p> <p>However, this doesn't let us determine sizeof(size_t). The implementation is free to use any representation it likes for size_t - so there is no upper bound on size - and the implementation is also free to define a byte as 16-bits, in which case size_t can be equivalent to unsigned char.</p> <p>Putting that aside, however, in general you'll have 32-bit size_t on 32-bit programs, and 64-bit on 64-bit programs, regardless of the data model. Generally the data model only affects static data; for example, in GCC:</p> <pre><code>`-mcmodel=small' Generate code for the small code model: the program and its symbols must be linked in the lower 2 GB of the address space. Pointers are 64 bits. Programs can be statically or dynamically linked. This is the default code model. `-mcmodel=kernel' Generate code for the kernel code model. The kernel runs in the negative 2 GB of the address space. This model has to be used for Linux kernel code. `-mcmodel=medium' Generate code for the medium model: The program is linked in the lower 2 GB of the address space but symbols can be located anywhere in the address space. Programs can be statically or dynamically linked, but building of shared libraries are not supported with the medium model. `-mcmodel=large' Generate code for the large model: This model makes no assumptions about addresses and sizes of sections. </code></pre> <p>You'll note that pointers are 64-bit in all cases; and there's little point to having 64-bit pointers but not 64-bit sizes, after all.</p> http://stackoverflow.com/questions/918787/whats-sizeofsizet-on-32-bit-vs-the-various-64-bit-data-models/1163158#1163158 0 Answer by Andrey Karpov for What's sizeof(size_t) on 32-bit vs the various 64-bit data models? Andrey Karpov 2009-07-22T05:07:24Z 2009-07-22T05:07:24Z <p>Terminology: <a href="http://www.viva64.com/terminology/size%5Ft.html" rel="nofollow">sizet_t</a>.</p>