mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
5aedd53624
Dumps found on http://instlatx64.atw.hu/
62 lines
1.8 KiB
C
62 lines
1.8 KiB
C
/* This program can be used to convert CPUID Dump from http://instlatx64.atw.hu/
|
|
* To build: gcc convert_instlatx64.c -o convert_instlatx64
|
|
* To run: ./convert_instlatx64 <input file (from instlatx64)> <output file (without extension)>
|
|
* Then, you can use the create_test.py script to create the test file */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
#define LINE_LEN 53
|
|
#define FILENAME_LEN 32
|
|
#define CMD_LEN 256
|
|
#define EXT_CPUID 0x80000000
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
uint32_t addr, eax, ebx, ecx, edx;
|
|
char line[LINE_LEN], raw_filename[FILENAME_LEN], report_filename[FILENAME_LEN], cmd[CMD_LEN];
|
|
FILE *fin = NULL, *fout = NULL;
|
|
|
|
if(argc < 3)
|
|
{
|
|
fprintf(stderr, "Usage: %s <input file (from instlatx64)> <output file (without extension)>\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
snprintf(raw_filename, FILENAME_LEN, "%s.raw", argv[2]);
|
|
snprintf(report_filename, FILENAME_LEN, "%s_report.txt", argv[2]);
|
|
|
|
if((fin = fopen(argv[1], "r")) == NULL)
|
|
{
|
|
perror("Failed to open input file");
|
|
return 1;
|
|
}
|
|
|
|
if((fout = fopen(raw_filename, "w")) == NULL)
|
|
{
|
|
perror("Failed to open output file");
|
|
return 1;
|
|
}
|
|
|
|
while(fgets(line, LINE_LEN, fin) != NULL)
|
|
{
|
|
sscanf(line, "CPUID %x: %x-%x-%x-%x", &addr, &eax, &ebx, &ecx, &edx);
|
|
if(((addr < EXT_CPUID) && (addr >= 32)) || ((addr >= EXT_CPUID) && (addr - EXT_CPUID >= 32)))
|
|
continue;
|
|
|
|
if(addr < EXT_CPUID)
|
|
fprintf(fout, "basic_cpuid[%d]", addr);
|
|
else
|
|
fprintf(fout, "ext_cpuid[%d]", addr - EXT_CPUID);
|
|
fprintf(fout, "=%08x %08x %08x %08x\n", eax, ebx, ecx, edx);
|
|
}
|
|
|
|
fclose(fout);
|
|
snprintf(cmd, CMD_LEN, "cpuid_tool --load=%s --report --outfile=%s", raw_filename, report_filename);
|
|
system(cmd);
|
|
printf("Done. Use the following command to create the test file:\n");
|
|
printf("./create_test.py %s %s > %s.test\n", raw_filename, report_filename, argv[2]);
|
|
|
|
return 0;
|
|
}
|