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

Side by Side Diff: src/trusted/validator/x86/ncval_reg_sfi/ncval_decode_tables.c

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 /*
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 #include "native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_decode_tab les.h"
8
9 #include "native_client/src/trusted/validator/x86/decoder/ncopcode_desc.h"
10 #include "native_client/src/trusted/validator/x86/decoder/nc_decode_tables.h"
11
12 #if NACL_TARGET_SUBARCH == 64
13 # include "native_client/src/trusted/validator/x86/decoder/gen/ncval_reg_sfi_opc ode_table_64.h"
14 #else
15 # include "native_client/src/trusted/validator/x86/decoder/gen/ncval_reg_sfi_opc ode_table_32.h"
16 #endif
17
18 static const NaClDecodeTables kDecoderTables = {
19 g_Operands,
20 g_Opcodes + 0,
21 g_LookupTable + 0,
22 g_PrefixOpcode + 0,
23 g_Opcodes + 0,
24 kNaClPrefixTable,
25 g_OpcodeSeq
26 };
27
28 const struct NaClDecodeTables* kNaClValDecoderTables = &kDecoderTables;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698