comparison src/cpu/x86/vm/stubRoutines_x86_64.hpp @ 6948:e522a00b91aa

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/ after NPG - C++ build works
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Nov 2012 23:14:12 +0100
parents a3ecd773a7b9
children b800986664f4
comparison
equal deleted inserted replaced
6711:ae13cc658b80 6948:e522a00b91aa
1 /* 1 /*
2 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2012, 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.
52 static address _float_sign_mask; 52 static address _float_sign_mask;
53 static address _float_sign_flip; 53 static address _float_sign_flip;
54 static address _double_sign_mask; 54 static address _double_sign_mask;
55 static address _double_sign_flip; 55 static address _double_sign_flip;
56 static address _mxcsr_std; 56 static address _mxcsr_std;
57 // shuffle mask for fixing up 128-bit words consisting of big-endian 32-bit integers
58 static address _key_shuffle_mask_addr;
57 59
58 public: 60 public:
59 61
60 static address get_previous_fp_entry() 62 static address get_previous_fp_entry()
61 { 63 {
114 116
115 static address mxcsr_std() 117 static address mxcsr_std()
116 { 118 {
117 return _mxcsr_std; 119 return _mxcsr_std;
118 } 120 }
121
122 static address key_shuffle_mask_addr() { return _key_shuffle_mask_addr; }
123
119 }; 124 };
120 125
121 #endif // CPU_X86_VM_STUBROUTINES_X86_64_HPP 126 #endif // CPU_X86_VM_STUBROUTINES_X86_64_HPP