/* BEGIN_LEGAL Copyright (c) 2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. END_LEGAL */ // to avoid empty compilation unit on no-decoder compiles #include "xed/xed-interface.h" #if defined(XED_DECODER) #include "xed-examples-util.h" #include "xed-disas-hex.h" #include #include static FILE* open_file(char const* const path, char const* const mode) { FILE* f; #if defined(XED_MSVC8_OR_LATER) && !defined(PIN_CRT) errno_t err; err = fopen_s(&f,path, mode); #else int err=0; f = fopen(path, mode); err = (f==0); #endif if (err) { fprintf(stderr, "Could not open file: %s\n", path); exit(1); } return f; } static int read_byte(FILE* f, xed_uint8_t* b) { int r; unsigned int i; #if defined(_WIN32) && !defined(PIN_CRT) r = fscanf_s(f,"%2x", &i); #else r = fscanf(f,"%2x", &i); #endif if (b) *b = (xed_uint8_t)i; return r; } void xed_disas_hex(xed_disas_info_t* fi) { xed_uint8_t* region = 0; unsigned int len = 0; unsigned int i = 0; xed_uint8_t b = 0; FILE* f = 0; // read file once to get length f = open_file(fi->input_file_name, "r"); while (read_byte(f,0) != -1) { len++; } fclose(f); region = (xed_uint8_t*) malloc(len); if (region == 0) { fprintf(stderr,"ERROR: Could not malloc region for hex file\n"); exit(1); } // read file again to read the bytes f = open_file(fi->input_file_name, "r"); while (read_byte(f,&b) != -1) { assert(i < len); region[i++] = b; } fclose(f); assert(i==len); fi->s = (unsigned char*)region; fi->a = (unsigned char*)region; fi->q = (unsigned char*)(region) + len; // end of region fi->runtime_vaddr = 0; fi->runtime_vaddr_disas_start = 0; fi->runtime_vaddr_disas_end = 0; fi->symfn = 0; fi->caller_symbol_data = 0; fi->line_number_info_fn = 0; xed_disas_test(fi); if (fi->xml_format == 0) xed_print_decode_stats(fi); } #endif