comparison src/share/vm/c1/c1_Compiler.cpp @ 14225:16e101c8691f

8029305: add type tag to AbstractCompiler Reviewed-by: iveresov, kvn
author twisti
date Mon, 06 Jan 2014 17:23:07 -0800
parents de6a9e811145
children d8041d695d19
comparison
equal deleted inserted replaced
14224:a7e8ff4a1838 14225:16e101c8691f
1 /* 1 /*
2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
41 #include "runtime/arguments.hpp" 41 #include "runtime/arguments.hpp"
42 #include "runtime/interfaceSupport.hpp" 42 #include "runtime/interfaceSupport.hpp"
43 #include "runtime/sharedRuntime.hpp" 43 #include "runtime/sharedRuntime.hpp"
44 44
45 45
46 Compiler::Compiler () {} 46 Compiler::Compiler() : AbstractCompiler(c1) {
47 }
47 48
48 void Compiler::init_c1_runtime() { 49 void Compiler::init_c1_runtime() {
49 BufferBlob* buffer_blob = CompilerThread::current()->get_buffer_blob(); 50 BufferBlob* buffer_blob = CompilerThread::current()->get_buffer_blob();
50 Arena* arena = new (mtCompiler) Arena(); 51 Arena* arena = new (mtCompiler) Arena();
51 Runtime1::initialize(buffer_blob); 52 Runtime1::initialize(buffer_blob);