| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c1bc811 commit 5f852cc
4 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 | |
|---|---|---|---|
@@ -159,6 +159,7 @@ Kyounga Ra <kyounga@alticast.com> | |||
| 159 | 159 | Loo Rong Jie <loorongjie@gmail.com> | |
| 160 | 160 | Lu Yahan <yahan@iscas.ac.cn> | |
| 161 | 161 | Luis Reis <luis.m.reis@gmail.com> | |
| 162 | + Luke Albao <lukealbao@gmail.com> | ||
| 162 | 163 | Luke Zarko <lukezarko@gmail.com> | |
| 163 | 164 | Ma Aiguo <maaiguo@uniontech.com> | |
| 164 | 165 | Maciej Małecki <me@mmalecki.com> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -42,6 +42,7 @@ | |||
| 42 | 42 | #include "src/codegen/assembler.h" | |
| 43 | 43 | #include "src/codegen/source-position-table.h" | |
| 44 | 44 | #include "src/diagnostics/eh-frame.h" | |
| 45 | + #include "src/objects/code-kind.h" | ||
| 45 | 46 | #include "src/objects/objects-inl.h" | |
| 46 | 47 | #include "src/objects/shared-function-info.h" | |
| 47 | 48 | #include "src/snapshot/embedded/embedded-data.h" | |
@@ -214,11 +215,7 @@ void PerfJitLogger::LogRecordedBuffer( | |||
| 214 | 215 | Handle<AbstractCode> abstract_code, | |
| 215 | 216 | MaybeHandle<SharedFunctionInfo> maybe_shared, const char* name, | |
| 216 | 217 | int length) { | |
| 217 | - if (FLAG_perf_basic_prof_only_functions && | ||
| 218 | - (abstract_code->kind() != CodeKind::INTERPRETED_FUNCTION && | ||
| 219 | - abstract_code->kind() != CodeKind::TURBOFAN && | ||
| 220 | - abstract_code->kind() != CodeKind::MAGLEV && | ||
| 221 | - abstract_code->kind() != CodeKind::BASELINE)) { | ||
| 218 | + if (FLAG_perf_basic_prof_only_functions && !CodeKindIsJSFunction(abstract_code->kind())) { | ||
| 222 | 219 | return; | |
| 223 | 220 | } | |
| 224 | 221 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -364,7 +364,7 @@ void PerfBasicLogger::LogRecordedBuffer(Handle<AbstractCode> code, | |||
| 364 | 364 | MaybeHandle<SharedFunctionInfo>, | |
| 365 | 365 | const char* name, int length) { | |
| 366 | 366 | if (FLAG_perf_basic_prof_only_functions && | |
| 367 | - CodeKindIsBuiltinOrJSFunction(code->kind())) { | ||
| 367 | + !CodeKindIsBuiltinOrJSFunction(code->kind())) { | ||
| 368 | 368 | return; | |
| 369 | 369 | } | |
| 370 | 370 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments