Lines Matching defs:code
7 // * Redistributions of source code must retain the above copyright notice,
44 // Generate some code.
63 // Usually, compilers will move the code to another place in memory before
66 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size));
67 if (code == NULL) {
70 memcpy(code, masm.GetBuffer()->GetStartAddress<void*>(), code_size);
72 // Run the code.
77 automatically_placed_literal.UpdateValue(a, code);
78 manually_placed_literal.UpdateValue(b, code);
80 // Run the code again.
81 simulator.RunFrom(reinterpret_cast<Instruction*>(code));
87 free(code);