OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 /* | |
8 * API to Simplifying instruction set to what is needed for | |
9 * the (x86-64) ncval_reg_sfi validator. | |
10 */ | |
11 | |
12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GENERATOR_NCVAL_SIMPLIFY
_H__ | |
13 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GENERATOR_NCVAL_SIMPLIFY
_H__ | |
14 | |
15 struct NaClInstTables; | |
16 | |
17 /* Simplifies the instructions in the instruction tables to match what is | |
18 * needed for the validator. | |
19 */ | |
20 void NaClNcvalInstSimplify(struct NaClInstTables* inst_tables); | |
21 | |
22 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_X86_DECODER_GENERATOR_NCVAL_SIMPL
IFY_H__ */ | |
OLD | NEW |