register_aarch64.hpp (8068:dd51d7312402) register_aarch64.hpp (8462:5b8b5731ca2d)
1/*
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
3 * Copyright (c) 2014, Red Hat Inc. All rights reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.

--- 172 unchanged lines hidden (view full) ---

181 public:
182 enum {
183 // A big enough number for C2: all the registers plus flags
184 // This number must be large enough to cover REG_COUNT (defined by c2) registers.
185 // There is no requirement that any ordering here matches any ordering c2 gives
186 // it's optoregs.
187
188 number_of_registers = (2 * RegisterImpl::number_of_registers +
1/*
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
3 * Copyright (c) 2014, Red Hat Inc. All rights reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.

--- 172 unchanged lines hidden (view full) ---

181 public:
182 enum {
183 // A big enough number for C2: all the registers plus flags
184 // This number must be large enough to cover REG_COUNT (defined by c2) registers.
185 // There is no requirement that any ordering here matches any ordering c2 gives
186 // it's optoregs.
187
188 number_of_registers = (2 * RegisterImpl::number_of_registers +
189 2 * FloatRegisterImpl::number_of_registers +
189 4 * FloatRegisterImpl::number_of_registers +
190 1) // flags
191 };
192
193 // added to make it compile
194 static const int max_gpr;
195 static const int max_fpr;
196};
197

--- 56 unchanged lines hidden ---
190 1) // flags
191 };
192
193 // added to make it compile
194 static const int max_gpr;
195 static const int max_fpr;
196};
197

--- 56 unchanged lines hidden ---