forked from Linaro/vixl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnon-const-visitor.cc
157 lines (129 loc) · 5.22 KB
/
non-const-visitor.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Copyright 2014, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of ARM Limited nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "non-const-visitor.h"
#include <regex>
#include "examples.h"
using namespace vixl;
using namespace vixl::aarch64;
#define __ masm->
void SwitchAddSubRegisterSources::Visit(Metadata* metadata,
const Instruction* instr) {
const std::string& form = (*metadata)["form"];
// Match the forms for 32/64-bit add/subtract with shift, with optional flag
// setting.
if (std::regex_match(form, // NOLINT: avoid clang-tidy-4.0 errors.
std::regex("(?:add|sub)s?_(?:32|64)_addsub_shift"))) {
int rn = instr->GetRn();
int rm = instr->GetRm();
// Only non-const visitors are allowed to discard constness of the visited
// instruction.
Instruction* mutable_instr = MutableInstruction(instr);
Instr instr_bits = mutable_instr->GetInstructionBits();
// Switch the bitfields for the `rn` and `rm` registers.
instr_bits &= ~(Rn_mask | Rm_mask);
instr_bits |= (rn << Rm_offset) | (rm << Rn_offset);
// Rewrite the instruction.
mutable_instr->SetInstructionBits(instr_bits);
}
}
void GenerateNonConstVisitorTestCode(MacroAssembler* masm) {
// int64_t foo(int64_t a, int64_t b)
// Argument locations:
// a -> x0
// b -> x1
__ Sub(x0, x0, x1);
// The return value is in x0.
__ Ret();
}
int64_t RunNonConstVisitorTestGeneratedCode(const Instruction* start_instr) {
#ifdef VIXL_INCLUDE_SIMULATOR_AARCH64
Decoder simulator_decoder;
Simulator simulator(&simulator_decoder);
int64_t a = 5;
int64_t b = 2;
simulator.WriteXRegister(0, a);
simulator.WriteXRegister(1, b);
simulator.RunFrom(start_instr);
int64_t res = simulator.ReadXRegister(0);
printf("foo(%" PRId64 ", %" PRId64 ") = %" PRId64 "\n", a, b, res);
return res;
#else
// Without the simulator there is nothing to test.
USE(start_instr);
return 0;
#endif
}
#ifndef TEST_EXAMPLES
#ifdef VIXL_INCLUDE_SIMULATOR_AARCH64
int main(void) {
MacroAssembler masm;
// Generate the code.
Label code_start, code_end;
masm.Bind(&code_start);
GenerateNonConstVisitorTestCode(&masm);
masm.Bind(&code_end);
masm.FinalizeCode();
Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
Instruction* instr_end = masm.GetLabelAddress<Instruction*>(&code_end);
// Run the code a first time.
RunNonConstVisitorTestGeneratedCode(instr_start);
// Instantiate a decoder, disassembler, and our custom modifying visitor.
Decoder decoder;
PrintDisassembler disasm(stdout);
SwitchAddSubRegisterSources modifying_visitor;
// Register visitors in such a way that when visiting instructions, the
// decoder will first disassemble the original instruction, modify it, and
// then disassemble the modified instruction.
decoder.AppendVisitor(&disasm);
decoder.AppendVisitor(&modifying_visitor);
decoder.AppendVisitor(&disasm);
// Iterate through the instructions.
Instruction* instr;
for (instr = instr_start; instr < instr_end; instr += kInstructionSize) {
printf("---\n");
decoder.Decode(instr);
}
// Run the modified code and observe the different output from before.
RunNonConstVisitorTestGeneratedCode(instr_start);
return 0;
}
#else
// Without the simulator there is nothing to test.
int main(void) { return 0; }
#endif // VIXL_INCLUDE_SIMULATOR_AARCH64
#endif // TEST_EXAMPLES
// This is only used by the testing code.
void ModifyNonConstVisitorTestGeneratedCode(Instruction* start,
Instruction* end) {
Decoder decoder;
SwitchAddSubRegisterSources modifying_visitor;
decoder.AppendVisitor(&modifying_visitor);
Instruction* instr;
for (instr = start; instr < end; instr += kInstructionSize) {
printf("---\n");
decoder.Decode(instr);
}
}