src/share/vm/adlc/adlc.hpp

Print this page


   1 /*
   2  * Copyright (c) 1998, 2009, 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 //
  26 // Standard include file for ADLC parser
  27 //
  28 
  29 // standard library constants
  30 #include "stdio.h"
  31 #include "stdlib.h"
  32 #include <iostream>
  33 #include "string.h"
  34 #include "ctype.h"
  35 #include "stdarg.h"
  36 #include <sys/types.h>
  37 
  38 #if _MSC_VER >= 1300
  39 using namespace std;
  40 #endif
  41 
  42 // make sure the MSC_VER and _MSC_VER settings make sense
  43 #if _MSC_VER != MSC_VER && (_MSC_VER != 1400 || MSC_VER != 1399)
  44 #error "Something is wrong with the detection of MSC_VER in the makefiles"


  60 #endif
  61 
  62 #ifndef _UINTPTR_T_DEFINED
  63 #ifdef _WIN64
  64 typedef unsigned __int64 uintptr_t;
  65 #else
  66 typedef unsigned int uintptr_t;
  67 #endif
  68 #define _UINTPTR_T_DEFINED
  69 #endif
  70 #endif // _WIN32
  71 
  72 #ifdef LINUX
  73   #include <inttypes.h>
  74 #endif // LINUX
  75 
  76 // Macros
  77 #define uint32 unsigned int
  78 #define uint   unsigned int
  79 



  80 // Macros
  81 // Debugging note:  Put a breakpoint on "abort".
  82 #undef assert
  83 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}

  84 #define max(a, b)   (((a)>(b)) ? (a) : (b))
  85 
  86 // VM components
  87 #include "opcodes.hpp"
  88 
  89 // ADLC components
  90 #include "arena.hpp"
  91 #include "adlcVMDeps.hpp"
  92 #include "filebuff.hpp"
  93 #include "dict2.hpp"
  94 #include "forms.hpp"
  95 #include "formsopt.hpp"
  96 #include "formssel.hpp"
  97 #include "archDesc.hpp"
  98 #include "adlparse.hpp"
  99 
 100 // globally define ArchDesc for convenience.  Alternatively every form
 101 // could have a backpointer to the AD but it's too complicated to pass
 102 // it everywhere it needs to be available.
 103 extern ArchDesc* globalAD;


   1 /*
   2  * Copyright (c) 1998, 2010, 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 #if _MSC_VER >= 1300
  42 using namespace std;
  43 #endif
  44 
  45 // make sure the MSC_VER and _MSC_VER settings make sense
  46 #if _MSC_VER != MSC_VER && (_MSC_VER != 1400 || MSC_VER != 1399)
  47 #error "Something is wrong with the detection of MSC_VER in the makefiles"


  63 #endif
  64 
  65 #ifndef _UINTPTR_T_DEFINED
  66 #ifdef _WIN64
  67 typedef unsigned __int64 uintptr_t;
  68 #else
  69 typedef unsigned int uintptr_t;
  70 #endif
  71 #define _UINTPTR_T_DEFINED
  72 #endif
  73 #endif // _WIN32
  74 
  75 #ifdef LINUX
  76   #include <inttypes.h>
  77 #endif // LINUX
  78 
  79 // Macros
  80 #define uint32 unsigned int
  81 #define uint   unsigned int
  82 
  83 // VM components
  84 #include "opto/opcodes.hpp"
  85 
  86 // Macros
  87 // Debugging note:  Put a breakpoint on "abort".
  88 #undef assert
  89 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
  90 #undef max
  91 #define max(a, b)   (((a)>(b)) ? (a) : (b))
  92 



  93 // ADLC components
  94 #include "arena.hpp"
  95 #include "opto/adlcVMDeps.hpp"
  96 #include "filebuff.hpp"
  97 #include "dict2.hpp"
  98 #include "forms.hpp"
  99 #include "formsopt.hpp"
 100 #include "formssel.hpp"
 101 #include "archDesc.hpp"
 102 #include "adlparse.hpp"
 103 
 104 // globally define ArchDesc for convenience.  Alternatively every form
 105 // could have a backpointer to the AD but it's too complicated to pass
 106 // it everywhere it needs to be available.
 107 extern ArchDesc* globalAD;
 108 
 109 #endif // SHARE_VM_ADLC_ADLC_HPP