annotate src/share/vm/adlc/filebuff.hpp @ 229:3e82d72933d0

6718830: Hotspot fails to build with gcc 4.3 Summary: Fixed linux make file and couple adlc code to meet the changes of gcc 4.3 Reviewed-by: kamg, igor
author xlu
date Thu, 26 Jun 2008 14:15:01 -0700
parents a61af66fc99e
children 4d9884b01ba6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2004 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // FILEBUFF.HPP - Definitions for parser file buffering routines
229
3e82d72933d0 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 0
diff changeset
26 #include <iostream>
0
a61af66fc99e Initial load
duke
parents:
diff changeset
27
229
3e82d72933d0 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 0
diff changeset
28 using namespace std;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // STRUCTURE FOR HANDLING INPUT AND OUTPUT FILES
a61af66fc99e Initial load
duke
parents:
diff changeset
30 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 const char *_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 FILE *_fp;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 } BufferedFile;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class ArchDesc;
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //------------------------------FileBuff--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // This class defines a nicely behaved buffer of text. Entire file of text
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // is read into buffer at creation, with sentinals at start and end.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class FileBuff {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 friend class FileBuffRegion;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 long _bufferSize; // Size of text holding buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 long _offset; // Expected filepointer offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 long _bufoff; // Start of buffer file offset
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 char *_buf; // The buffer itself.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 char *_bigbuf; // The buffer plus sentinals; actual heap area
a61af66fc99e Initial load
duke
parents:
diff changeset
49 char *_bufmax; // A pointer to the buffer end sentinal
a61af66fc99e Initial load
duke
parents:
diff changeset
50 char *_bufeol; // A pointer to the last complete line end
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int _err; // Error flag for file seek/read operations
a61af66fc99e Initial load
duke
parents:
diff changeset
53 long _filepos; // Current offset from start of file
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 ArchDesc& _AD; // Reference to Architecture Description
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Error reporting function
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void file_error(int flag, int linenum, const char *fmt, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
61 const BufferedFile *_fp; // File to be buffered
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 FileBuff(BufferedFile *fp, ArchDesc& archDesc); // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ~FileBuff(); // Destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // This returns a pointer to the start of the current line in the buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // and increments bufeol and filepos to point at the end of that line.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 char *get_line(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // This converts a pointer into the buffer to a file offset. It only works
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // when the pointer is valid (i.e. just obtained from getline()).
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int getoff(const char *s) { return _bufoff+(int)(s-_buf); }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 };
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 //------------------------------FileBuffRegion---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // A buffer region is really a region of some file, specified as a linked list
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // of offsets and lengths. These regions can be merged; overlapping regions
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // will coalesce.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 class FileBuffRegion {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 public: // Workaround dev-studio friend/private bug
a61af66fc99e Initial load
duke
parents:
diff changeset
81 FileBuffRegion *_next; // Linked list of regions sorted by offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 FileBuff *_bfr; // The Buffer of the file
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int _offset, _length; // The file area
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int _sol; // Start of line where the file area starts
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int _line; // First line of region
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
89 FileBuffRegion(FileBuff*, int sol, int line, int offset, int len);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ~FileBuffRegion();
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 FileBuffRegion *copy(); // Deep copy
a61af66fc99e Initial load
duke
parents:
diff changeset
93 FileBuffRegion *merge(FileBuffRegion*); // Merge 2 regions; delete input
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // void print(std::ostream&);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // friend std::ostream& operator<< (std::ostream&, FileBuffRegion&);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 void print(ostream&);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 friend ostream& operator<< (ostream&, FileBuffRegion&);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 };