Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – //branches/tendra5/src/installers/common/construct/installglob.c – Rev 2

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    		 Crown Copyright (c) 1997
3
 
4
    This TenDRA(r) Computer Program is subject to Copyright
5
    owned by the United Kingdom Secretary of State for Defence
6
    acting through the Defence Evaluation and Research Agency
7
    (DERA).  It is made available to Recipients with a
8
    royalty-free licence for its use, reproduction, transfer
9
    to other parties and amendment for any purpose not excluding
10
    product development provided that any such use et cetera
11
    shall be deemed to be acceptance of the following conditions:-
12
 
13
        (1) Its Recipients shall ensure that this Notice is
14
        reproduced upon any copies or amended versions of it;
15
 
16
        (2) Any amended version of it shall be clearly marked to
17
        show both the nature of and the organisation responsible
18
        for the relevant amendment or amendments;
19
 
20
        (3) Its onward transfer from a recipient to another
21
        party shall be deemed to be that party's acceptance of
22
        these conditions;
23
 
24
        (4) DERA gives no warranty or assurance as to its
25
        quality or suitability for any purpose and DERA accepts
26
        no liability whatsoever in relation to any use to which
27
        it may be put.
28
*/
29
 
30
 
31
/**********************************************************************
32
$Author: release $
33
$Date: 1998/01/17 15:55:47 $
34
$Revision: 1.1.1.1 $
35
$Log: installglob.c,v $
36
 * Revision 1.1.1.1  1998/01/17  15:55:47  release
37
 * First version to be checked into rolling release.
38
 *
39
 * Revision 1.4  1997/08/23  13:24:24  pwe
40
 * no invert order, and NEWDIAGS inlining
41
 *
42
 * Revision 1.3  1996/10/29  10:10:50  currie
43
 * 512 bit alignment for hppa
44
 *
45
 * Revision 1.2  1995/09/19  16:06:49  currie
46
 * isAlpha!!
47
 *
48
 * Revision 1.1  1995/04/06  10:44:05  currie
49
 * Initial revision
50
 *
51
***********************************************************************/
52
 
53
 
54
 
55
#include "config.h"
56
#include "common_types.h"
57
 
58
#include "installglob.h"
59
 
60
/* All variables initialised */
61
 
62
exp crt_repeat;
63
exp repeat_list;
64
exp global_case;
65
dec * top_def;
66
dec ** deflist_end = &top_def;
67
aldef * top_aldef;	/* init in start_make_capsule */
68
 
69
int has_alloca;
70
int has_lv;
71
int proc_is_recursive;
72
int uses_crt_env;
73
int must_use_bp;
74
int has_setjmp;
75
int uses_loc_address;
76
int proc_struct_res;
77
int proc_label_count;
78
float default_freq;
79
int proc_externs;
80
int flpt_always_comparable = 1;
81
int report_versions = 0;
82
int do_unroll = 1;
83
 
84
int indirect_jumps = 1;
85
 
86
exp proc_struct_result;
87
 
88
version global_version;
89
 
90
char * dynamic_init_proc = (char*)0;
91
 
92
proc_props * old_proc_props = (proc_props *)0;
93
		/* initial value for pushing */
94
int in_proc_def = 0;
95
		/* initial value for pushing */
96
 
97
int flpt_const_overflow_fail = 1;
98
		/* flag can be cleared */
99
 
100
aldef const_aldefs[6];
101
int doing_aldefs; /* cleared in start_make_capsule */
102
 
103
alignment const_al1 = &const_aldefs[0];
104
alignment const_al8 = &const_aldefs[1];
105
alignment const_al16 = &const_aldefs[2];
106
alignment const_al32 = &const_aldefs[3];
107
alignment const_al64 = &const_aldefs[4];
108
alignment const_al512 = &const_aldefs[5];
109
 
110
int ptr_null = 0;
111
int proc_null = 0;
112
int lv_null = 0;
113
 
114
int no_bss = 0;
115
 
116
 
117