make/windows/makefiles/adlc.make

Print this page


   1 #
   2 # Copyright (c) 1999, 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 #  


  33 # the dynamic version (msvcprt.lib), which is not included
  34 # in any of the free tools.
  35 EXH_FLAGS=$(GX_OPTION) $(MS_RUNTIME_OPTION)
  36 
  37 !ifdef ALT_ADLC_PATH
  38 ADLC=$(ALT_ADLC_PATH)\adlc.exe
  39 !else
  40 ADLC=adlc
  41 !endif
  42 
  43 !ifdef LP64
  44 ADLCFLAGS=-q -T -D_LP64
  45 !else
  46 ADLCFLAGS=-q -T -U_LP64
  47 !endif
  48 
  49 CPP_FLAGS=$(CPP_FLAGS) /D _CRT_SECURE_NO_WARNINGS /D _CRT_SECURE_NO_DEPRECATE  
  50 
  51 CPP_INCLUDE_DIRS=\
  52   /I "..\generated"                          \
  53   /I "$(WorkSpace)\src\share\vm\compiler"    \
  54   /I "$(WorkSpace)\src\share\vm\code"        \
  55   /I "$(WorkSpace)\src\share\vm\interpreter" \
  56   /I "$(WorkSpace)\src\share\vm\classfile"   \
  57   /I "$(WorkSpace)\src\share\vm\asm"         \
  58   /I "$(WorkSpace)\src\share\vm\memory"      \
  59   /I "$(WorkSpace)\src\share\vm\oops"        \
  60   /I "$(WorkSpace)\src\share\vm\prims"       \
  61   /I "$(WorkSpace)\src\share\vm\runtime"     \
  62   /I "$(WorkSpace)\src\share\vm\utilities"   \
  63   /I "$(WorkSpace)\src\share\vm\libadt"      \
  64   /I "$(WorkSpace)\src\share\vm\opto"        \
  65   /I "$(WorkSpace)\src\os\windows\vm"          \
  66   /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
  67 
  68 # NOTE! If you add any files here, you must also update GENERATED_NAMES_IN_INCL
  69 # and MakeDepsIDEOptions in makedeps.make. 
  70 GENERATED_NAMES=\
  71   ad_$(Platform_arch_model).cpp \
  72   ad_$(Platform_arch_model).hpp \
  73   ad_$(Platform_arch_model)_clone.cpp \
  74   ad_$(Platform_arch_model)_expand.cpp \
  75   ad_$(Platform_arch_model)_format.cpp \
  76   ad_$(Platform_arch_model)_gen.cpp \
  77   ad_$(Platform_arch_model)_misc.cpp \
  78   ad_$(Platform_arch_model)_peephole.cpp \
  79   ad_$(Platform_arch_model)_pipeline.cpp \
  80   adGlobals_$(Platform_arch_model).hpp \
  81   dfa_$(Platform_arch_model).cpp
  82 
  83 # NOTE! This must be kept in sync with GENERATED_NAMES
  84 GENERATED_NAMES_IN_INCL=\
  85   incls/ad_$(Platform_arch_model).cpp \
  86   incls/ad_$(Platform_arch_model).hpp \
  87   incls/ad_$(Platform_arch_model)_clone.cpp \
  88   incls/ad_$(Platform_arch_model)_expand.cpp \
  89   incls/ad_$(Platform_arch_model)_format.cpp \
  90   incls/ad_$(Platform_arch_model)_gen.cpp \
  91   incls/ad_$(Platform_arch_model)_misc.cpp \
  92   incls/ad_$(Platform_arch_model)_peephole.cpp \
  93   incls/ad_$(Platform_arch_model)_pipeline.cpp \
  94   incls/adGlobals_$(Platform_arch_model).hpp \
  95   incls/dfa_$(Platform_arch_model).cpp
  96 
  97 {$(WorkSpace)\src\share\vm\adlc}.cpp.obj::
  98         $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
  99 
 100 {$(WorkSpace)\src\share\vm\opto}.cpp.obj::
 101         $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
 102 
 103 adlc.exe: main.obj adlparse.obj archDesc.obj arena.obj dfa.obj dict2.obj filebuff.obj \
 104           forms.obj formsopt.obj formssel.obj opcodes.obj output_c.obj output_h.obj
 105         $(LINK) $(LINK_FLAGS) /subsystem:console /out:$@ $**
 106 !if "$(MT)" != ""
 107 # The previous link command created a .manifest file that we want to
 108 # insert into the linked artifact so we do not need to track it
 109 # separately.  Use ";#2" for .dll and ";#1" for .exe:
 110         $(MT) /manifest $@.manifest /outputresource:$@;#1
 111 !endif
 112 
 113 $(GENERATED_NAMES_IN_INCL): $(Platform_arch_model).ad adlc.exe includeDB.current 
 114         rm -f $(GENERATED_NAMES)


 115         $(ADLC) $(ADLCFLAGS) $(Platform_arch_model).ad
 116         mv $(GENERATED_NAMES) incls/
 117 
 118 $(Platform_arch_model).ad: $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad
 119         rm -f $(Platform_arch_model).ad
 120         cat $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad  \
 121             $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad >$(Platform_arch_model).ad
   1 #
   2 # Copyright (c) 1999, 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 #  


  33 # the dynamic version (msvcprt.lib), which is not included
  34 # in any of the free tools.
  35 EXH_FLAGS=$(GX_OPTION) $(MS_RUNTIME_OPTION)
  36 
  37 !ifdef ALT_ADLC_PATH
  38 ADLC=$(ALT_ADLC_PATH)\adlc.exe
  39 !else
  40 ADLC=adlc
  41 !endif
  42 
  43 !ifdef LP64
  44 ADLCFLAGS=-q -T -D_LP64
  45 !else
  46 ADLCFLAGS=-q -T -U_LP64
  47 !endif
  48 
  49 CPP_FLAGS=$(CPP_FLAGS) /D _CRT_SECURE_NO_WARNINGS /D _CRT_SECURE_NO_DEPRECATE  
  50 
  51 CPP_INCLUDE_DIRS=\
  52   /I "..\generated" \
  53   /I "$(WorkSpace)\src\share\vm" \











  54   /I "$(WorkSpace)\src\os\windows\vm" \
  55   /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
  56 
  57 # NOTE! If you add any files here, you must also update GENERATED_NAMES_IN_DIR
  58 # and ProjectCreatorIDEOptions in projectcreator.make. 
  59 GENERATED_NAMES=\
  60   ad_$(Platform_arch_model).cpp \
  61   ad_$(Platform_arch_model).hpp \
  62   ad_$(Platform_arch_model)_clone.cpp \
  63   ad_$(Platform_arch_model)_expand.cpp \
  64   ad_$(Platform_arch_model)_format.cpp \
  65   ad_$(Platform_arch_model)_gen.cpp \
  66   ad_$(Platform_arch_model)_misc.cpp \
  67   ad_$(Platform_arch_model)_peephole.cpp \
  68   ad_$(Platform_arch_model)_pipeline.cpp \
  69   adGlobals_$(Platform_arch_model).hpp \
  70   dfa_$(Platform_arch_model).cpp
  71 
  72 # NOTE! This must be kept in sync with GENERATED_NAMES
  73 GENERATED_NAMES_IN_DIR=\
  74   $(AdlcOutDir)\ad_$(Platform_arch_model).cpp \
  75   $(AdlcOutDir)\ad_$(Platform_arch_model).hpp \
  76   $(AdlcOutDir)\ad_$(Platform_arch_model)_clone.cpp \
  77   $(AdlcOutDir)\ad_$(Platform_arch_model)_expand.cpp \
  78   $(AdlcOutDir)\ad_$(Platform_arch_model)_format.cpp \
  79   $(AdlcOutDir)\ad_$(Platform_arch_model)_gen.cpp \
  80   $(AdlcOutDir)\ad_$(Platform_arch_model)_misc.cpp \
  81   $(AdlcOutDir)\ad_$(Platform_arch_model)_peephole.cpp \
  82   $(AdlcOutDir)\ad_$(Platform_arch_model)_pipeline.cpp \
  83   $(AdlcOutDir)\adGlobals_$(Platform_arch_model).hpp \
  84   $(AdlcOutDir)\dfa_$(Platform_arch_model).cpp
  85 
  86 {$(WorkSpace)\src\share\vm\adlc}.cpp.obj::
  87         $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
  88 
  89 {$(WorkSpace)\src\share\vm\opto}.cpp.obj::
  90         $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
  91 
  92 adlc.exe: main.obj adlparse.obj archDesc.obj arena.obj dfa.obj dict2.obj filebuff.obj \
  93           forms.obj formsopt.obj formssel.obj opcodes.obj output_c.obj output_h.obj
  94         $(LINK) $(LINK_FLAGS) /subsystem:console /out:$@ $**
  95 !if "$(MT)" != ""
  96 # The previous link command created a .manifest file that we want to
  97 # insert into the linked artifact so we do not need to track it
  98 # separately.  Use ";#2" for .dll and ";#1" for .exe:
  99         $(MT) /manifest $@.manifest /outputresource:$@;#1
 100 !endif
 101 
 102 $(GENERATED_NAMES_IN_DIR): $(Platform_arch_model).ad adlc.exe
 103         rm -f $(GENERATED_NAMES)
 104         if exist $(AdlcOutDir) rmdir /s /q $(AdlcOutDir)
 105         mkdir $(AdlcOutDir)
 106         $(ADLC) $(ADLCFLAGS) $(Platform_arch_model).ad
 107         mv $(GENERATED_NAMES) $(AdlcOutDir)/
 108 
 109 $(Platform_arch_model).ad: $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad
 110         rm -f $(Platform_arch_model).ad
 111         cat $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad  \
 112             $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad >$(Platform_arch_model).ad