1 /*
 2  * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
 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  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #include "asm/register.hpp"
26 #include "c1/c1_LIR.hpp"
27 
28 FloatRegister LIR_Opr::as_float_reg() const {
29   return as_FloatRegister(fpu_regnr());
30 }
31 
32 FloatRegister LIR_Opr::as_double_reg() const {
33   return as_FloatRegister(fpu_regnrLo());
34 }
35 
36 // Reg2 unused.
37 LIR_Opr LIR_OprFact::double_fpu(int reg1, int reg2) {
38   assert(as_FloatRegister(reg2) == fnoreg, "Not used on this platform");
39   return (LIR_Opr)(intptr_t)((reg1 << LIR_Opr::reg1_shift) |
40                              (reg1 << LIR_Opr::reg2_shift) |
41                              LIR_Opr::double_type          |
42                              LIR_Opr::fpu_register         |
43                              LIR_Opr::double_size);
44 }
45 
46 #ifndef PRODUCT
47 void LIR_Address::verify() const {
48   assert(base()->is_cpu_register(), "wrong base operand");
49   assert(index()->is_illegal() || index()->is_double_cpu() || index()->is_single_cpu(), "wrong index operand");
50   assert(base()->type() == T_ADDRESS || base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
51          "wrong type for addresses");
52   assert(index()->is_illegal() || disp() == 0, "cannot set both index and displacement");
53 }
54 #endif // PRODUCT