Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Unified Diff: runtime/vm/deopt_instructions.h

Issue 11956004: Fix vm code base so that it can be built for --arch=simarm (no snapshot yet). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/deopt_instructions.h
===================================================================
--- runtime/vm/deopt_instructions.h (revision 17245)
+++ runtime/vm/deopt_instructions.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -52,12 +52,12 @@
return registers_copy_[reg];
}
- double XmmRegisterValue(XmmRegister reg) const {
- return xmm_registers_copy_[reg];
+ double FpuRegisterValue(FpuRegister reg) const {
+ return fpu_registers_copy_[reg];
}
- int64_t XmmRegisterValueAsInt64(XmmRegister reg) const {
- return (reinterpret_cast<int64_t*>(xmm_registers_copy_))[reg];
+ int64_t FpuRegisterValueAsInt64(FpuRegister reg) const {
+ return (reinterpret_cast<int64_t*>(fpu_registers_copy_))[reg];
}
Isolate* isolate() const { return isolate_; }
@@ -73,7 +73,7 @@
intptr_t* from_frame_;
intptr_t from_frame_size_;
intptr_t* registers_copy_;
- double* xmm_registers_copy_;
+ double* fpu_registers_copy_;
const intptr_t num_args_;
const DeoptReasonId deopt_reason_;
intptr_t caller_fp_;
@@ -94,8 +94,8 @@
kRetBeforeAddress,
kConstant,
kRegister,
- kXmmRegister,
- kInt64XmmRegister,
+ kFpuRegister,
+ kInt64FpuRegister,
kStackSlot,
kDoubleStackSlot,
kInt64StackSlot,
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698