< prev index next >

make/hotspot/gensrc/GensrcAdlc.gmk

Print this page




  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 $(eval $(call IncludeCustomExtension, hotspot/gensrc/GensrcAdlc.gmk))
  27 
  28 ifeq ($(call check-jvm-feature, compiler2), true)
  29 
  30   ADLC_SUPPORT_DIR := $(JVM_SUPPORT_DIR)/adlc
  31 
  32   ##############################################################################
  33   # Build the ad compiler (the adlc build tool)
  34 
  35   # Flags depending on the build platform/tool chain
  36   # NOTE: No optimization or debug flags set here
  37   ifeq ($(OPENJDK_BUILD_OS), linux)
  38     ADLC_CFLAGS := -fno-exceptions -DLINUX
  39   else ifeq ($(OPENJDK_BUILD_OS), solaris)
  40     ADLC_LDFLAGS := -m64
  41     ADLC_CFLAGS := -m64
  42     ADLC_CFLAGS_WARNINGS := +w
  43   else ifeq ($(OPENJDK_BUILD_OS), aix)
  44     ADLC_LDFLAGS := -q64
  45     ADLC_CFLAGS := -qnortti -qeh -q64 -DAIX
  46   else ifeq ($(OPENJDK_BUILD_OS), windows)
  47     ADLC_LDFLAGS := -nologo
  48     ADLC_CFLAGS := -nologo -EHsc
  49     # NOTE: The old build also have -D_CRT_SECURE_NO_DEPRECATE but it doesn't
  50     # seem needed any more.
  51     ADLC_CFLAGS_WARNINGS := -W3 -D_CRT_SECURE_NO_WARNINGS
  52   endif
  53 
  54   # Set the C++ standard if supported
  55   ADLC_CFLAGS += $(ADLC_CXXFLAG)
  56 
  57   # NOTE: The old build didn't set -DASSERT for windows but it doesn't seem to
  58   # hurt.
  59   ADLC_CFLAGS += -DASSERT
  60 
  61   ADLC_CFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)
  62 
  63   ADLC_CFLAGS += -I$(TOPDIR)/src/hotspot/share
  64 
  65   $(eval $(call SetupNativeCompilation, BUILD_ADLC, \
  66       NAME := adlc, \


  70       EXTRA_FILES := $(TOPDIR)/src/hotspot/share/opto/opcodes.cpp, \
  71       CFLAGS := $(ADLC_CFLAGS) $(ADLC_CFLAGS_WARNINGS), \
  72       LDFLAGS := $(ADLC_LDFLAGS), \
  73       LIBS := $(ADLC_LIBS), \
  74       OBJECT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc/objs, \
  75       OUTPUT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc, \
  76       DEBUG_SYMBOLS := false, \
  77       DISABLED_WARNINGS_clang := tautological-compare, \
  78       DISABLED_WARNINGS_solstudio := notemsource, \
  79   ))
  80 
  81   ADLC_TOOL := $(BUILD_ADLC_TARGET)
  82 
  83   ##############################################################################
  84   # Transform the ad source files into C++ source files using adlc
  85 
  86   # Setup flags for the adlc build tool (ADLCFLAGS).
  87   ADLCFLAGS += -q -T
  88 
  89   # ADLC flags depending on target OS
  90   ifeq ($(OPENJDK_TARGET_OS), linux)
  91     ADLCFLAGS += -DLINUX=1 -D_GNU_SOURCE=1
  92   else ifeq ($(OPENJDK_TARGET_OS), solaris)
  93     ADLCFLAGS += -DSOLARIS=1 -DSPARC_WORKS=1
  94   else ifeq ($(OPENJDK_TARGET_OS), aix)
  95     ADLCFLAGS += -DAIX=1
  96   else ifeq ($(OPENJDK_TARGET_OS), macosx)
  97     ADLCFLAGS += -D_ALLBSD_SOURCE=1 -D_GNU_SOURCE=1
  98   endif
  99 
 100   ifneq ($(OPENJDK_TARGET_OS), windows)
 101     # NOTE: Windows adlc flags was different in the old build. Is this really
 102     # correct?
 103 
 104     # -g makes #line directives in the generated C++ files.
 105     ADLCFLAGS += -g
 106 
 107     ADLCFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)=1
 108   endif
 109 
 110   # This generates checks in the generated C++ files that _LP64 is correctly
 111   # (un)defined when compiling them.
 112   ifeq ($(OPENJDK_TARGET_CPU_BITS), 64)
 113     ADLCFLAGS += -D_LP64=1
 114   else
 115     ADLCFLAGS += -U_LP64
 116   endif
 117 
 118   ifeq ($(HOTSPOT_TARGET_CPU_ARCH), arm)
 119     ADLCFLAGS += -DARM=1
 120   endif
 121 
 122   ##############################################################################
 123   # Concatenate all ad source files into a single file, which will be fed to
 124   # adlc. Also include a #line directive at the start of every included file
 125   # (after the initial header block), stating the original source file name.
 126   #
 127   # Normally, debugging is done directly on the ad_<arch>*.cpp files, but the
 128   # #line directives in those files will be pointing back to <arch>.ad.
 129 
 130   # AD_SRC_ROOTS might have been added to by a custom extension
 131   AD_SRC_ROOTS += $(TOPDIR)/src/hotspot
 132 




  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 $(eval $(call IncludeCustomExtension, hotspot/gensrc/GensrcAdlc.gmk))
  27 
  28 ifeq ($(call check-jvm-feature, compiler2), true)
  29 
  30   ADLC_SUPPORT_DIR := $(JVM_SUPPORT_DIR)/adlc
  31 
  32   ##############################################################################
  33   # Build the ad compiler (the adlc build tool)
  34 
  35   # Flags depending on the build platform/tool chain
  36   # NOTE: No optimization or debug flags set here
  37   ifeq ($(call isBuildOs, linux), true)
  38     ADLC_CFLAGS := -fno-exceptions -DLINUX
  39   else ifeq ($(call isBuildOs, solaris), true)
  40     ADLC_LDFLAGS := -m64
  41     ADLC_CFLAGS := -m64
  42     ADLC_CFLAGS_WARNINGS := +w
  43   else ifeq ($(call isBuildOs, aix), true)
  44     ADLC_LDFLAGS := -q64
  45     ADLC_CFLAGS := -qnortti -qeh -q64 -DAIX
  46   else ifeq ($(call isBuildOs, windows), true)
  47     ADLC_LDFLAGS := -nologo
  48     ADLC_CFLAGS := -nologo -EHsc
  49     # NOTE: The old build also have -D_CRT_SECURE_NO_DEPRECATE but it doesn't
  50     # seem needed any more.
  51     ADLC_CFLAGS_WARNINGS := -W3 -D_CRT_SECURE_NO_WARNINGS
  52   endif
  53 
  54   # Set the C++ standard if supported
  55   ADLC_CFLAGS += $(ADLC_CXXFLAG)
  56 
  57   # NOTE: The old build didn't set -DASSERT for windows but it doesn't seem to
  58   # hurt.
  59   ADLC_CFLAGS += -DASSERT
  60 
  61   ADLC_CFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)
  62 
  63   ADLC_CFLAGS += -I$(TOPDIR)/src/hotspot/share
  64 
  65   $(eval $(call SetupNativeCompilation, BUILD_ADLC, \
  66       NAME := adlc, \


  70       EXTRA_FILES := $(TOPDIR)/src/hotspot/share/opto/opcodes.cpp, \
  71       CFLAGS := $(ADLC_CFLAGS) $(ADLC_CFLAGS_WARNINGS), \
  72       LDFLAGS := $(ADLC_LDFLAGS), \
  73       LIBS := $(ADLC_LIBS), \
  74       OBJECT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc/objs, \
  75       OUTPUT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc, \
  76       DEBUG_SYMBOLS := false, \
  77       DISABLED_WARNINGS_clang := tautological-compare, \
  78       DISABLED_WARNINGS_solstudio := notemsource, \
  79   ))
  80 
  81   ADLC_TOOL := $(BUILD_ADLC_TARGET)
  82 
  83   ##############################################################################
  84   # Transform the ad source files into C++ source files using adlc
  85 
  86   # Setup flags for the adlc build tool (ADLCFLAGS).
  87   ADLCFLAGS += -q -T
  88 
  89   # ADLC flags depending on target OS
  90   ifeq ($(call isTargetOs, linux), true)
  91     ADLCFLAGS += -DLINUX=1 -D_GNU_SOURCE=1
  92   else ifeq ($(call isTargetOs, solaris), true)
  93     ADLCFLAGS += -DSOLARIS=1 -DSPARC_WORKS=1
  94   else ifeq ($(call isTargetOs, aix), true)
  95     ADLCFLAGS += -DAIX=1
  96   else ifeq ($(call isTargetOs, macosx), true)
  97     ADLCFLAGS += -D_ALLBSD_SOURCE=1 -D_GNU_SOURCE=1
  98   endif
  99 
 100   ifneq ($(call isTargetOs, windows), true)
 101     # NOTE: Windows adlc flags was different in the old build. Is this really
 102     # correct?
 103 
 104     # -g makes #line directives in the generated C++ files.
 105     ADLCFLAGS += -g
 106 
 107     ADLCFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)=1
 108   endif
 109 
 110   # This generates checks in the generated C++ files that _LP64 is correctly
 111   # (un)defined when compiling them.
 112   ifeq ($(call isTargetCpuBits, 64), true)
 113     ADLCFLAGS += -D_LP64=1
 114   else
 115     ADLCFLAGS += -U_LP64
 116   endif
 117 
 118   ifeq ($(HOTSPOT_TARGET_CPU_ARCH), arm)
 119     ADLCFLAGS += -DARM=1
 120   endif
 121 
 122   ##############################################################################
 123   # Concatenate all ad source files into a single file, which will be fed to
 124   # adlc. Also include a #line directive at the start of every included file
 125   # (after the initial header block), stating the original source file name.
 126   #
 127   # Normally, debugging is done directly on the ad_<arch>*.cpp files, but the
 128   # #line directives in those files will be pointing back to <arch>.ad.
 129 
 130   # AD_SRC_ROOTS might have been added to by a custom extension
 131   AD_SRC_ROOTS += $(TOPDIR)/src/hotspot
 132 


< prev index next >