make/windows/makefiles/sa.make

Wed, 30 Jul 2008 11:54:00 -0700

author
jmasa
date
Wed, 30 Jul 2008 11:54:00 -0700
changeset 706
818a18cd69a8
parent 631
d1605aabd0a1
child 746
25c3145237c6
permissions
-rw-r--r--

6730514: assertion failure in mangling code when expanding by 0 bytes
Summary: An expansion by 0 bytes was not anticipated when the assertion was composed.
Reviewed-by: jjh, jcoomes, apetrusenko

duke@435 1 #
xdono@631 2 # Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # This makefile is used to build Serviceability Agent code
duke@435 26 # and generate JNI header file for native methods.
duke@435 27
duke@435 28 AGENT_DIR = $(WorkSpace)/agent
duke@435 29 checkAndBuildSA::
duke@435 30
duke@435 31 !if "$(BUILD_WIN_SA)" != "1"
duke@435 32 # Already warned about this in build.make
duke@435 33 !else
duke@435 34
duke@435 35 # This first part is used to build sa-jdi.jar
kamg@526 36 !include $(WorkSpace)/make/windows/makefiles/rules.make
kamg@526 37 !include $(WorkSpace)/make/sa.files
duke@435 38
duke@435 39 GENERATED = ..\generated
duke@435 40
duke@435 41 # tools.jar is needed by the JDI - SA binding
duke@435 42 SA_CLASSPATH = $(BOOT_JAVA_HOME)\lib\tools.jar
duke@435 43
duke@435 44 SA_CLASSDIR = $(GENERATED)\saclasses
duke@435 45
duke@435 46 SA_BUILD_VERSION_PROP = sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)
duke@435 47
duke@435 48 SA_PROPERTIES = $(SA_CLASSDIR)\sa.properties
duke@435 49
duke@435 50 default:: $(GENERATED)\sa-jdi.jar
duke@435 51
duke@435 52 $(GENERATED)\sa-jdi.jar: $(AGENT_ALLFILES:/=\)
duke@435 53 @if not exist $(SA_CLASSDIR) mkdir $(SA_CLASSDIR)
duke@435 54 @echo ...Building sa-jdi.jar
duke@435 55 @echo ...$(COMPILE_JAVAC) -source 1.4 -classpath $(SA_CLASSPATH) -g -d $(SA_CLASSDIR) ....
duke@435 56 @$(COMPILE_JAVAC) -source 1.4 -classpath $(SA_CLASSPATH) -g -d $(SA_CLASSDIR) $(AGENT_ALLFILES:/=\)
duke@435 57 $(COMPILE_RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
duke@435 58 $(QUIETLY) echo $(SA_BUILD_VERSION_PROP) > $(SA_PROPERTIES)
duke@435 59 $(RUN_JAR) cf $@ -C saclasses .
duke@435 60 $(RUN_JAR) uf $@ -C $(AGENT_SRC_DIR:/=\) META-INF\services\com.sun.jdi.connect.Connector
duke@435 61 $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal
duke@435 62 $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext
duke@435 63 $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.ia64.IA64ThreadContext
duke@435 64 $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext
duke@435 65
duke@435 66
duke@435 67
duke@435 68 # This second part is used to build sawindbg.dll
duke@435 69 # We currently build it the same way for product, debug, and fastdebug.
duke@435 70
duke@435 71 SAWINDBG=sawindbg.dll
duke@435 72
duke@435 73 checkAndBuildSA:: $(SAWINDBG)
duke@435 74
duke@435 75 # These do not need to be optimized (don't run a lot of code) and it
duke@435 76 # will be useful to have the assertion checks in place
duke@435 77
duke@435 78 !if "$(BUILDARCH)" == "ia64"
duke@435 79 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
duke@435 80 !elseif "$(BUILDARCH)" == "amd64"
duke@435 81 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
duke@435 82 # On amd64, VS2005 compiler requires bufferoverflowU.lib on the link command line,
duke@435 83 # otherwise we get missing __security_check_cookie externals at link time.
duke@435 84 SA_LINK_FLAGS = bufferoverflowU.lib
duke@435 85 !else
duke@435 86 SA_CFLAGS = /nologo $(MS_RUNTIME_OPTION) /W3 /Gm $(GX_OPTION) /ZI /Od /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
duke@435 87 !endif
duke@435 88
duke@435 89 SASRCFILE = $(AGENT_DIR)/src/os/win32/windbg/sawindbg.cpp
duke@435 90 SA_LFLAGS = $(SA_LINK_FLAGS) /nologo /subsystem:console /map /debug /machine:$(MACHINE)
duke@435 91
duke@435 92 # Note that we do not keep sawindbj.obj around as it would then
duke@435 93 # get included in the dumpbin command in build_vm_def.sh
duke@435 94
duke@435 95 $(SAWINDBG): $(SASRCFILE)
duke@435 96 set INCLUDE=$(SA_INCLUDE)$(INCLUDE)
duke@435 97 $(CPP) @<<
duke@435 98 /I"$(BootStrapDir)/include" /I"$(BootStrapDir)/include/win32"
duke@435 99 /I"$(GENERATED)" $(SA_CFLAGS)
duke@435 100 $(SASRCFILE)
duke@435 101 /out:sawindbg.obj
duke@435 102 <<
duke@435 103 set LIB=$(SA_LIB)$(LIB)
duke@435 104 $(LINK) /out:$@ /DLL sawindbg.obj dbgeng.lib $(SA_LFLAGS)
duke@435 105 -@rm -f sawindbg.obj
duke@435 106
duke@435 107 cleanall :
duke@435 108 rm -rf $(GENERATED:\=/)/saclasses
duke@435 109 rm -rf $(GENERATED:\=/)/sa-jdi.jar
duke@435 110 !endif

mercurial