author | sundar |
Mon, 15 Apr 2013 20:12:50 +0530 | |
changeset 17224 | e3481336d8f7 |
parent 13104 | 657b387034fb |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "asm/assembler.hpp" |
|
27 |
#include "code/vmreg.hpp" |
|
1 | 28 |
|
29 |
// First VMReg value that could refer to a stack slot |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
30 |
VMReg VMRegImpl::stack0 = (VMReg)(intptr_t)((ConcreteRegisterImpl::number_of_registers + 7) & ~7); |
1 | 31 |
|
32 |
// VMRegs are 4 bytes wide on all platforms |
|
33 |
const int VMRegImpl::stack_slot_size = 4; |
|
34 |
const int VMRegImpl::slots_per_word = wordSize / stack_slot_size; |
|
35 |
||
36 |
const int VMRegImpl::register_count = ConcreteRegisterImpl::number_of_registers; |
|
37 |
// Register names |
|
38 |
const char *VMRegImpl::regName[ConcreteRegisterImpl::number_of_registers]; |
|
39 |
||
198
8601165a33c3
6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents:
1
diff
changeset
|
40 |
void VMRegImpl::print_on(outputStream* st) const { |
1 | 41 |
if( is_reg() ) { |
42 |
assert( VMRegImpl::regName[value()], "" ); |
|
198
8601165a33c3
6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents:
1
diff
changeset
|
43 |
st->print("%s",VMRegImpl::regName[value()]); |
1 | 44 |
} else if (is_stack()) { |
45 |
int stk = value() - stack0->value(); |
|
198
8601165a33c3
6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents:
1
diff
changeset
|
46 |
st->print("[%d]", stk*4); |
1 | 47 |
} else { |
198
8601165a33c3
6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents:
1
diff
changeset
|
48 |
st->print("BAD!"); |
1 | 49 |
} |
198
8601165a33c3
6621094: PrintOptoAssembly is broken for oops information in DebugInfo
kvn
parents:
1
diff
changeset
|
50 |
} |