src/cpu/zero/vm/register_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8022956 Sdiff src/cpu/zero/vm

src/cpu/zero/vm/register_zero.cpp

Print this page




  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "register_zero.hpp"
  28 
  29 const int ConcreteRegisterImpl::max_gpr = RegisterImpl::number_of_registers;
  30 const int ConcreteRegisterImpl::max_fpr =
  31   ConcreteRegisterImpl::max_gpr + FloatRegisterImpl::number_of_registers;
  32 
  33 const char* RegisterImpl::name() const {
  34   ShouldNotCallThis();

  35 }
  36 
  37 const char* FloatRegisterImpl::name() const {
  38   ShouldNotCallThis();

  39 }


  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "register_zero.hpp"
  28 
  29 const int ConcreteRegisterImpl::max_gpr = RegisterImpl::number_of_registers;
  30 const int ConcreteRegisterImpl::max_fpr =
  31   ConcreteRegisterImpl::max_gpr + FloatRegisterImpl::number_of_registers;
  32 
  33 const char* RegisterImpl::name() const {
  34   ShouldNotCallThis();
  35   return NULL;
  36 }
  37 
  38 const char* FloatRegisterImpl::name() const {
  39   ShouldNotCallThis();
  40   return NULL;
  41 }
src/cpu/zero/vm/register_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File