src/cpu/x86/vm/vmreg_x86.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/cpu/x86/vm/vmreg_x86.cpp	Sat Jun  2 20:04:00 2012
--- new/src/cpu/x86/vm/vmreg_x86.cpp	Sat Jun  2 20:04:00 2012

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 46,57 **** --- 46,58 ---- freg = freg->successor(); } XMMRegister xreg = ::as_XMMRegister(0); for ( ; i < ConcreteRegisterImpl::max_xmm ; ) { + for (int j = 0 ; j < 8 ; j++) { regName[i++] = xreg->name(); regName[i++] = xreg->name(); + } xreg = xreg->successor(); } for ( ; i < ConcreteRegisterImpl::number_of_registers ; i ++ ) { regName[i] = "NON-GPR-FPR-XMM"; }

src/cpu/x86/vm/vmreg_x86.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File