CPUInfo c = CPUID.getInfo();
if(c instanceof AMDCPUInfo) {
AMDCPUInfo amdcpu = (AMDCPUInfo) c;
if(amdcpu.IsAthlon64Compatible())
return JBIGI_OPTIMIZATION_X86_64_32;
if(amdcpu.IsAthlonCompatible())
return JBIGI_OPTIMIZATION_ATHLON;
if(amdcpu.IsK6_3_Compatible())
return JBIGI_OPTIMIZATION_K6_3;
if(amdcpu.IsK6_2_Compatible())
return JBIGI_OPTIMIZATION_K6_2;