1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com
5 // 1 op = 6 ANDs, 3 SHRs, 3 SHLs, 4 assigns, 2 ADDs
7 function fast3bitlookup(b) {
8 var c, bi3b = 0xE994; // 0b1110 1001 1001 0100; // 3 2 2 1 2 1 1 0
9 c = 3 & (bi3b >> ((b << 1) & 14));
10 c += 3 & (bi3b >> ((b >> 2) & 14));
11 c += 3 & (bi3b >> ((b >> 5) & 6));
15 lir4,0xE994; 9 instructions, no memory access, minimal register dependence, 6 shifts, 2 adds, 1 inline assign
28 function TimeFunc(func) {
31 for(var x=0; x<500; x++)
32 for(var y=0; y<256; y++) sum += func(y);
36 sum = TimeFunc(fast3bitlookup);