Lines Matching defs:code
7 // * Redistributions of source code must retain the above copyright notice,
42 // Generate some code.
62 // Usually, compilers will move the code to another place in memory before
65 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size));
66 if (code == NULL) {
69 memcpy(code, masm.GetStartAddress<void*>(), code_size);
71 // Run the code.
76 automatically_placed_literal.UpdateValue(a, code);
77 manually_placed_literal.UpdateValue(b, code);
79 // Run the code again.
80 simulator.RunFrom(reinterpret_cast<Instruction*>(code));