annotate make/pic.make @ 3772:6747fd0512e0

7004681: G1: Extend marking verification to Full GCs Summary: Perform a heap verification after the first phase of G1's full GC using objects' mark words to determine liveness. The third parameter of the heap verification routines, which was used in G1 to determine which marking bitmap to use in liveness calculations, has been changed from a boolean to an enum with values defined for using the mark word, and the 'prev' and 'next' bitmaps. Reviewed-by: tonyp, ysr
author johnc
date Tue, 14 Jun 2011 11:01:10 -0700
parents c18cbe5936b8
children 06320b1578cb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
228
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
1 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 228
diff changeset
2 # Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
228
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
4 #
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
7 # published by the Free Software Foundation.
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
8 #
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
13 # accompanied this code).
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
14 #
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 228
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 228
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 228
diff changeset
21 # questions.
228
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
22 #
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
23 #
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
24
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
25 # A list of object files built without the platform specific PIC flags, e.g.
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
26 # -fPIC on linux. Performance measurements show that by compiling GC related
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
27 # code, we could significantly reduce the GC pause time on 32 bit Linux/Unix
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
28 # platforms. See 6454213 for more details.
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
29 include $(GAMMADIR)/make/scm.make
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
30
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
31 ifneq ($(OSNAME), windows)
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
32 ifndef LP64
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
33 NONPIC_DIRS = memory oops gc_implementation gc_interface
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
34 NONPIC_DIRS := $(foreach dir,$(NONPIC_DIRS), $(GAMMADIR)/src/share/vm/$(dir))
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
35 # Look for source files under NONPIC_DIRS
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
36 NONPIC_FILES := $(foreach dir,$(NONPIC_DIRS),\
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
37 $(shell find $(dir) \( $(SCM_DIRS) \) -prune -o \
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
38 -name '*.cpp' -print))
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
39 NONPIC_OBJ_FILES := $(notdir $(subst .cpp,.o,$(NONPIC_FILES)))
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
40 endif
f232d7d67023 6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
diff changeset
41 endif