1 /*
   2  * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
   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  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_ADLC_ADLC_HPP
  26 #define SHARE_VM_ADLC_ADLC_HPP
  27 
  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 /* Make sure that we have the intptr_t and uintptr_t definitions */
  42 #ifdef _WIN32
  43 
  44 #if _MSC_VER >= 1300
  45 using namespace std;
  46 #endif
  47 
  48 #if _MSC_VER >= 1400
  49 #define strdup _strdup
  50 #endif
  51 
  52 #ifndef _INTPTR_T_DEFINED
  53 #ifdef _WIN64
  54 typedef __int64 intptr_t;
  55 #else
  56 typedef int intptr_t;
  57 #endif
  58 #define _INTPTR_T_DEFINED
  59 #endif
  60 
  61 #ifndef _UINTPTR_T_DEFINED
  62 #ifdef _WIN64
  63 typedef unsigned __int64 uintptr_t;
  64 #else
  65 typedef unsigned int uintptr_t;
  66 #endif
  67 #define _UINTPTR_T_DEFINED
  68 #endif
  69 
  70 #endif // _WIN32
  71 
  72 #if defined(LINUX) || defined(_ALLBSD_SOURCE)
  73   #include <inttypes.h>
  74 #endif // LINUX || _ALLBSD_SOURCE
  75 
  76 // Macros
  77 #define uint32 unsigned int
  78 #define uint   unsigned int
  79 
  80 // VM components
  81 #include "opto/opcodes.hpp"
  82 
  83 // Macros
  84 // Debugging note:  Put a breakpoint on "abort".
  85 #undef assert
  86 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
  87 #undef max
  88 #define max(a, b)   (((a)>(b)) ? (a) : (b))
  89 
  90 // ADLC components
  91 #include "arena.hpp"
  92 #include "opto/adlcVMDeps.hpp"
  93 #include "filebuff.hpp"
  94 #include "dict2.hpp"
  95 #include "forms.hpp"
  96 #include "formsopt.hpp"
  97 #include "formssel.hpp"
  98 #include "archDesc.hpp"
  99 #include "adlparse.hpp"
 100 
 101 // globally define ArchDesc for convenience.  Alternatively every form
 102 // could have a backpointer to the AD but it's too complicated to pass
 103 // it everywhere it needs to be available.
 104 extern ArchDesc* globalAD;
 105 
 106 #endif // SHARE_VM_ADLC_ADLC_HPP