| 245 | } |
| 246 | |
| 247 | static void WritePadding(uptr from, uptr size) { |
| 248 | _memset((void*)from, 0xCC, (size_t)size); |
| 249 | } |
| 250 | |
| 251 | static void WriteJumpInstruction(uptr from, uptr target) { |
| 252 | if (!DistanceIsWithin2Gig(from + kJumpInstructionLength, target)) |
no test coverage detected