source: driver/as.cc @ 295dd61

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since 295dd61 was 813dfd86, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

print better information when asm check fails to find debug C code

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[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//
[245a92c]7// as.c -- map assembler file, scan for debug information. If found, expand file by one character and insert Cforall
8//         language code on the N line from the start of the debug information.
[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
[813dfd86]13// Last Modified On : Mon Dec  6 16:57:45 2021
14// Update Count     : 104
[80219a8]15//
[a2f146ee]16
17#include <cstdio>                                                                               // perror
[0a76d84]18#include <cstdlib>                                                                              // exit
19#include <fcntl.h>                                                                              // open
20#include <unistd.h>
21#include <sys/stat.h>
22#include <sys/mman.h>                                                                   // mmap
23#include <string.h>
[a2f146ee]24
25//#define __DEBUG_H__
26
[92f413c]27#ifdef __DEBUG_H__
28#include <iostream>
29using namespace std;
30#endif // __DEBUG_H__
31
[0a76d84]32int main( const int argc, const char * argv[] ) {
[a2f146ee]33        #ifdef __DEBUG_H__
34        for ( int i = 0; i < argc; i += 1 ) {
35                cerr << argv[i] << endl;
36        } // for
37        #endif // __DEBUG_H__
38
[0a76d84]39        int fd = open( argv[argc - 1], O_RDWR );
40        if ( fd < 0 ) { perror( "open" ); exit( EXIT_FAILURE ); };
[a2f146ee]41
[0a76d84]42        struct stat mystat = {};
43        if ( fstat( fd, &mystat ) ) { perror( "fstat" ); exit( EXIT_FAILURE ); };
44        off_t size = mystat.st_size;
[a2f146ee]45
[245a92c]46        if ( size ) {                                                                           // cannot map 0 sized file
[80219a8]47                char * start = (char *)mmap( NULL, size + 2, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 );
[245a92c]48                if ( start == (void *)-1 ) { perror( "mmap" ); exit( EXIT_FAILURE ); };
[a2f146ee]49
[813dfd86]50                if ( char * dcursor = strstr( start, ".Ldebug_info0:" ) ) { // debug information ?
[245a92c]51                        // Expand file by one byte to hold 2 character Cforall language code.
52                        if ( ftruncate( fd, size + 1 ) ) { perror( "ftruncate" ); exit( EXIT_FAILURE ); };
[f7ac09d]53
[813dfd86]54                        char * cursor = dcursor;
[245a92c]55                        for ( int i = 0; i < 8; i += 1 ) {                      // move N (magic) lines forward
56                                cursor = strstr( cursor, "\n" ) + 1;
57                        } // for
[f7ac09d]58
[245a92c]59                        cursor -= 2;                                                            // backup over "c\n" language value
[813dfd86]60                        if ( *(cursor - 1) != 'x' ) {                           // 0x before code
61                                fprintf( stderr, "*** ERROR *** Invalid C language code found in assembler file: %s\n"
62                                                 "Assembler debug information:\n%.*s",
63                                                 argv[argc - 1], (int)(cursor - dcursor) + 2, dcursor );
64                                exit( EXIT_FAILURE );
65                        };
[f7ac09d]66
[245a92c]67                        memmove( cursor + 2, cursor + 1, start + size - cursor - 1 ); // move remaining text 1 character right
[f7ac09d]68
[245a92c]69                        *(cursor) = '2';                                                        // replace C language value with CFA
70                        *(cursor + 1) = '5';
71                } // if
[a2f146ee]72
[80219a8]73                if ( munmap( start, size + 2 ) ) { perror( "munmap" ); exit( EXIT_FAILURE ); }; // update on disk
[245a92c]74        } // if
[a2f146ee]75
76        argv[0] = "as";
77        execvp( argv[0], (char * const *)argv );                        // should not return
78        perror( "CFA Translator error: cpp level, execvp" );
79        exit( EXIT_FAILURE );                                                           // tell gcc not to go any further
80} // main
81
82// Local Variables: //
83// tab-width: 4 //
84// mode: c++ //
85// compile-command: "g++ -Wall -Wextra as.c -o as" //
86// End: //
Note: See TracBrowser for help on using the repository browser.