< prev index next >

src/share/vm/gc_implementation/g1/g1ErgoVerbose.hpp

Print this page

        

*** 158,199 **** (_arg3_), (_arg4_), (_arg5_)); \ } \ } while (0) ! #define ergo_verbose(_tag_, _action_) \ ! ergo_verbose_common(_tag_, _action_, "", 0, 0, 0, 0, 0, 0) ! #define ergo_verbose0(_tag_, _action_, _extra_format_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, 0, 0, 0, 0, 0, 0) ! #define ergo_verbose1(_tag_, _action_, _extra_format_, \ ! _arg0_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, \ ! _arg0_, 0, 0, 0, 0, 0) #define ergo_verbose2(_tag_, _action_, _extra_format_, \ _arg0_, _arg1_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, 0, 0, 0, 0) ! #define ergo_verbose3(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, 0, 0, 0) - #define ergo_verbose4(_tag_, _action_, _extra_format_, \ - _arg0_, _arg1_, _arg2_, _arg3_) \ - ergo_verbose_common(_tag_, _action_, _extra_format_, \ - _arg0_, _arg1_, _arg2_, _arg3_, 0, 0) ! #define ergo_verbose5(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, 0) - #define ergo_verbose6(_tag_, _action_, _extra_format_, \ - _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, _arg5_) \ - ergo_verbose_common(_tag_, _action_, _extra_format_, \ - _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, _arg5_) #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1ERGOVERBOSE_HPP --- 158,202 ---- (_arg3_), (_arg4_), (_arg5_)); \ } \ } while (0) ! #define ergo_verbose6(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, _arg5_) \ ! ergo_verbose_common(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, _arg5_) ! #define ergo_verbose5(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_) \ ! ergo_verbose6(_tag_, _action_, _extra_format_ "%s", \ ! _arg0_, _arg1_, _arg2_, _arg3_, _arg4_, "") ! #define ergo_verbose4(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_, _arg3_) \ ! ergo_verbose5(_tag_, _action_, _extra_format_ "%s", \ ! _arg0_, _arg1_, _arg2_, _arg3_, "") ! ! #define ergo_verbose3(_tag_, _action_, _extra_format_, \ ! _arg0_, _arg1_, _arg2_) \ ! ergo_verbose4(_tag_, _action_, _extra_format_ "%s", \ ! _arg0_, _arg1_, _arg2_, "") #define ergo_verbose2(_tag_, _action_, _extra_format_, \ _arg0_, _arg1_) \ ! ergo_verbose3(_tag_, _action_, _extra_format_ "%s", \ ! _arg0_, _arg1_, "") ! #define ergo_verbose1(_tag_, _action_, _extra_format_, \ ! _arg0_) \ ! ergo_verbose2(_tag_, _action_, _extra_format_ "%s", \ ! _arg0_, "") ! #define ergo_verbose0(_tag_, _action_, _extra_format_) \ ! ergo_verbose1(_tag_, _action_, _extra_format_ "%s", \ ! "") ! ! #define ergo_verbose(_tag_, _action_) \ ! ergo_verbose0(_tag_, _action_, "") #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1ERGOVERBOSE_HPP
< prev index next >