src/share/vm/trace/trace.dtd

Wed, 26 Mar 2014 14:15:02 +0100

author
ehelin
date
Wed, 26 Mar 2014 14:15:02 +0100
changeset 6608
fa21c9537e6e
parent 0
f90c822e73f8
permissions
-rw-r--r--

8035667: EventMetaspaceSummary doesn't report committed Metaspace memory
Reviewed-by: jmasa, stefank

aoqi@0 1 <?xml version="1.0" encoding="UTF-8"?>
aoqi@0 2 <!--
aoqi@0 3 Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 5
aoqi@0 6 This code is free software; you can redistribute it and/or modify it
aoqi@0 7 under the terms of the GNU General Public License version 2 only, as
aoqi@0 8 published by the Free Software Foundation.
aoqi@0 9
aoqi@0 10 This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 13 version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 14 accompanied this code).
aoqi@0 15
aoqi@0 16 You should have received a copy of the GNU General Public License version
aoqi@0 17 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 18 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 19
aoqi@0 20 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 21 or visit www.oracle.com if you need additional information or have any
aoqi@0 22 questions.
aoqi@0 23
aoqi@0 24 -->
aoqi@0 25
aoqi@0 26 <!ELEMENT trace (xi:include, relation_decls, events*, xi:include, xi:include)>
aoqi@0 27 <!ELEMENT types (content_types, primary_types)>
aoqi@0 28 <!ELEMENT content_types (content_type|struct_type)*>
aoqi@0 29 <!ELEMENT content_type (value|structvalue|structarray|array)*>
aoqi@0 30 <!ELEMENT struct_type (value*)>
aoqi@0 31 <!ELEMENT primary_types (primary_type*)>
aoqi@0 32 <!ELEMENT primary_type EMPTY>
aoqi@0 33 <!ELEMENT relation_decls (relation_decl*)>
aoqi@0 34 <!ELEMENT relation_decl EMPTY>
aoqi@0 35 <!ELEMENT events (event|struct)*>
aoqi@0 36 <!ELEMENT event (value|structvalue)*>
aoqi@0 37 <!ELEMENT struct (value|structvalue)*>
aoqi@0 38 <!ELEMENT value EMPTY>
aoqi@0 39 <!ELEMENT structvalue EMPTY>
aoqi@0 40 <!ELEMENT structarray EMPTY>
aoqi@0 41 <!ELEMENT array EMPTY>
aoqi@0 42 <!ATTLIST content_type id CDATA #REQUIRED
aoqi@0 43 hr_name CDATA #REQUIRED
aoqi@0 44 type CDATA #REQUIRED
aoqi@0 45 jvm_type CDATA #IMPLIED
aoqi@0 46 builtin_type CDATA #IMPLIED>
aoqi@0 47 <!ATTLIST struct_type id CDATA #REQUIRED>
aoqi@0 48 <!ATTLIST structarray type CDATA #REQUIRED
aoqi@0 49 field CDATA #REQUIRED
aoqi@0 50 label CDATA #REQUIRED>
aoqi@0 51 <!ATTLIST primary_type symbol CDATA #REQUIRED
aoqi@0 52 datatype CDATA #REQUIRED
aoqi@0 53 contenttype CDATA #REQUIRED
aoqi@0 54 type CDATA #REQUIRED
aoqi@0 55 sizeop CDATA #REQUIRED>
aoqi@0 56 <!ATTLIST relation_decl id CDATA #REQUIRED
aoqi@0 57 uri CDATA #REQUIRED>
aoqi@0 58 <!ATTLIST event id CDATA #REQUIRED
aoqi@0 59 path CDATA #REQUIRED
aoqi@0 60 label CDATA #REQUIRED
aoqi@0 61 description CDATA #IMPLIED
aoqi@0 62 has_thread CDATA "false"
aoqi@0 63 ignore_check CDATA "false"
aoqi@0 64 has_stacktrace CDATA "false"
aoqi@0 65 is_instant CDATA "false"
aoqi@0 66 is_constant CDATA "false"
aoqi@0 67 is_requestable CDATA "false">
aoqi@0 68 <!ATTLIST struct id CDATA #REQUIRED>
aoqi@0 69 <!ATTLIST value type CDATA #REQUIRED
aoqi@0 70 field CDATA #REQUIRED
aoqi@0 71 label CDATA #REQUIRED
aoqi@0 72 description CDATA #IMPLIED
aoqi@0 73 relation CDATA "NOT_AVAILABLE"
aoqi@0 74 transition CDATA "NONE">
aoqi@0 75 <!ATTLIST array type CDATA #REQUIRED
aoqi@0 76 field CDATA #REQUIRED
aoqi@0 77 label CDATA #REQUIRED
aoqi@0 78 description CDATA #IMPLIED>
aoqi@0 79 <!ATTLIST structarray type CDATA #REQUIRED
aoqi@0 80 field CDATA #REQUIRED
aoqi@0 81 label CDATA #REQUIRED
aoqi@0 82 description CDATA #IMPLIED>
aoqi@0 83 <!ATTLIST structvalue type CDATA #REQUIRED
aoqi@0 84 field CDATA #REQUIRED
aoqi@0 85 label CDATA #REQUIRED
aoqi@0 86 description CDATA #IMPLIED>

mercurial