File: error.C

package info (click to toggle)
tela 1.34-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,064 kB
  • ctags: 6,105
  • sloc: cpp: 19,200; ansic: 13,761; lex: 1,652; fortran: 1,048; yacc: 834; sh: 723; makefile: 571
file content (100 lines) | stat: -rw-r--r-- 2,664 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * This file is part of tela the Tensor Language.
 * Copyright (c) 1994-1999 Pekka Janhunen
 */

#ifdef __GNUC__
#  pragma implementation "error.H"
#endif
#include "def.H"
#include "error.H"
#include "common.H"

TIntStack thePCstack;

extern int FindLineNumber();	// defined in tela.C
extern const char *FindFileName();	// also defined in tela.C
extern FILE *FindAndOpenFile(const Tchar* fn);	// this one too

#if HAVE_RUSAGE
struct rusage struct_ru;
#elif HAVE_SYS_PROCFS_H
prstatus_t struct_pr;
#endif

strstream err;

TJumpBuffer jmp1,jmp2;

static void DisplayFromFile(const char *fn, int linenum) {
	int ch;
	const int PreLines = 2;		// display PreLines lines before the error line
	const int LINELEN = 70;		// truncate lines longer than this
	FILE *fp = FindAndOpenFile((const Tchar*)fn);
	if (!fp) return;
        int i;
	for (i=0; i<linenum-PreLines-1; i++)
		for (ch=fgetc(fp); ch!='\n'; ch=fgetc(fp)) if (feof(fp)) {fclose(fp); return;}
	for (i=0; i<min(PreLines+1,linenum); i++) {
		char s[LINELEN+2];
		if (i==min(PreLines,linenum-1)) cerr << "=> "; else cerr << "   ";
		int j=0;
		int truncated=0;
		for (ch=fgetc(fp); ch!='\n'; ch=fgetc(fp)) {
			if (feof(fp)) {fclose(fp); return;}
			if (j<LINELEN) s[j++] = ch; else truncated=1;
		}
		s[j] = '\0';
		cerr << s;
		if (truncated) cerr << "..";
		cerr << '\n';
	}
	fclose(fp);
}	

void error()
{
#	if SUPPORT_LOOP_TILING
	global::tile_in_use = 0;
#	endif
	int linenumber = FindLineNumber();
	const char *filename = FindFileName();
	cerr << "*** ";
	if (filename && *filename) {
		cerr << "Runtime error at line " << linenumber << " in \"" << filename << "\".\n";
		if (linenumber > 0) DisplayFromFile(filename,linenumber);
	}
	err << ends;
	err.seekg(0);
	int ch;
	while ((ch=err.get())) cerr.put(char(ch));
	err.clear();
	err.seekp(0);
	if (global::debugging) {
		LongJmp(jmp2,1);
	} else {
		LongJmp(jmp1,1);
	}
}

void ConsistencyChecks()
{
	if (sizeof(Treal) < sizeof(Tint) || sizeof(Tcomplex) < sizeof(Tint)) {
		cerr << "*** sizeof(Treal) = " << sizeof(Treal) << " is smaller than sizeof(Tint) = "
			 << sizeof(Tint) << '\n';
		exit(1);
	}
	if (sizeof(Tint) > sizeof(TPtrInt) || sizeof(void*) > sizeof(TPtrInt) || sizeof(int) > sizeof(TPtrInt)) {
		cerr << "*** sizeof(TPtrInt) = " << sizeof(TPtrInt) << " is too small.\n";
		exit(1);
	}
	if (sizeof(Treal*) != sizeof(Tcomplex*)) {
		cerr << "*** sizeof(Treal*) = " << sizeof(Treal*) << " != sizeof(Tcomplex*) = " << sizeof(Tcomplex*) << ".\n";
	    exit(1);
    }
	if (2*sizeof(Treal) != sizeof(Tcomplex)) {
		cerr << "*** 2*sizeof(Treal) = " << 2*sizeof(Treal) << " != sizeof(Tcomplex) = " << sizeof(Tcomplex) << ".\n";
		exit(1);
	}
}