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