cpuid.cc (10439:1bd64b294fe4) cpuid.cc (10539:cd107abe79dd)
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 117 unchanged lines hidden (view full) ---

126 result = CpuidResult(0x00000000, 0x42004200,
127 0x00000000, 0x04008140);
128 break;
129 case APMInfo:
130 result = CpuidResult(0x80000018, 0x68747541,
131 0x69746e65, 0x444d4163);
132 break;
133 case LongModeAddressSize:
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 117 unchanged lines hidden (view full) ---

126 result = CpuidResult(0x00000000, 0x42004200,
127 0x00000000, 0x04008140);
128 break;
129 case APMInfo:
130 result = CpuidResult(0x80000018, 0x68747541,
131 0x69746e65, 0x444d4163);
132 break;
133 case LongModeAddressSize:
134 result = CpuidResult(0x0000ffff, 0x00000000,
134 result = CpuidResult(0x00003030, 0x00000000,
135 0x00000000, 0x00000000);
136 break;
137/* case SVMInfo:
138 case TLB1GBPageInfo:
139 case PerformanceInfo:*/
140 default:
141 warn("x86 cpuid: unimplemented function %u", funcNum);
142 return false;

--- 28 unchanged lines hidden ---
135 0x00000000, 0x00000000);
136 break;
137/* case SVMInfo:
138 case TLB1GBPageInfo:
139 case PerformanceInfo:*/
140 default:
141 warn("x86 cpuid: unimplemented function %u", funcNum);
142 return false;

--- 28 unchanged lines hidden ---