annotate src/cpu/x86/vm/interpreterRT_x86_32.cpp @ 4582:b24386206122

Made all vm builds go into subdirectories, even product builds to simplify building the various types of VMs (server, client and graal). Made HotSpot build jobs use the number of CPUs on the host machine.
author Doug Simon <doug.simon@oracle.com>
date Mon, 13 Feb 2012 23:13:37 +0100
parents f95d63e2154a
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1506
diff changeset
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1506
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1506
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1506
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
26 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
27 #include "interpreter/interpreterRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
29 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
30 #include "oops/methodOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
31 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
32 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
33 #include "runtime/icache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
34 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
35 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Implementation of SignatureHandlerGenerator
a61af66fc99e Initial load
duke
parents:
diff changeset
42 void InterpreterRuntime::SignatureHandlerGenerator::pass_int() {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 move(offset(), jni_offset() + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
46 void InterpreterRuntime::SignatureHandlerGenerator::pass_float() {
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
47 move(offset(), jni_offset() + 1);
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
48 }
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
49
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void InterpreterRuntime::SignatureHandlerGenerator::pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 move(offset(), jni_offset() + 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 move(offset() + 1, jni_offset() + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void InterpreterRuntime::SignatureHandlerGenerator::pass_object() {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 box (offset(), jni_offset() + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void InterpreterRuntime::SignatureHandlerGenerator::move(int from_offset, int to_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 __ movl(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
a61af66fc99e Initial load
duke
parents:
diff changeset
61 __ movl(Address(to(), to_offset * wordSize), temp());
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void InterpreterRuntime::SignatureHandlerGenerator::box(int from_offset, int to_offset) {
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
66 __ lea(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
67 __ cmpptr(Address(from(), Interpreter::local_offset_in_bytes(from_offset)), (int32_t)NULL_WORD); // do not use temp() to avoid AGI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 __ jcc(Assembler::notZero, L);
512
db4caa99ef11 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 337
diff changeset
70 __ movptr(temp(), NULL_WORD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 __ bind(L);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
72 __ movptr(Address(to(), to_offset * wordSize), temp());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void InterpreterRuntime::SignatureHandlerGenerator::generate( uint64_t fingerprint) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // generate code to handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
78 iterate(fingerprint);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
80 __ lea(rax,
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ExternalAddress((address)Interpreter::result_handler(method()->result_type())));
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // return
a61af66fc99e Initial load
duke
parents:
diff changeset
83 __ ret(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 __ flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 Register InterpreterRuntime::SignatureHandlerGenerator::from() { return rdi; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Register InterpreterRuntime::SignatureHandlerGenerator::to() { return rsp; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 Register InterpreterRuntime::SignatureHandlerGenerator::temp() { return rcx; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Implementation of SignatureHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void SignatureHandlerLibrary::pd_set_handler(address handler) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 class SlowSignatureHandler: public NativeSignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 address _from;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 intptr_t* _to;
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 virtual void pass_int() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 579
diff changeset
104 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
107 virtual void pass_float() {
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
108 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
109 _from -= Interpreter::stackElementSize;
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
110 }
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
111
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 virtual void pass_long() {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
114 _to[1] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _to += 2;
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 579
diff changeset
116 _from -= 2*Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 virtual void pass_object() {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // pass address of from
a61af66fc99e Initial load
duke
parents:
diff changeset
121 intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
533
dc3ad84615cf 6795913: A few remaining wrong casts need to be fixed for building hotspot successfully on Mac OS.
xlu
parents: 512
diff changeset
122 *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr;
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 579
diff changeset
123 _from -= Interpreter::stackElementSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
127 SlowSignatureHandler(methodHandle method, address from, intptr_t* to) :
a61af66fc99e Initial load
duke
parents:
diff changeset
128 NativeSignatureIterator(method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _from = from;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _to = to + (is_static() ? 2 : 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 };
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 IRT_ENTRY(address, InterpreterRuntime::slow_signature_handler(JavaThread* thread, methodOopDesc* method, intptr_t* from, intptr_t* to))
a61af66fc99e Initial load
duke
parents:
diff changeset
135 methodHandle m(thread, (methodOop)method);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 assert(m->is_native(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
138 SlowSignatureHandler(m, (address)from, to + 1).iterate(UCONST64(-1));
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // return result handler
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return Interpreter::result_handler(m->result_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
141 IRT_END