Lines Matching refs:simulator
8 generated code in the VIXL simulator.
14 Creating the macro assembler and the simulator.
18 the simulator are included. You should have the following lines at the beginning
21 #include "aarch64/simulator-aarch64.h"
38 We also need to set up the simulator. The simulator uses a Decoder object to
40 decoder and bind our simulator to this decoder.
43 Simulator simulator(&decoder);
176 Running the code in the simulator.
179 Now we are going to see how to use the simulator to run the code that we
182 Use the simulator to assign a value to the registers. Our previous code example
185 simulator.WriteXRegister(0, 0x8899aabbccddeeff);
189 simulator.RunFrom(entry.target());
191 When the execution is finished and the simulator returned, you can inspect
194 printf("x0 = %" PRIx64 "\n", simulator.ReadXRegister(0));