File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1196,6 +1196,7 @@ V8 options that are allowed are:
1196
1196
<!-- node-options-v8 start -->
1197
1197
* ` --abort-on-uncaught-exception `
1198
1198
* ` --disallow-code-generation-from-strings `
1199
+ * ` --huge-max-old-generation-size `
1199
1200
* ` --interpreted-frames-native-stack `
1200
1201
* ` --jitless `
1201
1202
* ` --max-old-space-size `
Original file line number Diff line number Diff line change @@ -569,6 +569,11 @@ PerIsolateOptionsParser::PerIsolateOptionsParser(
569
569
" disallow eval and friends" ,
570
570
V8Option{},
571
571
kAllowedInEnvironment );
572
+ AddOption (" --huge-max-old-generation-size" ,
573
+ " increase default maximum heap size on machines with 16GB memory "
574
+ " or more" ,
575
+ V8Option{},
576
+ kAllowedInEnvironment );
572
577
AddOption (" --jitless" ,
573
578
" disable runtime allocation of executable memory" ,
574
579
V8Option{},
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ if (common.hasCrypto) {
67
67
// V8 options
68
68
expect ( '--abort_on-uncaught_exception' , 'B\n' ) ;
69
69
expect ( '--disallow-code-generation-from-strings' , 'B\n' ) ;
70
+ expect ( '--huge-max-old-generation-size' , 'B\n' ) ;
70
71
expect ( '--jitless' , 'B\n' ) ;
71
72
expect ( '--max-old-space-size=0' , 'B\n' ) ;
72
73
expect ( '--stack-trace-limit=100' ,
You can’t perform that action at this time.
0 commit comments