--- a/hotspot/src/share/vm/prims/methodHandles.cpp Tue Feb 16 13:20:38 2016 -0800
+++ b/hotspot/src/share/vm/prims/methodHandles.cpp Wed Feb 17 14:03:18 2016 -0500
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2008, 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
@@ -40,6 +40,7 @@
#include "prims/jvmtiRedefineClassesTrace.hpp"
#include "runtime/compilationPolicy.hpp"
#include "runtime/javaCalls.hpp"
+#include "runtime/logTimer.hpp"
#include "runtime/reflection.hpp"
#include "runtime/signature.hpp"
#include "runtime/stubRoutines.hpp"
@@ -76,7 +77,7 @@
assert(_adapter_code == NULL, "generate only once");
ResourceMark rm;
- TraceTime timer("MethodHandles adapters generation", TraceStartupTime);
+ TraceStartupTime timer("MethodHandles adapters generation");
_adapter_code = MethodHandlesAdapterBlob::create(adapter_code_size);
if (_adapter_code == NULL) {
return false;