Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
7answers
4k views

How can i get cpuid in java?

I want create an encryption with java ; How can i get CPU Id or anythings is unique in pc such as bios or ... for example System.getCpuId(); :) it's just example ;) Thanks a lot ...
4
votes
1answer
180 views

Is this code valid to check for SSE3?

Is the following code valid to check if a CPU supports SSE3? Using the IsProcessorFeaturePresent() function does apparently not work on Windows XP (see ...
3
votes
1answer
72 views

CPUID on multiple cores/NUMA

I am working on CPU detection and general environment detection code for my hobby OS. Is there ever a case where CPUID needs to be called multiple times? That is if the system has multiple cores, does ...
3
votes
1answer
157 views

Determining x86 MONITOR instruction address range using CPUID instruction

Intel's documentation of MONITOR says: The MONITOR instruction arms address monitoring hardware using an address specified in EAX (the address range that the monitoring hardware checks for store ...
3
votes
4answers
1k views

x86/x64 CPUID in C#

Related to my other question, please help me debug "An unhandled exception of type 'System.AccessViolationException' occurred in Unknown Module. Additional information: Attempted to read or write ...
2
votes
1answer
34 views

Which x86 CPUID return values cannot be changed on a processor?

I know that the Name String on some AMD processors can be changed to return a different string. I believe the BIOS can disable cache or SSE support which would necessitate that the bits that indicate ...
2
votes
1answer
68 views

CPUID: Why must MISC_ENABLE.LCMV be set to 0 for some functions? Can I temporarily overwrite it?

I'm trying to use CPUID, but there are some strings attached. According to sandpile.org's CPUID page, CPUID standard functions 0000_0004h and up will only work if the MISC_ENABLE.LCMV flag is set to ...
2
votes
1answer
68 views

CallNtPowerInformation and GetPwrCapabilities under Linux

I have code that returns information about the running CPUs on an intel-based system under Windows. It does this with the CallNtPowerInformation and GetPwrCapabilities functions. Typical information ...
2
votes
2answers
132 views

Packing an int into a bitfield in C++

I'm converting some code from ASM to C++, the ASM simply looks like so: mov dword ptr miscStruct, eax the Struct looks like: struct miscStruct_s { uLong brandID : 8, chunks : 8, ...
2
votes
3answers
324 views

Detecting CPU capability without assembly

I've been looking at ways to determine the CPU, and its capabilities (eg SEE,SSE2,etc). However all the ways I've found involved assembly code using the cpuid instruction. Given the differing ways of ...
1
vote
1answer
430 views

x86 CPU Dispatching for SSE/AVX in C++

I have an algorithm which benefits from hand optimisation with SSE(2) intrinsics. Moreover, the algorithm will also be able to benefit from the 256-bit AVX registers in the future. My question is ...
1
vote
2answers
354 views

C++ word to bytes

I tried to read CPUID using assembler in C++. I know there is function for it in , but I want the asm way. So, after CPUID is executed, it should fill eax,ebx,ecx registers with ASCII coded string. ...
0
votes
0answers
48 views

How Can I import and compile my code with cpuid.h in Mac OS Xcode?

I am porting a piece of C++ code from Linux to MacOS. In the code, there is a feature that uses some low-level configurations of the machines. That's why we use cpuid.h: #include <cpuid.h> ...
0
votes
1answer
84 views

Reliable CPU information and high level programming languages

Could somebody advice to me if this is possible to get reliable data using any of the high level programing language/libraries? Or I need to take an assembler to achieve my goal. I need to get : CPU ...
0
votes
1answer
265 views

Repeating syntax errors at compile time

In my project I need to determine what SIMD instruction set the CPU supports. The problem is that when I try to do a test compile I get a series of errors that repeat several times like the compiler ...
0
votes
3answers
893 views

Getting CPU ID on virtual machine

I am trying to use this code: public string GetCPUId() { string cpuInfo = String.Empty; string temp = String.Empty; ManagementClass mc = new ManagementClass("Win32_Processor"); ...
0
votes
1answer
283 views

“Not found” exception generated while trying to get CPU ID via WMI

I'm using this code to fetch the processor id: public static string getProcessorId() { var mc = new ManagementClass("Win32_Processor"); var moc = mc.GetInstances(); ...
0
votes
2answers
404 views

Some inline assembler questions

I already asked similiar question here, but I still get some errors, so I hope you could tell me what am I doing wrong. Just know that I know assembler, and I have done several projects in 8051 ...