src/share/vm/adlc/adlc.hpp

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2540
15d6977f04b0
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

duke@435 1 /*
stefank@2314 2 * Copyright (c) 1998, 2010, 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
duke@435 45 // make sure the MSC_VER and _MSC_VER settings make sense
duke@435 46 #if _MSC_VER != MSC_VER && (_MSC_VER != 1400 || MSC_VER != 1399)
duke@435 47 #error "Something is wrong with the detection of MSC_VER in the makefiles"
duke@435 48 #endif
duke@435 49
kvn@1080 50 #if _MSC_VER >= 1400
duke@435 51 #define strdup _strdup
duke@435 52 #endif
duke@435 53
duke@435 54 /* Make sure that we have the intptr_t and uintptr_t definitions */
duke@435 55 #ifdef _WIN32
duke@435 56 #ifndef _INTPTR_T_DEFINED
duke@435 57 #ifdef _WIN64
duke@435 58 typedef __int64 intptr_t;
duke@435 59 #else
duke@435 60 typedef int intptr_t;
duke@435 61 #endif
duke@435 62 #define _INTPTR_T_DEFINED
duke@435 63 #endif
duke@435 64
duke@435 65 #ifndef _UINTPTR_T_DEFINED
duke@435 66 #ifdef _WIN64
duke@435 67 typedef unsigned __int64 uintptr_t;
duke@435 68 #else
duke@435 69 typedef unsigned int uintptr_t;
duke@435 70 #endif
duke@435 71 #define _UINTPTR_T_DEFINED
duke@435 72 #endif
duke@435 73 #endif // _WIN32
duke@435 74
duke@435 75 #ifdef LINUX
duke@435 76 #include <inttypes.h>
duke@435 77 #endif // LINUX
duke@435 78
duke@435 79 // Macros
duke@435 80 #define uint32 unsigned int
duke@435 81 #define uint unsigned int
duke@435 82
stefank@2314 83 // VM components
stefank@2314 84 #include "opto/opcodes.hpp"
stefank@2314 85
duke@435 86 // Macros
duke@435 87 // Debugging note: Put a breakpoint on "abort".
twisti@1038 88 #undef assert
duke@435 89 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
stefank@2314 90 #undef max
duke@435 91 #define max(a, b) (((a)>(b)) ? (a) : (b))
duke@435 92
duke@435 93 // ADLC components
duke@435 94 #include "arena.hpp"
stefank@2314 95 #include "opto/adlcVMDeps.hpp"
duke@435 96 #include "filebuff.hpp"
duke@435 97 #include "dict2.hpp"
duke@435 98 #include "forms.hpp"
duke@435 99 #include "formsopt.hpp"
duke@435 100 #include "formssel.hpp"
duke@435 101 #include "archDesc.hpp"
duke@435 102 #include "adlparse.hpp"
duke@435 103
duke@435 104 // globally define ArchDesc for convenience. Alternatively every form
duke@435 105 // could have a backpointer to the AD but it's too complicated to pass
duke@435 106 // it everywhere it needs to be available.
duke@435 107 extern ArchDesc* globalAD;
stefank@2314 108
stefank@2314 109 #endif // SHARE_VM_ADLC_ADLC_HPP

mercurial