| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 16b59c6 commit 866e324
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.26', | ||
| 39 | + 'v8_embedder_string': '-node.27', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -468,7 +468,14 @@ void SignalHandler::FillRegisterState(void* context, RegisterState* state) { | |||
| 468 | 468 | state->pc = reinterpret_cast<void*>(mcontext->__ss.__eip); | |
| 469 | 469 | state->sp = reinterpret_cast<void*>(mcontext->__ss.__esp); | |
| 470 | 470 | state->fp = reinterpret_cast<void*>(mcontext->__ss.__ebp); | |
| 471 | - #endif // V8_HOST_ARCH_IA32 | ||
| 471 | + #elif V8_HOST_ARCH_ARM64 | ||
| 472 | + state->pc = | ||
| 473 | + reinterpret_cast<void*>(arm_thread_state64_get_pc(mcontext->__ss)); | ||
| 474 | + state->sp = | ||
| 475 | + reinterpret_cast<void*>(arm_thread_state64_get_sp(mcontext->__ss)); | ||
| 476 | + state->fp = | ||
| 477 | + reinterpret_cast<void*>(arm_thread_state64_get_fp(mcontext->__ss)); | ||
| 478 | + #endif // V8_HOST_ARCH_* | ||
| 472 | 479 | #elif V8_OS_FREEBSD | |
| 473 | 480 | #if V8_HOST_ARCH_IA32 | |
| 474 | 481 | state->pc = reinterpret_cast<void*>(mcontext.mc_eip); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments