Go to the source code of this file.
|
void | dump (const unsigned char *p, size_t n) |
|
int | main () |
|
◆ XBYAK_NO_OP_NAMES
#define XBYAK_NO_OP_NAMES |
◆ dump()
void dump |
( |
const unsigned char * | p, |
|
|
size_t | n ) |
Definition at line 73 of file rip-label-imm.cpp.
74{
75 for (int i = 0; i < n; i++) {
77 if ((i % 16) == 15) putchar('\n');
78 }
79 putchar('\n');
80}
LOGGING_API void printf(Category category, const char *format,...)
◆ main()
Definition at line 82 of file rip-label-imm.cpp.
83{
85 void (*
f)() = code.
getCode<void (*)()>();
86 dump(code.getCode(), code.getSize());
88}
const uint8 * getCode() const
void dump(const unsigned char *p, size_t n)