Home | History | Annotate | Download | only in aarch64

Lines Matching refs:code

7 //   * Redistributions of source code must retain the above copyright notice,
41 // Generate some code.
60 // Usually, compilers will move the code to another place in memory before
63 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size));
64 if (code == NULL) {
67 memcpy(code, masm.GetBuffer()->GetStartAddress<void*>(), code_size);
69 // Run the code.
74 automatically_placed_literal.UpdateValue(a, code);
75 manually_placed_literal.UpdateValue(b, code);
77 // Run the code again.
78 simulator.RunFrom(reinterpret_cast<Instruction*>(code));