OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* | 7 /* |
8 * This file can be included many times to list all the ARM CPU features. | 8 * This file can be included many times to list all the ARM CPU features. |
9 * Simply define the NACL_ARM_CPU_FEATURE macro to change the behavior. | 9 * Simply define the NACL_ARM_CPU_FEATURE macro to change the behavior. |
10 * | 10 * |
11 * TODO(jfb) Add other ARM CPU features. | 11 * TODO(jfb) Add other ARM CPU features. |
12 */ | 12 */ |
13 | 13 |
14 /* Some ARM CPUs leak memory when TST+LDR/TST+STR is used for sandboxing. */ | 14 /* Some ARM CPUs leak memory when TST+LDR/TST+STR is used for sandboxing. */ |
15 NACL_ARM_CPU_FEATURE(CanUseTstMem) | 15 NACL_ARM_CPU_FEATURE(CanUseTstMem) |
OLD | NEW |