Lines Matching refs:simulator
8 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 "a64/simulator-a64.h"
45 We also need to set-up the simulator. The simulator uses a Decoder object to
47 decoder and bind our simulator to this decoder.
50 Simulator simulator(&decoder);
183 Running the code in the simulator.
186 Now we are going to see how to use the simulator to run the code that we
189 Use the simulator to assign a value to the registers. Our previous code example
192 simulator.set_xreg(0, 0x8899aabbccddeeff);
196 simulator.RunFrom(entry.target());
198 When the execution is finished and the simulator returned, you can inspect
201 printf("x0 = %" PRIx64 "\n", simulator.xreg(0));