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

Unified Diff: src/trusted/validator_arm/model.h

Issue 7799013: Intial Thumb2 Sandbox (naclrev 6680) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: asdsa Created 9 years, 3 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
Index: src/trusted/validator_arm/model.h
diff --git a/src/trusted/validator_arm/model.h b/src/trusted/validator_arm/model.h
index 73ba98cdf53de54cc63a7be8d54dea86cb0af158..fa51668945b19c5921efd69887eb7619708c5617 100644
--- a/src/trusted/validator_arm/model.h
+++ b/src/trusted/validator_arm/model.h
@@ -1,8 +1,8 @@
/*
- * Copyright 2009 The Native Client Authors. All rights reserved.
+ * Copyright 2011 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can
* be found in the LICENSE file.
- * Copyright 2009, Google Inc.
+ * Copyright 2011, Google Inc.
*/
#ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_ARM_V2_MODEL_H
@@ -104,6 +104,7 @@ class RegisterList {
* - It inlines to a single machine instruction,
* - The readability gain in inst_classes.cc is large.
*/
+ /* @IGNORE_LINES_FOR_CODE_HYGIENE[2] */
inline RegisterList(const Register r);
/*
@@ -141,6 +142,10 @@ inline const RegisterList operator+(const RegisterList, const RegisterList);
*/
static const RegisterList kRegisterListEverything = RegisterList(-1);
+/*
+ * A register list which contains no registers.
+ */
+static const RegisterList kRegisterListNothing = RegisterList(0);
/*
* A 32-bit ARM instruction of unspecified type.

Powered by Google App Engine
This is Rietveld 408576698