view src/share/vm/trace/traceDataTypes.hpp @ 11156:060ae9b7ffea

8020547: Event based tracing needs a UNICODE string type Reviewed-by: egahlin, rbackman, dcubed, brutisso, acorn
author mgronlun
date Fri, 19 Jul 2013 17:56:27 +0200
parents f2110083203d
children
line wrap: on
line source

/*
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */

#ifndef SHARE_VM_TRACE_TRACEDATATYPES_HPP
#define SHARE_VM_TRACE_TRACEDATATYPES_HPP

#include <stddef.h>

#include "utilities/globalDefinitions.hpp"

enum {
  CONTENT_TYPE_NONE             = 0,
  CONTENT_TYPE_BYTES            = 1,
  CONTENT_TYPE_EPOCHMILLIS      = 2,
  CONTENT_TYPE_MILLIS           = 3,
  CONTENT_TYPE_NANOS            = 4,
  CONTENT_TYPE_TICKS            = 5,
  CONTENT_TYPE_ADDRESS          = 6,

  CONTENT_TYPE_OSTHREAD,
  CONTENT_TYPE_JAVALANGTHREAD,
  CONTENT_TYPE_STACKTRACE,
  CONTENT_TYPE_CLASS,
  CONTENT_TYPE_PERCENTAGE,

  JVM_CONTENT_TYPES_START       = 30,
  JVM_CONTENT_TYPES_END         = 100
};

enum ReservedEvent {
  EVENT_PRODUCERS,
  EVENT_CHECKPOINT,
  EVENT_BUFFERLOST,

  NUM_RESERVED_EVENTS
};

typedef enum ReservedEvent ReservedEvent;

typedef u8 classid;
typedef u8 stacktraceid;
typedef u8 methodid;
typedef u8 fieldid;

class TraceUnicodeString;

#endif // SHARE_VM_TRACE_TRACEDATATYPES_HPP