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 #  
  23 #
  24 
  25 !include $(WorkSpace)/make/windows/makefiles/compile.make
  26 
  27 # Rules for building adlc.exe
  28 
  29 # Need exception handling support here
  30 # $(MS_RUNTIME_OPTION) ( with /D_STATIC_CPPLIB)
  31 # causes adlc.exe to link with the static
  32 # multithread Standard C++ library (libcpmt.lib) instead of
  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_DIR
  69 # and ProjectCreatorIDEOptions in projectcreator.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_DIR=\
  85   adfiles/ad_$(Platform_arch_model).cpp \
  86   adfiles/ad_$(Platform_arch_model).hpp \
  87   adfiles/ad_$(Platform_arch_model)_clone.cpp \
  88   adfiles/ad_$(Platform_arch_model)_expand.cpp \
  89   adfiles/ad_$(Platform_arch_model)_format.cpp \
  90   adfiles/ad_$(Platform_arch_model)_gen.cpp \
  91   adfiles/ad_$(Platform_arch_model)_misc.cpp \
  92   adfiles/ad_$(Platform_arch_model)_peephole.cpp \
  93   adfiles/ad_$(Platform_arch_model)_pipeline.cpp \
  94   adfiles/adGlobals_$(Platform_arch_model).hpp \
  95   adfiles/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_DIR): $(Platform_arch_model).ad adlc.exe
 114         rm -f $(GENERATED_NAMES)
 115         if exist adfiles rmdir /s /q adfiles
 116         mkdir adfiles
 117         $(ADLC) $(ADLCFLAGS) $(Platform_arch_model).ad
 118         mv $(GENERATED_NAMES) adfiles/
 119 
 120 $(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
 121         rm -f $(Platform_arch_model).ad
 122         cat $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad  \
 123             $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad >$(Platform_arch_model).ad