src/share/vm/runtime/timer.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8148630 Cdiff src/share/vm/runtime/timer.hpp

src/share/vm/runtime/timer.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 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. --- 1,7 ---- /* ! * Copyright (c) 1997, 2016, 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.
*** 23,32 **** --- 23,33 ---- */ #ifndef SHARE_VM_RUNTIME_TIMER_HPP #define SHARE_VM_RUNTIME_TIMER_HPP + #include "logging/logTag.hpp" #include "utilities/globalDefinitions.hpp" // Timers for simple measurement. class elapsedTimer VALUE_OBJ_CLASS_SPEC {
*** 83,100 **** private: bool _active; // do timing bool _verbose; // report every timing elapsedTimer _t; // timer elapsedTimer* _accum; // accumulator public: // Constructors TraceTime(const char* title, ! bool doit = true); TraceTime(const char* title, elapsedTimer* accumulator, bool doit = true, ! bool verbose = false); ~TraceTime(); // Accessors void set_verbose(bool verbose) { _verbose = verbose; } bool verbose() const { return _verbose; } --- 84,107 ---- private: bool _active; // do timing bool _verbose; // report every timing elapsedTimer _t; // timer elapsedTimer* _accum; // accumulator + LogTagType _tag; // stream to print to + const char* _title; // name of timer + + outputStream* getStream(); public: // Constructors TraceTime(const char* title, ! bool doit = true, ! LogTagType tag = LogTag::__NO_TAG); TraceTime(const char* title, elapsedTimer* accumulator, bool doit = true, ! bool verbose = false, ! LogTagType tag = LogTag::__NO_TAG); ~TraceTime(); // Accessors void set_verbose(bool verbose) { _verbose = verbose; } bool verbose() const { return _verbose; }
src/share/vm/runtime/timer.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File