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

Side by Side Diff: runtime/vm/simulator_mips.h

Issue 12041056: Initial revision of ARM simulator and (empty) MIPS simulator. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Declares a Simulator for MIPS instructions if we are not generating a native
6 // MIPS binary. This Simulator allows us to run and debug MIPS code generation
7 // on regular desktop machines.
8 // Dart calls into generated code by "calling" the InvokeDartCode stub,
9 // which will start execution in the Simulator or forwards to the real entry
10 // on a MIPS HW platform.
11
12 #ifndef VM_SIMULATOR_MIPS_H_
13 #define VM_SIMULATOR_MIPS_H_
14
15 #ifndef VM_SIMULATOR_H_
16 #error Do not include simulator_mips.h directly; use simulator.h.
17 #endif
18
19 #if !defined(HOST_ARCH_MIPS)
20
21 namespace dart {
22
23 class Simulator {
24 public:
25 Simulator();
26 ~Simulator();
27
28 // Call on program start.
29 static void InitOnce();
30 };
31
32 } // namespace dart
33
34 #endif // !defined(HOST_ARCH_MIPS)
35
36 #endif // VM_SIMULATOR_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698