src/share/vm/adlc/adlc.hpp

Mon, 25 Jun 2012 21:33:35 -0400

author
coleenp
date
Mon, 25 Jun 2012 21:33:35 -0400
changeset 3875
246d977b51f2
parent 3156
f08d439fab8c
child 6876
710a3c8b516e
permissions
-rw-r--r--

7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
Summary: Cannot delete _buckets and HashtableEntries in shared space (CDS)
Reviewed-by: acorn, kvn, dlong, dcubed, kamg

duke@435 1 /*
sla@2540 2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_ADLC_ADLC_HPP
stefank@2314 26 #define SHARE_VM_ADLC_ADLC_HPP
stefank@2314 27
duke@435 28 //
duke@435 29 // Standard include file for ADLC parser
duke@435 30 //
duke@435 31
duke@435 32 // standard library constants
duke@435 33 #include "stdio.h"
duke@435 34 #include "stdlib.h"
duke@435 35 #include <iostream>
duke@435 36 #include "string.h"
duke@435 37 #include "ctype.h"
duke@435 38 #include "stdarg.h"
duke@435 39 #include <sys/types.h>
duke@435 40
duke@435 41 #if _MSC_VER >= 1300
duke@435 42 using namespace std;
duke@435 43 #endif
duke@435 44
kvn@1080 45 #if _MSC_VER >= 1400
duke@435 46 #define strdup _strdup
duke@435 47 #endif
duke@435 48
duke@435 49 /* Make sure that we have the intptr_t and uintptr_t definitions */
duke@435 50 #ifdef _WIN32
duke@435 51 #ifndef _INTPTR_T_DEFINED
duke@435 52 #ifdef _WIN64
duke@435 53 typedef __int64 intptr_t;
duke@435 54 #else
duke@435 55 typedef int intptr_t;
duke@435 56 #endif
duke@435 57 #define _INTPTR_T_DEFINED
duke@435 58 #endif
duke@435 59
duke@435 60 #ifndef _UINTPTR_T_DEFINED
duke@435 61 #ifdef _WIN64
duke@435 62 typedef unsigned __int64 uintptr_t;
duke@435 63 #else
duke@435 64 typedef unsigned int uintptr_t;
duke@435 65 #endif
duke@435 66 #define _UINTPTR_T_DEFINED
duke@435 67 #endif
duke@435 68 #endif // _WIN32
duke@435 69
never@3156 70 #if defined(LINUX) || defined(_ALLBSD_SOURCE)
duke@435 71 #include <inttypes.h>
never@3156 72 #endif // LINUX || _ALLBSD_SOURCE
duke@435 73
duke@435 74 // Macros
duke@435 75 #define uint32 unsigned int
duke@435 76 #define uint unsigned int
duke@435 77
stefank@2314 78 // VM components
stefank@2314 79 #include "opto/opcodes.hpp"
stefank@2314 80
duke@435 81 // Macros
duke@435 82 // Debugging note: Put a breakpoint on "abort".
twisti@1038 83 #undef assert
duke@435 84 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
stefank@2314 85 #undef max
duke@435 86 #define max(a, b) (((a)>(b)) ? (a) : (b))
duke@435 87
duke@435 88 // ADLC components
duke@435 89 #include "arena.hpp"
stefank@2314 90 #include "opto/adlcVMDeps.hpp"
duke@435 91 #include "filebuff.hpp"
duke@435 92 #include "dict2.hpp"
duke@435 93 #include "forms.hpp"
duke@435 94 #include "formsopt.hpp"
duke@435 95 #include "formssel.hpp"
duke@435 96 #include "archDesc.hpp"
duke@435 97 #include "adlparse.hpp"
duke@435 98
duke@435 99 // globally define ArchDesc for convenience. Alternatively every form
duke@435 100 // could have a backpointer to the AD but it's too complicated to pass
duke@435 101 // it everywhere it needs to be available.
duke@435 102 extern ArchDesc* globalAD;
stefank@2314 103
stefank@2314 104 #endif // SHARE_VM_ADLC_ADLC_HPP

mercurial