OSDN Git Service

* libioP.h: Remove old ABI mangling code.
[pf3gnuchains/gcc-fork.git] / libio / stdstrbufs.cc
1 /*
2 Copyright (C) 1994, 2000 Free Software Foundation
3
4 This file is part of the GNU IO Library.  This library is free
5 software; you can redistribute it and/or modify it under the
6 terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this library; see the file COPYING.  If not, write to the Free
17 Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does not cause
21 the resulting executable to be covered by the GNU General Public License.
22 This exception does not however invalidate any other reasons why
23 the executable file might be covered by the GNU General Public License. */
24
25
26 /* This file provides definitions of _IO_stdin, _IO_stdout, and _IO_stderr
27    for C++ code.  Compare stdfiles.c.
28    (The difference is that here the vtable field is set to
29    point to builtinbuf's vtable, so the objects are effectively
30    of class builtinbuf.) */
31
32 #include "libioP.h"
33 #include <stdio.h>
34
35 #if !defined(filebuf_vtable) && defined(__cplusplus)
36 #ifdef __GNUC__
37 extern char filebuf_vtable[]
38   asm ( "_ZTV7filebuf" );
39 #else /* !__GNUC__ */
40 #if _G_VTABLE_LABEL_HAS_LENGTH
41 #define filebuf_vtable _G_VTABLE_LABEL_PREFIX_ID##7filebuf
42 #else
43 #define filebuf_vtable _G_VTABLE_LABEL_PREFIX_ID##filebuf
44 #endif
45 extern char filebuf_vtable[];
46 #endif /* !__GNUC__ */
47 #endif /* !defined(filebuf_vtable) && defined(__cplusplus) */
48
49 #ifndef STD_VTABLE
50 #define STD_VTABLE (const struct _IO_jump_t *)filebuf_vtable
51 #endif
52
53 #ifdef _IO_MTSAFE_IO
54 #define DEF_STDFILE(NAME, FD, CHAIN, FLAGS) \
55   static _IO_lock_t _IO_stdfile_##FD##_lock = _IO_lock_initializer; \
56   struct _IO_FILE_plus NAME \
57     = {FILEBUF_LITERAL(CHAIN, FLAGS, FD), STD_VTABLE}
58 #else
59 #define DEF_STDFILE(NAME, FD, CHAIN, FLAGS) \
60   struct _IO_FILE_plus NAME = {FILEBUF_LITERAL(CHAIN, FLAGS, FD), STD_VTABLE}
61 #endif
62
63 DEF_STDFILE(_IO_stdin_, 0, 0, _IO_NO_WRITES);
64 DEF_STDFILE(_IO_stdout_, 1, &_IO_stdin_.file, _IO_NO_READS);
65 DEF_STDFILE(_IO_stderr_, 2, &_IO_stdout_.file,
66             _IO_NO_READS+_IO_UNBUFFERED);
67
68 #ifdef _STDIO_USES_IOSTREAM
69 _IO_FILE *_IO_list_all = &_IO_stderr_.file;
70 #else /* !_STDIO_USES_IOSTREAM */
71 #include "stdiostream.h"
72
73 struct _IO_fake_stdiobuf {
74   struct {
75     _IO_FILE file;
76     const void *vtable;
77   } s;
78   FILE *stdio_file;
79 };
80
81 /* Define stdiobuf_vtable as a name for the virtual function table
82    of the stdiobuf class. */
83 #ifndef stdiobuf_vtable
84 #ifdef __GNUC__
85 extern struct _IO_jump_t stdiobuf_vtable
86   asm ( "_ZTV15stdiobuf_vtable" );
87 #else /* !__GNUC__ */
88 #if _G_VTABLE_LABEL_HAS_LENGTH
89 #define stdiobuf_vtable _G_VTABLE_LABEL_PREFIX_ID##8stdiobuf
90 #else
91 #define stdiobuf_vtable _G_VTABLE_LABEL_PREFIX_ID##stdiobuf
92 #endif
93 extern struct _IO_jump_t stdiobuf_vtable;
94 #endif /* !__GNUC__ */
95 #endif /* !stdiobuf_vtable */
96
97 #ifdef _IO_MTSAFE_IO
98 #define DEF_STDIOFILE(NAME, FD, FILE, FLAGS, CHAIN) \
99   static _IO_lock_t _IO_stdfile_##FD##_lock = _IO_lock_initializer; \
100   struct _IO_fake_stdiobuf NAME = \
101       {{{ _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+_IO_UNBUFFERED+FLAGS, \
102          0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD, \
103          0, 0, 0, 0, { 0 }, _IO_stdfile_##FD##_lock},\
104          &stdiobuf_vtable}, FILE}
105 #else
106 #define DEF_STDIOFILE(NAME, FD, FILE, FLAGS, CHAIN) \
107   struct _IO_fake_stdiobuf NAME = \
108       {{{ _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+_IO_UNBUFFERED+FLAGS, \
109             0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD}, \
110          &stdiobuf_vtable}, FILE}
111 #endif
112
113 DEF_STDIOFILE(_IO_stdin_buf, 0, stdin, _IO_NO_WRITES, &_IO_stderr_.file);
114 DEF_STDIOFILE(_IO_stdout_buf, 1, stdout, _IO_NO_READS, &_IO_stdin_buf.s.file);
115 DEF_STDIOFILE(_IO_stderr_buf, 2, stderr, _IO_NO_READS, &_IO_stdout_buf.s.file);
116
117 _IO_FILE *_IO_list_all = &_IO_stderr_buf.s.file;
118 #endif  /* !_STDIO_USES_IOSTREAM */