make/windows/makefiles/sa.make

Mon, 28 Jul 2014 15:06:38 -0700

author
fzhinkin
date
Mon, 28 Jul 2014 15:06:38 -0700
changeset 6997
dbb05f6d93c4
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
child 7355
89266fdfa9e6
permissions
-rw-r--r--

8051344: JVM crashed in Compile::start() during method parsing w/ UseRTMDeopt turned on
Summary: call rtm_deopt() only if there were no compilation bailouts before.
Reviewed-by: kvn

     1 #
     2 # Copyright (c) 2003, 2013, 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 #
    25 # This makefile is used to build Serviceability Agent code
    26 # and generate JNI header file for native methods.
    28 AGENT_DIR = $(WorkSpace)/agent
    29 checkAndBuildSA::
    31 !if "$(BUILD_WIN_SA)" != "1"
    32 # Already warned about this in build.make
    33 !else
    35 # This first part is used to build sa-jdi.jar
    36 !include $(WorkSpace)/make/windows/makefiles/rules.make
    37 !include $(WorkSpace)/make/sa.files
    39 GENERATED = ../generated
    41 # tools.jar is needed by the JDI - SA binding
    42 SA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar
    44 SA_CLASSDIR = $(GENERATED)/saclasses
    46 SA_BUILD_VERSION_PROP = sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)
    48 SA_PROPERTIES = $(SA_CLASSDIR)/sa.properties
    50 default::  $(GENERATED)/sa-jdi.jar
    52 # Remove the space between $(SA_BUILD_VERSION_PROP) and > below as it adds a white space
    53 # at the end of SA version string and causes a version mismatch with the target VM version.
    55 $(GENERATED)/sa-jdi.jar: $(AGENT_FILES)
    56 	$(QUIETLY) mkdir -p $(SA_CLASSDIR)
    57 	@echo ...Building sa-jdi.jar into $(SA_CLASSDIR)
    58 	@echo ...$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -d $(SA_CLASSDIR) ....
    59 	@$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES)
    60 	$(COMPILE_RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
    61 	$(QUIETLY) echo $(SA_BUILD_VERSION_PROP)> $(SA_PROPERTIES)
    62 	$(QUIETLY) rm -f $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql/sa.js
    63 	$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql
    64 	$(QUIETLY) rm -rf $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
    65 	$(QUIETLY) mkdir $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
    66 	$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/resources/*.png $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
    67 	$(QUIETLY) cp -r $(AGENT_SRC_DIR)/images/* $(SA_CLASSDIR)
    68 	$(RUN_JAR) cf $@ -C $(SA_CLASSDIR) .
    69 	$(RUN_JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector
    70 	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal
    71 	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext 
    72 	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext 
    73 	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.asm.Disassembler
    77 # This second part is used to build sawindbg.dll
    78 # We currently build it the same way for product, debug, and fastdebug.
    80 SAWINDBG=sawindbg.dll
    82 checkAndBuildSA:: $(SAWINDBG)
    84 # These do not need to be optimized (don't run a lot of code) and it
    85 # will be useful to have the assertion checks in place
    87 !if "$(BUILDARCH)" == "ia64"
    88 SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -c
    89 !elseif "$(BUILDARCH)" == "amd64"
    90 SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -c
    91 !if "$(COMPILER_NAME)" == "VS2005"
    92 # On amd64, VS2005 compiler requires bufferoverflowU.lib on the link command line, 
    93 # otherwise we get missing __security_check_cookie externals at link time. 
    94 SA_LD_FLAGS = bufferoverflowU.lib
    95 !endif
    96 !else
    97 SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 -Gm $(GX_OPTION) -Od -D "WIN32" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -GZ -c
    98 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
    99 SA_CFLAGS = $(SA_CFLAGS) -ZI
   100 !endif
   101 !endif
   102 !if "$(MT)" != ""
   103 SA_LD_FLAGS = -manifest $(SA_LD_FLAGS)
   104 !endif
   106 SASRCFILES = $(AGENT_DIR)/src/os/win32/windbg/sawindbg.cpp \
   107 		$(AGENT_DIR)/src/share/native/sadis.c
   109 SA_LFLAGS = $(SA_LD_FLAGS) -nologo -subsystem:console -machine:$(MACHINE)
   110 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
   111 SA_LFLAGS = $(SA_LFLAGS) -map -debug
   112 !endif
   113 !if "$(BUILDARCH)" == "i486"
   114 SA_LFLAGS = $(SAFESEH_FLAG) $(SA_LFLAGS)
   115 !endif
   117 SA_CFLAGS = $(SA_CFLAGS) $(MP_FLAG)
   119 # Note that we do not keep sawindbj.obj around as it would then
   120 # get included in the dumpbin command in build_vm_def.sh
   122 # In VS2005 or VS2008 the link command creates a .manifest file that we want
   123 # to insert into the linked artifact so we do not need to track it separately.
   124 # Use ";#2" for .dll and ";#1" for .exe in the MT command below:
   125 $(SAWINDBG): $(SASRCFILES)
   126 	set INCLUDE=$(SA_INCLUDE)$(INCLUDE)
   127 	$(CXX) @<<
   128 	  -I"$(BootStrapDir)/include" -I"$(BootStrapDir)/include/win32" 
   129 	  -I"$(GENERATED)" $(SA_CFLAGS)
   130 	  $(SASRCFILES)
   131 	  -out:$*.obj
   132 <<
   133 	set LIB=$(SA_LIB)$(LIB)
   134 	$(LD) -out:$@ -DLL sawindbg.obj sadis.obj dbgeng.lib $(SA_LFLAGS)
   135 !if "$(MT)" != ""
   136 	$(MT) -manifest $(@F).manifest -outputresource:$(@F);#2
   137 !endif
   138 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
   139 !if "$(ZIP_DEBUGINFO_FILES)" == "1"
   140 	$(ZIPEXE) -q $*.diz $*.map $*.pdb
   141 	$(RM) $*.map $*.pdb
   142 !endif
   143 !endif
   144 	-@rm -f $*.obj
   146 cleanall :
   147 	rm -rf $(GENERATED)/saclasses
   148 	rm -rf $(GENERATED)/sa-jdi.jar
   149 !endif

mercurial