View Single Post
Old 12-08-2004, 01:10 PM   #19 (permalink)
KnifeMissile
 
KnifeMissile's Avatar
 
Location: Waterloo, Ontario
Quote:
Originally Posted by bendsley
What is 64-bit computing?

Before I get started, I wanted to take a moment and explain what 64-bit computing is and why it is so significant. As you probably know, computers process instructions in binary format. Each bit is capable of processing one binary instruction (zero or one) per clock cycle. Most of the PCs that are currently on the market have 32-bit processors, meaning that they can process 32 binary instructions per clock cycle.
I'm sorry, but my understanding is totally different from this. I couldn't finish reading your post because I was stuck on this issue so I would like this cleared up, please.

"Each bit is capable of processing one binary instruction per clock cycle?" This makes no sense to me. Consequently, "...meaning they can process 32 binary instructions per clock cycle" makes no sense to me, either.

A bit is a contraction of the term binary digit. So, a number represented with 64 binary digits is referred to as a 64 bit number.

Back in the day, PCs used to use 16 bit processors, the 386 being the last of them. What this meant is that the registers on the processor were 16 bits wide. Because you manipulated registers with the processor, this meant that the largest numbers you can manipulate with a 16 bit processor were 16 bit numbers, which have a maximum value of 2^16 -1 = 165535. As you can see, this is not a large number and so, in some respects, limited what the processor can do. Of course programs for the 386 could manipulate numbers larger than this (it would have been alomost useless if it couldn't) but it couldn't do so with the native instruction set. It had to simulate operations of larger numbers using an equivalent combination of 16 bit operations, which was much slower. For performance reasons, this also meant that pointers were restricted to 16 bit integers, which restricted the amount of accessible RAM to a measly 64KB without resorting to hardware hackery (which, incidentally, they did! This is a whole other story on its own and quite a funny one...).

The 486 marked the first 32 bit processor the the PC. It could perform 32 bit operations, with a maximum integer size of 2^32 - 1 = 4294967296, a little over a billion. Not only was this a much more useful integer limit but it also allowed the processor to address 4GB of RAM. Quite a lot of RAM to be sure but, as you can see, this is not an impossible amount of RAM for a home computer to have. In fact, it will probably be only a few years before people will consider this to be typical. We're also, now, considering switching to 64 bit processors. Coincidence? I'll let you decide.

So, now we're pushing for 64 bit processors. Incidentally, there were plenty of processors with wider registers than Intel's. The N64 was called that because it had a 64 bit processor (Motorola MIPS 4300, if memeory serves me). Many Sun prcessors in the mid 90's had 128 bit processors. So, this is hardly incredible technology. It is simply a choice and we're making this choice now because we want more RAM.

I look forward to reading the rest of your article, bendsley, but I would greatly appreciate it if you could clear this up.
Thanks!
KnifeMissile is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360