[80219a8] | 1 | // |
---|
[a2f146ee] | 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
[80219a8] | 6 | // |
---|
[a499702] | 7 | // as.c -- map assembler file, scan for debug information, then language code, and skip N lines forward to code. If |
---|
| 8 | // code is C dialect, possibly expand file by one character, and replace with Cforall language code. |
---|
[80219a8] | 9 | // |
---|
[a2f146ee] | 10 | // Author : Peter A. Buhr |
---|
| 11 | // Created On : Wed Aug 1 10:49:42 2018 |
---|
| 12 | // Last Modified By : Peter A. Buhr |
---|
[a499702] | 13 | // Last Modified On : Wed Dec 8 07:56:12 2021 |
---|
| 14 | // Update Count : 136 |
---|
[80219a8] | 15 | // |
---|
[a2f146ee] | 16 | |
---|
| 17 | #include <cstdio> // perror |
---|
[0a76d84] | 18 | #include <cstdlib> // exit |
---|
| 19 | #include <fcntl.h> // open |
---|
[88792f3] | 20 | #include <cstring> // strstr, memmove |
---|
| 21 | #include <unistd.h> // ftruncate,execvp |
---|
| 22 | #include <sys/stat.h> // fstat |
---|
[0a76d84] | 23 | #include <sys/mman.h> // mmap |
---|
[a2f146ee] | 24 | |
---|
| 25 | //#define __DEBUG_H__ |
---|
| 26 | |
---|
[0a76d84] | 27 | int main( const int argc, const char * argv[] ) { |
---|
[a2f146ee] | 28 | #ifdef __DEBUG_H__ |
---|
| 29 | for ( int i = 0; i < argc; i += 1 ) { |
---|
[88792f3] | 30 | fprintf( stderr, "%s\n", argv[i] ); |
---|
[a2f146ee] | 31 | } // for |
---|
| 32 | #endif // __DEBUG_H__ |
---|
| 33 | |
---|
[0a76d84] | 34 | int fd = open( argv[argc - 1], O_RDWR ); |
---|
| 35 | if ( fd < 0 ) { perror( "open" ); exit( EXIT_FAILURE ); }; |
---|
[a2f146ee] | 36 | |
---|
[0a76d84] | 37 | struct stat mystat = {}; |
---|
| 38 | if ( fstat( fd, &mystat ) ) { perror( "fstat" ); exit( EXIT_FAILURE ); }; |
---|
| 39 | off_t size = mystat.st_size; |
---|
[a2f146ee] | 40 | |
---|
[245a92c] | 41 | if ( size ) { // cannot map 0 sized file |
---|
[80219a8] | 42 | char * start = (char *)mmap( NULL, size + 2, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 ); |
---|
[245a92c] | 43 | if ( start == (void *)-1 ) { perror( "mmap" ); exit( EXIT_FAILURE ); }; |
---|
[a2f146ee] | 44 | |
---|
[63f2697] | 45 | char * dcursor; |
---|
| 46 | if ( (dcursor = strstr( start, ".Ldebug_info0:" ) ) ) { // debug information ? |
---|
[f7ac09d] | 47 | |
---|
[130a778] | 48 | if ( char * cursor = strstr( dcursor, ".long\t.LASF" ) ) { // language code ? |
---|
[63f2697] | 49 | for ( int i = 0; i < 2; i += 1 ) { // move N (magic) lines forward |
---|
[75873cf] | 50 | cursor = strstr( cursor, "\n" ) + 1; |
---|
| 51 | } // for |
---|
[58e0d3c] | 52 | cursor -= 2; // backup over "d\n", where d is a hex digit |
---|
[88792f3] | 53 | // From elfcpp/dwarf.h in the binutils source tree. |
---|
| 54 | // DW_LANG_C89 = 0x1, DW_LANG_C = 0x2, DW_LANG_C99 = 0xc, DW_LANG_C11 = 0x1d |
---|
[58e0d3c] | 55 | if ( *(cursor - 2) == '0' && *(cursor - 1) == 'x' && |
---|
| 56 | (*cursor == 'c' || *cursor == '1' || *cursor == '2') ) { // C99/C89/C |
---|
[130a778] | 57 | // Expand file by one byte to hold 2 character Cforall language code. |
---|
| 58 | if ( ftruncate( fd, size + 1 ) ) { perror( "ftruncate" ); exit( EXIT_FAILURE ); }; |
---|
[58e0d3c] | 59 | memmove( cursor + 2, cursor + 1, start + size - cursor - 1 ); // move remaining text 1 character right |
---|
| 60 | } else if ( *(cursor - 3) == '0' && *(cursor - 2) == 'x' && *(cursor - 1) == '1' && *cursor == 'd' ) { // C11 |
---|
[130a778] | 61 | } else { |
---|
[63f2697] | 62 | for ( int i = 0; i < 6; i += 1 ) { // move N (magic) lines forward |
---|
| 63 | cursor = strstr( cursor, "\n" ) + 1; |
---|
| 64 | } // for |
---|
| 65 | fprintf( stderr, "*** ERROR *** Invalid C language code found in assembler file: %s\n" |
---|
| 66 | "Assembler debug information:\n%.*s", |
---|
| 67 | argv[argc - 1], (int)(cursor - dcursor), dcursor ); |
---|
| 68 | exit( EXIT_FAILURE ); |
---|
[130a778] | 69 | } // if |
---|
[f7ac09d] | 70 | |
---|
[58e0d3c] | 71 | *(cursor - 1) = '2'; // replace C89/C/C99/C11 language code with CFA code |
---|
| 72 | *cursor = '5'; |
---|
[63f2697] | 73 | } // if |
---|
[245a92c] | 74 | } // if |
---|
[a2f146ee] | 75 | |
---|
[80219a8] | 76 | if ( munmap( start, size + 2 ) ) { perror( "munmap" ); exit( EXIT_FAILURE ); }; // update on disk |
---|
[245a92c] | 77 | } // if |
---|
[a2f146ee] | 78 | |
---|
| 79 | argv[0] = "as"; |
---|
| 80 | execvp( argv[0], (char * const *)argv ); // should not return |
---|
| 81 | perror( "CFA Translator error: cpp level, execvp" ); |
---|
| 82 | exit( EXIT_FAILURE ); // tell gcc not to go any further |
---|
| 83 | } // main |
---|
| 84 | |
---|
| 85 | // Local Variables: // |
---|
| 86 | // tab-width: 4 // |
---|
| 87 | // mode: c++ // |
---|
| 88 | // compile-command: "g++ -Wall -Wextra as.c -o as" // |
---|
| 89 | // End: // |
---|