diff --git a/upb/pb/decoder_x86.dasc b/upb/pb/decoder_x86.dasc index 19043c6b5f..20c20d7461 100644 --- a/upb/pb/decoder_x86.dasc +++ b/upb/pb/decoder_x86.dasc @@ -682,6 +682,8 @@ void upb_decoder_makejit(upb_decoder *d) { mprotect(d->jit_code, d->jit_size, PROT_EXEC | PROT_READ); + // View with: objdump -M intel -D -b binary -mi386 -Mx86-64 /tmp/machine-code + // Or: ndisasm -b 64 /tmp/machine-code FILE *f = fopen("/tmp/machine-code", "wb"); fwrite(d->jit_code, d->jit_size, 1, f); fclose(f); diff --git a/upb/upb.h b/upb/upb.h index 153057df68..0c49597089 100644 --- a/upb/upb.h +++ b/upb/upb.h @@ -14,6 +14,7 @@ #include #include // only for size_t. #include +#include #include "descriptor_const.h" #include "atomic.h"