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

Side by Side Diff: src/trusted/validator_ragel/decoder_internal.h

Issue 11000033: Move validator_x86_XX.rl out of unreviewed. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 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) 2012 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 * This file contains common parts of x86-32 and x86-64 internals (inline
9 * functions and defines).
10 */
11
12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_RAGEL_DECODER_INTERNAL_H_
13 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_RAGEL_DECODER_INTERNAL_H_
14
15 #include "native_client/src/trusted/validator_ragel/decoding.h"
16 #include "native_client/src/trusted/validator_ragel/decoder.h"
17
18 /*
19 * Set of macroses used in actions defined in parse_instruction.rl to pull
20 * parts of the instruction from a byte stream and store them for future use.
21 */
22 #define GET_REX_PREFIX() instruction.prefix.rex
23 #define SET_REX_PREFIX(P) instruction.prefix.rex = (P)
24 #define GET_VEX_PREFIX2() vex_prefix2
25 #define SET_VEX_PREFIX2(P) vex_prefix2 = (P)
26 #define GET_VEX_PREFIX3() vex_prefix3
27 #define SET_VEX_PREFIX3(P) vex_prefix3 = (P)
28 #define SET_DATA16_PREFIX(S) instruction.prefix.data16 = (S)
29 #define SET_LOCK_PREFIX(S) instruction.prefix.lock = (S)
30 #define SET_REPZ_PREFIX(S) instruction.prefix.repz = (S)
31 #define SET_REPNZ_PREFIX(S) instruction.prefix.repnz = (S)
32 #define SET_BRANCH_TAKEN(S) instruction.prefix.branch_taken = (S)
33 #define SET_BRANCH_NOT_TAKEN(S) instruction.prefix.branch_not_taken = (S)
34 #define SET_INSTRUCTION_NAME(N) instruction.name = (N)
35 #define GET_OPERAND_NAME(N) instruction.operands[(N)].name
36 #define SET_OPERAND_NAME(N, S) instruction.operands[(N)].name = (S)
37 #define SET_OPERAND_TYPE(N, S) instruction.operands[(N)].type = (S)
38 #define SET_OPERANDS_COUNT(N) instruction.operands_count = (N)
39 #define SET_MODRM_BASE(N) instruction.rm.base = (N)
40 #define SET_MODRM_INDEX(N) instruction.rm.index = (N)
41 #define SET_MODRM_SCALE(S) instruction.rm.scale = (S)
42 #define SET_DISP_TYPE(T) instruction.rm.disp_type = (T)
43 #define SET_DISP_PTR(P) \
44 instruction.rm.offset = DecodeDisplacementValue(instruction.rm.disp_type, (P))
45 #define SET_IMM_TYPE(T) imm_operand = (T)
46 #define SET_IMM_PTR(P) \
47 instruction.imm[0] = DecodeImmediateValue(imm_operand, (P))
48 #define SET_IMM2_TYPE(T) imm2_operand = (T)
49 #define SET_IMM2_PTR(P) \
50 instruction.imm[1] = DecodeImmediateValue(imm2_operand, (P))
51 #define SET_CPU_FEATURE(F)
52
53 /*
54 * Immediate mode: size of the instruction's immediate operand. Note that there
55 * IMMNONE (which means there are no immediate operand) and IMM2 (which is
56 * two-bit immediate which shares it's byte with other operands).
57 */
58 enum ImmediateMode {
59 IMMNONE,
60 IMM2,
61 IMM8,
62 IMM16,
63 IMM32,
64 IMM64
65 };
66
67 static FORCEINLINE uint64_t DecodeDisplacementValue(
68 enum DisplacementMode disp_mode, const uint8_t *disp_ptr) {
69 switch(disp_mode) {
70 case DISPNONE: return 0;
71 case DISP8: return SignExtend8Bit(AnyFieldValue8bit(disp_ptr));
72 case DISP16: return SignExtend16Bit(AnyFieldValue16bit(disp_ptr));
73 case DISP32: return SignExtend32Bit(AnyFieldValue32bit(disp_ptr));
74 case DISP64: return AnyFieldValue64bit(disp_ptr);
75 }
76 assert(FALSE);
77 return 0;
78 }
79
80
81 static FORCEINLINE uint64_t DecodeImmediateValue(enum ImmediateMode imm_mode,
82 const uint8_t *imm_ptr) {
83 switch(imm_mode) {
84 case IMMNONE: return 0;
85 case IMM2: return imm_ptr[0] & 0x03;
86 case IMM8: return AnyFieldValue8bit(imm_ptr);
87 case IMM16: return AnyFieldValue16bit(imm_ptr);
88 case IMM32: return AnyFieldValue32bit(imm_ptr);
89 case IMM64: return AnyFieldValue64bit(imm_ptr);
90 }
91 assert(FALSE);
92 return 0;
93 }
94
95 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_RAGEL_DECODER_INTERNAL_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698