| ... | ... | @@ -648,7 +648,10 @@ pub const Node = extern struct { |
| 648 | 648 | _, const current_size = ni.location(mf).resolve(mf); |
| 649 | 649 | if (current_size >= min_size) return; |
| 650 | 650 | const new_size = ni.alignment(mf).forward(min_size +| min_size / growth_factor); |
| 651 | | try mf.growNode(gpa, ni, new_size, .minimum); |
| 651 | try mf.growNode(gpa, ni, new_size, .{ |
| 652 | .exact_size = false, |
| 653 | .move_footers = true, |
| 654 | }); |
| 652 | 655 | mf.updateWriters(); |
| 653 | 656 | } |
| 654 | 657 | |
| ... | ... | @@ -664,7 +667,10 @@ pub const Node = extern struct { |
| 664 | 667 | switch (std.math.order(size, old_size)) { |
| 665 | 668 | .lt => try mf.shrinkLeafNode(gpa, ni, size), |
| 666 | 669 | .eq => {}, // `old_size` must be well-aligned, so `size` is too |
| 667 | | .gt => try mf.growNode(gpa, ni, size, .exact), |
| 670 | .gt => try mf.growNode(gpa, ni, size, .{ |
| 671 | .exact_size = true, |
| 672 | .move_footers = false, // irrelevant, since we have no footers |
| 673 | }), |
| 668 | 674 | } |
| 669 | 675 | mf.updateWriters(); |
| 670 | 676 | } |
| ... | ... | @@ -935,7 +941,10 @@ fn addNode(mf: *MappedFile, gpa: Allocator, opts: struct { |
| 935 | 941 | |
| 936 | 942 | try mf.realignNode(gpa, new_ni, opts.add_options.alignment); |
| 937 | 943 | if (opts.add_options.size > 0) { |
| 938 | | try mf.growNode(gpa, new_ni, opts.add_options.size, .exact); |
| 944 | try mf.growNode(gpa, new_ni, opts.add_options.size, .{ |
| 945 | .exact_size = true, |
| 946 | .move_footers = false, // irrelevant, since we have no footers |
| 947 | }); |
| 939 | 948 | } |
| 940 | 949 | mf.updateWriters(); |
| 941 | 950 | |
| ... | ... | @@ -1070,12 +1079,21 @@ fn shrinkLeafNode( |
| 1070 | 1079 | } |
| 1071 | 1080 | } |
| 1072 | 1081 | |
| 1073 | | const GrowMode = enum { exact, minimum }; |
| 1082 | const GrowOptions = struct { |
| 1083 | /// If `true`, the node size must be set to exactly the given size. |
| 1084 | /// |
| 1085 | /// If `false`, the given size is a minimum, and the actual new node size may be larger. |
| 1086 | exact_size: bool, |
| 1087 | /// If `true`, footers within the resized node will be moved forwards to its new end. |
| 1088 | /// |
| 1089 | /// If `false`, footers will all remain at their current offsets (so the nodes are in a |
| 1090 | /// temporarily invalid state), and moving them is the responsibility of the *caller*. |
| 1091 | move_footers: bool, |
| 1092 | }; |
| 1074 | 1093 | |
| 1075 | | /// Increases the size of a node. If `grow_mode` is `.exact`, the new size will be exactly `new_size`. |
| 1076 | | /// If `grow_mode` is `.minimum`, the new size will be greater than or equal to `new_size`. |
| 1094 | /// Increases the size of a node. |
| 1077 | 1095 | /// |
| 1078 | | /// Asserts that `new_size` is aligned to `ni.alignment(mf)` (even if `grow_mode` is `.minimum`!). |
| 1096 | /// Asserts that `new_size` is aligned to `ni.alignment(mf)`, even if `!grow_options.exact_size`. |
| 1079 | 1097 | /// |
| 1080 | 1098 | /// Asserts that `new_size` is greater than the current size of `ni`. |
| 1081 | 1099 | fn growNode( |
| ... | ... | @@ -1083,7 +1101,7 @@ fn growNode( |
| 1083 | 1101 | gpa: Allocator, |
| 1084 | 1102 | ni: Node.Index, |
| 1085 | 1103 | new_size: u64, |
| 1086 | | grow_mode: GrowMode, |
| 1104 | grow_options: GrowOptions, |
| 1087 | 1105 | ) Error!void { |
| 1088 | 1106 | mf.nodes_lock.assertUnlocked(); |
| 1089 | 1107 | |
| ... | ... | @@ -1098,7 +1116,7 @@ fn growNode( |
| 1098 | 1116 | const parent_ni = node.parent.unwrap() orelse { |
| 1099 | 1117 | assert(ni == .root); |
| 1100 | 1118 | |
| 1101 | | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_mode)) { |
| 1119 | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_options)) { |
| 1102 | 1120 | return; |
| 1103 | 1121 | } |
| 1104 | 1122 | |
| ... | ... | @@ -1120,21 +1138,23 @@ fn growNode( |
| 1120 | 1138 | }; |
| 1121 | 1139 | try mf.ensureTotalCapacityPrecise(@intCast(new_size)); |
| 1122 | 1140 | try ni.setLocation(mf, gpa, old_offset, new_size); |
| 1123 | | // We need to move any footers to be at the *new* end of the file. |
| 1124 | | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1125 | | const old_footers_offset, _ = first_footer_ni.location(mf).resolve(mf); |
| 1126 | | const footers_size = old_size - old_footers_offset; |
| 1127 | | try mf.moveRange( |
| 1128 | | old_footers_offset, |
| 1129 | | old_footers_offset + (new_size - old_size), |
| 1130 | | footers_size, |
| 1131 | | ); |
| 1132 | | // Also update the footers' locations. |
| 1133 | | var cur_ni = first_footer_ni; |
| 1134 | | while (true) { |
| 1135 | | const old_footer_offset, const footer_size = cur_ni.location(mf).resolve(mf); |
| 1136 | | try cur_ni.setLocation(mf, gpa, old_footer_offset + (new_size - old_size), footer_size); |
| 1137 | | cur_ni = cur_ni.next(mf).unwrap() orelse break; |
| 1141 | if (grow_options.move_footers) { |
| 1142 | // We need to move any footers to be at the *new* end of the file. |
| 1143 | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1144 | const old_footers_offset, _ = first_footer_ni.location(mf).resolve(mf); |
| 1145 | const footers_size = old_size - old_footers_offset; |
| 1146 | try mf.moveRange( |
| 1147 | old_footers_offset, |
| 1148 | old_footers_offset + (new_size - old_size), |
| 1149 | footers_size, |
| 1150 | ); |
| 1151 | // Also update the footers' locations. |
| 1152 | var cur_ni = first_footer_ni; |
| 1153 | while (true) { |
| 1154 | const old_footer_offset, const footer_size = cur_ni.location(mf).resolve(mf); |
| 1155 | try cur_ni.setLocation(mf, gpa, old_footer_offset + (new_size - old_size), footer_size); |
| 1156 | cur_ni = cur_ni.next(mf).unwrap() orelse break; |
| 1157 | } |
| 1138 | 1158 | } |
| 1139 | 1159 | } |
| 1140 | 1160 | return; |
| ... | ... | @@ -1142,7 +1162,7 @@ fn growNode( |
| 1142 | 1162 | |
| 1143 | 1163 | switch (node.flags.position) { |
| 1144 | 1164 | .header => { |
| 1145 | | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_mode)) { |
| 1165 | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_options)) { |
| 1146 | 1166 | return; |
| 1147 | 1167 | } |
| 1148 | 1168 | |
| ... | ... | @@ -1163,7 +1183,13 @@ fn growNode( |
| 1163 | 1183 | const old_headers_size = last_header_offset + last_header_size; |
| 1164 | 1184 | |
| 1165 | 1185 | // This is the first footer *inside* of `ni`. |
| 1166 | | const first_sub_footer_oni = ni.firstFooter(mf); |
| 1186 | const first_sub_footer_oni: Node.Index.Optional = footer: { |
| 1187 | if (!grow_options.move_footers) { |
| 1188 | // Pretend there are no footers so as to not move them. |
| 1189 | break :footer .none; |
| 1190 | } |
| 1191 | break :footer ni.firstFooter(mf); |
| 1192 | }; |
| 1167 | 1193 | const sub_footers_size = size: { |
| 1168 | 1194 | const first_sub_footer_ni = first_sub_footer_oni.unwrap() orelse break :size 0; |
| 1169 | 1195 | const first_sub_footer_offset, _ = first_sub_footer_ni.location(mf).resolve(mf); |
| ... | ... | @@ -1215,92 +1241,264 @@ fn growNode( |
| 1215 | 1241 | return; |
| 1216 | 1242 | }, |
| 1217 | 1243 | .floating => { |
| 1218 | | try mf.growFloatingNodeWithAlignment(gpa, ni, null, new_size, grow_mode); |
| 1244 | try mf.growFloatingNodeWithAlignment(gpa, ni, null, new_size, grow_options); |
| 1219 | 1245 | }, |
| 1220 | 1246 | .footer => { |
| 1221 | | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_mode)) { |
| 1247 | if (try mf.growNodeViaInsertRange(gpa, ni, new_size, grow_options)) { |
| 1222 | 1248 | return; |
| 1223 | 1249 | } |
| 1224 | 1250 | |
| 1225 | | try mf.ensureAdditionalFooterCapacity(gpa, parent_ni, new_size - old_size); |
| 1226 | | |
| 1227 | | const first_footer_ni: Node.Index = first_footer: { |
| 1228 | | var footer_ni = ni; |
| 1229 | | while (true) { |
| 1230 | | const prev_ni = footer_ni.prev(mf).unwrap() orelse break; |
| 1231 | | if (prev_ni.position(mf) != .footer) break; |
| 1232 | | footer_ni = prev_ni; |
| 1251 | // This is the first footer *inside* of `ni` (unrelated to the fact that `ni` is itself |
| 1252 | // a footer within its parent). We'll need this later in any case, so just find it now. |
| 1253 | const first_sub_footer_oni: Node.Index.Optional = footer: { |
| 1254 | if (!grow_options.move_footers) { |
| 1255 | // Pretend there are no nested footers so as to not move them. |
| 1256 | break :footer .none; |
| 1233 | 1257 | } |
| 1234 | | break :first_footer footer_ni; |
| 1258 | break :footer ni.firstFooter(mf); |
| 1235 | 1259 | }; |
| 1236 | 1260 | |
| 1237 | | // This is the first footer *inside* of `ni` (unrelated to the fact that `ni` is itself |
| 1238 | | // a footer within its parent). |
| 1239 | | const first_sub_footer_oni = ni.firstFooter(mf); |
| 1240 | | const sub_footers_size = size: { |
| 1241 | | const first_sub_footer_ni = first_sub_footer_oni.unwrap() orelse break :size 0; |
| 1242 | | const first_sub_footer_offset, _ = first_sub_footer_ni.location(mf).resolve(mf); |
| 1243 | | break :size old_size - first_sub_footer_offset; |
| 1261 | // We have two different strategies for growing a footer node, with different advantages |
| 1262 | // and disadvantages; so first we must decide which to use. |
| 1263 | const strat: union(enum) { |
| 1264 | /// Expand into pre-footer padding space in the parent node (growing the parent if |
| 1265 | /// necessary). This strategy has the benefit that it can reclaim padding bytes in |
| 1266 | /// the parent, but it has the disadvantage that it requires moving this node's |
| 1267 | /// existing content backwards in the file, which may be expensive (particularly |
| 1268 | /// since the src and dest ranges are likely to overlap). |
| 1269 | grow_backwards, |
| 1270 | |
| 1271 | /// Grow the parent node with `GrowOptions.move_footers` set to `false`, and |
| 1272 | /// implicitly grow ourselves into the newly available space. This usually requires |
| 1273 | /// a lot less moving of bytes, but never reclaims unused space before the parent's |
| 1274 | /// footers, and is sometimes straight-up impossible. |
| 1275 | grow_parent_at_end: struct { |
| 1276 | add_size: u64, |
| 1277 | exact_size: bool, |
| 1278 | }, |
| 1279 | } = strat: { |
| 1280 | // If this node is small, the move overhead is trivial, so prefer `.grow_backwards` |
| 1281 | // to avoid unnecessary growth of the parent node. |
| 1282 | if (old_size <= mf.flags.block_size.toByteUnits() * 2) { |
| 1283 | break :strat .grow_backwards; |
| 1284 | } |
| 1285 | |
| 1286 | // It may also be worth doing `.grow_backwards` if the parent has a *lot* of space |
| 1287 | // we could grow into. More specifically, if "free space we can grow into" makes up |
| 1288 | // a significant proportion of the parent's total size, then that implies the parent |
| 1289 | // has quite poor utilization of space, *and* that we can significantly improve that |
| 1290 | // statistic by growing into that space. |
| 1291 | if (old_size + mf.availableFooterCapacity(parent_ni) >= new_size) { |
| 1292 | break :strat .grow_backwards; |
| 1293 | } |
| 1294 | |
| 1295 | if (grow_options.exact_size) { |
| 1296 | const add_size = new_size - old_size; |
| 1297 | if (parent_ni.alignment(mf).check(add_size)) { |
| 1298 | break :strat .{ .grow_parent_at_end = .{ |
| 1299 | .add_size = add_size, |
| 1300 | .exact_size = true, |
| 1301 | } }; |
| 1302 | } else { |
| 1303 | // We *can't* ask the parent to grow by this much, so we have no choice. |
| 1304 | break :strat .grow_backwards; |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | if (parent_ni.alignment(mf).compare(.lt, node.flags.alignment)) { |
| 1309 | // Because the parent's alignment is less than our own, if we gave them the |
| 1310 | // freedom to pick a size, they might choose one which results in *us* having a |
| 1311 | // size incompatible with our alignment. Therefore, to prevent that, we need to |
| 1312 | // request an *exact* size from the parent in this case. |
| 1313 | break :strat .{ .grow_parent_at_end = .{ |
| 1314 | .add_size = new_size - old_size, |
| 1315 | .exact_size = true, |
| 1316 | } }; |
| 1317 | } |
| 1318 | |
| 1319 | // The parent's alignment is greater than or equal to our own, so we only need to |
| 1320 | // give the parent a *minimum* size (although we need to ensure it matches their |
| 1321 | // alignment since it could be greater than our own). |
| 1322 | break :strat .{ .grow_parent_at_end = .{ |
| 1323 | .add_size = parent_ni.alignment(mf).forward(new_size - old_size), |
| 1324 | .exact_size = false, |
| 1325 | } }; |
| 1244 | 1326 | }; |
| 1245 | 1327 | |
| 1246 | | _, const parent_size = parent_ni.location(mf).resolve(mf); |
| 1328 | switch (strat) { |
| 1329 | .grow_backwards => { |
| 1330 | // First, we might need to grow the parent to make enough space. |
| 1331 | { |
| 1332 | const available_size = mf.availableFooterCapacity(parent_ni); |
| 1333 | if (old_size + available_size < new_size) { |
| 1334 | _, const old_parent_size: u64 = parent_ni.location(mf).resolve(mf); |
| 1335 | const min_parent_size = old_parent_size + (new_size - old_size - available_size); |
| 1336 | const new_parent_size = parent_ni.alignment(mf).forward( |
| 1337 | min_parent_size +| min_parent_size / growth_factor, |
| 1338 | ); |
| 1339 | try mf.growNode(gpa, parent_ni, new_parent_size, .{ |
| 1340 | .exact_size = false, |
| 1341 | .move_footers = true, |
| 1342 | }); |
| 1343 | assert(old_size + mf.availableFooterCapacity(parent_ni) >= new_size); |
| 1344 | } |
| 1345 | } |
| 1247 | 1346 | |
| 1248 | | const old_footers_size = parent_size - first_footer_ni.location(mf).resolve(mf)[0]; |
| 1249 | | const new_footers_size = old_footers_size - old_size + new_size; |
| 1250 | | |
| 1251 | | // Shift ourselves, and any footer before us, backwards. Unlike header nodes, this node |
| 1252 | | // itself needs to shift its contents, because our offset was shifted backwards by |
| 1253 | | // `new_size - old_size`, and the added bytes should go at the end of this footer node. |
| 1254 | | // However, if we *contain* any footer nodes, they need to stay at the end of `ni`, so |
| 1255 | | // we *shouldn't* shift *that* data. |
| 1256 | | const old_footers_start = parent_size - old_footers_size; |
| 1257 | | const new_footers_start = parent_size - new_footers_size; |
| 1258 | | const end_offset = node.location().resolve(mf)[0] + old_size; |
| 1259 | | const parent_file_offset = parent_ni.fileLocation(mf, false).offset; |
| 1260 | | try mf.moveRange( |
| 1261 | | parent_file_offset + old_footers_start, |
| 1262 | | parent_file_offset + new_footers_start, |
| 1263 | | end_offset - old_footers_start - sub_footers_size, |
| 1264 | | ); |
| 1347 | // Now we need to grow! To do that, we must move `ni` itself, and every footer |
| 1348 | // before it in `parent_ni`, backwards. Unlike header nodes, `ni` is included in |
| 1349 | // the shift, because the bytes we're adding need to go at the *end* of `ni` |
| 1350 | // rather than its start. |
| 1351 | |
| 1352 | // This is the same as `parent_ni.firstFooter(mf)`, it's just more efficient to |
| 1353 | // start at `ni` than to start at `parent_ni.last(mf)`. |
| 1354 | const first_parent_footer_ni: Node.Index = first_footer: { |
| 1355 | var footer_ni = ni; |
| 1356 | while (true) { |
| 1357 | const prev_ni = footer_ni.prev(mf).unwrap() orelse break; |
| 1358 | if (prev_ni.position(mf) != .footer) break; |
| 1359 | footer_ni = prev_ni; |
| 1360 | } |
| 1361 | break :first_footer footer_ni; |
| 1362 | }; |
| 1265 | 1363 | |
| 1266 | | // Update our own offset and size: |
| 1267 | | try ni.setLocation(mf, gpa, end_offset - new_size, new_size); |
| 1364 | const shift = new_size - old_size; |
| 1268 | 1365 | |
| 1269 | | // Any footers inside of us have had their offsets changed due to us growing: |
| 1270 | | if (first_sub_footer_oni.unwrap()) |first_sub_footer_ni| { |
| 1271 | | var cur_ni = first_sub_footer_ni; |
| 1272 | | while (true) { |
| 1273 | | const old_sub_footer_offset, const sub_footer_size = cur_ni.location(mf).resolve(mf); |
| 1274 | | try cur_ni.setLocation( |
| 1366 | // Update our own offset and size: |
| 1367 | try ni.setLocation( |
| 1275 | 1368 | mf, |
| 1276 | 1369 | gpa, |
| 1277 | | old_sub_footer_offset + (new_size - old_size), |
| 1278 | | sub_footer_size, |
| 1370 | node.location().resolve(mf)[0] - shift, |
| 1371 | new_size, |
| 1279 | 1372 | ); |
| 1280 | | cur_ni = cur_ni.next(mf).unwrap() orelse break; |
| 1281 | | } |
| 1282 | | } |
| 1283 | 1373 | |
| 1284 | | // Finally, update the offsets of every footer before us: |
| 1285 | | if (node.prev.unwrap()) |prev_ni| { |
| 1286 | | var maybe_footer_ni = prev_ni; |
| 1287 | | while (true) { |
| 1288 | | switch (maybe_footer_ni.position(mf)) { |
| 1289 | | .header, .floating => break, |
| 1290 | | .footer => {}, |
| 1374 | // Any footers *inside* of `ni` have had their offsets changed, because they are |
| 1375 | // now positioned at the *new* end of `ni`: |
| 1376 | { |
| 1377 | var footer_oni = first_sub_footer_oni; |
| 1378 | while (footer_oni.unwrap()) |footer_ni| : (footer_oni = footer_ni.next(mf)) { |
| 1379 | const old_footer_offset, const footer_size = footer_ni.location(mf).resolve(mf); |
| 1380 | try footer_ni.setLocation(mf, gpa, old_footer_offset + shift, footer_size); |
| 1381 | } |
| 1291 | 1382 | } |
| 1292 | | const moved_footer_offset, const moved_footer_size = maybe_footer_ni.location(mf).resolve(mf); |
| 1293 | | try maybe_footer_ni.setLocation( |
| 1383 | |
| 1384 | // Any footers *before* `ni` (in `parent_ni`) have been shifted backwards. We'll |
| 1385 | // also be moving their actual bytes in a moment, so track whether they have |
| 1386 | // content (if nothing does then we'll be able to skip the `moveRange`). That |
| 1387 | // flag is initially whether `ni` has content because we're shifting our own |
| 1388 | // bytes backwards too. |
| 1389 | var moved_has_content: bool = node.flags.has_content; |
| 1390 | { |
| 1391 | var footer_ni = first_parent_footer_ni; |
| 1392 | while (footer_ni != ni) : (footer_ni = footer_ni.next(mf).unwrap().?) { |
| 1393 | moved_has_content = moved_has_content or footer_ni.get(mf).flags.has_content; |
| 1394 | const old_footer_offset, const footer_size = footer_ni.location(mf).resolve(mf); |
| 1395 | try footer_ni.setLocation(mf, gpa, old_footer_offset - shift, footer_size); |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | if (moved_has_content) { |
| 1400 | // We moved at least one thing containing initialized bytes, so we need to |
| 1401 | // move the actual data. However, we should *not* move the bytes of any |
| 1402 | // nested footers inside of `ni`, because they've been "moved" to the end |
| 1403 | // of our new size, which is the same file location as before. |
| 1404 | const sub_footers_size = size: { |
| 1405 | const first_sub_footer_ni = first_sub_footer_oni.unwrap() orelse break :size 0; |
| 1406 | const first_sub_footer_offset, _ = first_sub_footer_ni.location(mf).resolve(mf); |
| 1407 | break :size new_size - first_sub_footer_offset; |
| 1408 | }; |
| 1409 | const new_offset: u64, _ = node.location().resolve(mf); |
| 1410 | const new_footers_offset: u64, _ = first_parent_footer_ni.location(mf).resolve(mf); |
| 1411 | const parent_file_offset = parent_ni.fileLocation(mf, false).offset; |
| 1412 | try mf.moveRange( |
| 1413 | parent_file_offset + new_footers_offset + shift, |
| 1414 | parent_file_offset + new_footers_offset, |
| 1415 | (new_offset - new_footers_offset) + // accounts for every footer before `ni` |
| 1416 | (old_size - sub_footers_size), // accounts for `ni` itself, excluding nested footers |
| 1417 | ); |
| 1418 | } |
| 1419 | }, |
| 1420 | .grow_parent_at_end => |grow_parent| { |
| 1421 | _, const old_parent_size: u64 = parent_ni.location(mf).resolve(mf); |
| 1422 | try mf.growNode(gpa, parent_ni, old_parent_size + grow_parent.add_size, .{ |
| 1423 | .exact_size = grow_parent.exact_size, |
| 1424 | .move_footers = false, |
| 1425 | }); |
| 1426 | _, const new_parent_size: u64 = parent_ni.location(mf).resolve(mf); |
| 1427 | const shift = new_parent_size - old_parent_size; |
| 1428 | |
| 1429 | // Here's what we have left to do: |
| 1430 | // |
| 1431 | // * Increase our own size by `shift` to absorb the added space. |
| 1432 | // |
| 1433 | // * If there are any footers *inside* `ni`, increase their offsets by `shift`. |
| 1434 | // |
| 1435 | // * If there are any footers *after* `ni` (inside `parent_ni`), increase their |
| 1436 | // offsets by `shift`. |
| 1437 | // |
| 1438 | // * Do a `moveRange` corresponding to those offset changes. This is a single |
| 1439 | // range which starts at the footers *inside* `ni`. |
| 1440 | |
| 1441 | const actual_new_size = old_size + shift; |
| 1442 | if (grow_options.exact_size) { |
| 1443 | assert(actual_new_size == new_size); |
| 1444 | } |
| 1445 | |
| 1446 | try ni.setLocation( |
| 1294 | 1447 | mf, |
| 1295 | 1448 | gpa, |
| 1296 | | moved_footer_offset + old_size - new_size, |
| 1297 | | moved_footer_size, |
| 1449 | node.location().resolve(mf)[0], |
| 1450 | actual_new_size, |
| 1298 | 1451 | ); |
| 1299 | | maybe_footer_ni = maybe_footer_ni.prev(mf).unwrap() orelse break; |
| 1300 | | } |
| 1301 | | } |
| 1302 | 1452 | |
| 1303 | | return; |
| 1453 | // This will track whether any node with a changed offset actually contains |
| 1454 | // initialized bytes. If not, there'll be no need to call `moveRange`. |
| 1455 | var moved_has_content: bool = false; |
| 1456 | |
| 1457 | // Set any nested footers' offsets (and include them in `moved_has_content`). |
| 1458 | { |
| 1459 | var footer_oni = first_sub_footer_oni; |
| 1460 | while (footer_oni.unwrap()) |footer_ni| : (footer_oni = footer_ni.next(mf)) { |
| 1461 | assert(footer_ni.position(mf) == .footer); |
| 1462 | moved_has_content = moved_has_content or footer_ni.get(mf).flags.has_content; |
| 1463 | const footer_old_offset: u64, const footer_size: u64 = footer_ni.location(mf).resolve(mf); |
| 1464 | try footer_ni.setLocation(mf, gpa, footer_old_offset + shift, footer_size); |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | // Now set offsets for footers after `ni` inside of `parent_ni`. |
| 1469 | { |
| 1470 | var footer_oni = ni.next(mf); |
| 1471 | while (footer_oni.unwrap()) |footer_ni| : (footer_oni = footer_ni.next(mf)) { |
| 1472 | assert(footer_ni.position(mf) == .footer); |
| 1473 | moved_has_content = moved_has_content or footer_ni.get(mf).flags.has_content; |
| 1474 | const footer_old_offset: u64, const footer_size: u64 = footer_ni.location(mf).resolve(mf); |
| 1475 | try footer_ni.setLocation(mf, gpa, footer_old_offset + shift, footer_size); |
| 1476 | } |
| 1477 | } |
| 1478 | |
| 1479 | if (moved_has_content) { |
| 1480 | // We moved at least one footer containing initialized bytes, so we need to |
| 1481 | // move the actual data. Compute how big the footers inside `ni` are... |
| 1482 | const sub_footers_size: u64 = size: { |
| 1483 | const first_sub_footer_ni = first_sub_footer_oni.unwrap() orelse break :size 0; |
| 1484 | const first_sub_footer_offset, _ = first_sub_footer_ni.location(mf).resolve(mf); |
| 1485 | // `actual_new_size` is used here since we already updated the nested footers' offsets above. |
| 1486 | break :size actual_new_size - first_sub_footer_offset; |
| 1487 | }; |
| 1488 | // ...and how big the footers *after* `ni`, inside `parent_ni`, are... |
| 1489 | const post_footers_size: u64 = old_parent_size - (old_offset + old_size); |
| 1490 | // ...and move them both. |
| 1491 | const parent_file_off = parent_ni.fileLocation(mf, false).offset; |
| 1492 | const total_move_size = sub_footers_size + post_footers_size; |
| 1493 | assert(total_move_size != 0); |
| 1494 | try mf.moveRange( |
| 1495 | parent_file_off + old_parent_size - total_move_size, |
| 1496 | parent_file_off + new_parent_size - total_move_size, |
| 1497 | total_move_size, |
| 1498 | ); |
| 1499 | } |
| 1500 | }, |
| 1501 | } |
| 1304 | 1502 | }, |
| 1305 | 1503 | } |
| 1306 | 1504 | } |
| ... | ... | @@ -1320,7 +1518,7 @@ fn growFloatingNodeWithAlignment( |
| 1320 | 1518 | ni: Node.Index, |
| 1321 | 1519 | new_alignment: ?Alignment, |
| 1322 | 1520 | new_size: u64, |
| 1323 | | grow_mode: GrowMode, |
| 1521 | grow_options: GrowOptions, |
| 1324 | 1522 | ) Error!void { |
| 1325 | 1523 | mf.nodes_lock.assertUnlocked(); |
| 1326 | 1524 | |
| ... | ... | @@ -1347,27 +1545,29 @@ fn growFloatingNodeWithAlignment( |
| 1347 | 1545 | } |
| 1348 | 1546 | // Great, we can grow this node without changing its offset or moving any siblings. |
| 1349 | 1547 | try ni.setLocation(mf, gpa, old_offset, new_size); |
| 1350 | | // If we have any footers, we need to move them to the end of our new size, and update their |
| 1351 | | // offsets accordingly. |
| 1352 | | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1353 | | var cur_ni = first_footer_ni; |
| 1354 | | var footers_have_content = false; |
| 1355 | | while (true) { |
| 1356 | | footers_have_content = footers_have_content or cur_ni.get(mf).flags.has_content; |
| 1357 | | const old_footer_offset, const footer_size = cur_ni.location(mf).resolve(mf); |
| 1358 | | try cur_ni.setLocation(mf, gpa, old_footer_offset + (new_size - old_size), footer_size); |
| 1359 | | cur_ni = cur_ni.next(mf).unwrap() orelse break; |
| 1360 | | } |
| 1361 | | if (footers_have_content) { |
| 1362 | | const parent_file_off = parent_ni.fileLocation(mf, false).offset; |
| 1363 | | // This gets the *new* offset because we already updated the offsets above. |
| 1364 | | const new_footers_offset, _ = first_footer_ni.location(mf).resolve(mf); |
| 1365 | | const footers_size = new_size - new_footers_offset; |
| 1366 | | try mf.moveRange( |
| 1367 | | parent_file_off + old_offset + old_size - footers_size, |
| 1368 | | parent_file_off + old_offset + new_size - footers_size, |
| 1369 | | footers_size, |
| 1370 | | ); |
| 1548 | if (grow_options.move_footers) { |
| 1549 | // If we have any footers, we need to move them to the end of our new size, and update |
| 1550 | // their offsets accordingly. |
| 1551 | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1552 | var cur_ni = first_footer_ni; |
| 1553 | var footers_have_content = false; |
| 1554 | while (true) { |
| 1555 | footers_have_content = footers_have_content or cur_ni.get(mf).flags.has_content; |
| 1556 | const old_footer_offset, const footer_size = cur_ni.location(mf).resolve(mf); |
| 1557 | try cur_ni.setLocation(mf, gpa, old_footer_offset + (new_size - old_size), footer_size); |
| 1558 | cur_ni = cur_ni.next(mf).unwrap() orelse break; |
| 1559 | } |
| 1560 | if (footers_have_content) { |
| 1561 | const parent_file_off = parent_ni.fileLocation(mf, false).offset; |
| 1562 | // This gets the *new* offset because we already updated the offsets above. |
| 1563 | const new_footers_offset, _ = first_footer_ni.location(mf).resolve(mf); |
| 1564 | const footers_size = new_size - new_footers_offset; |
| 1565 | try mf.moveRange( |
| 1566 | parent_file_off + old_offset + old_size - footers_size, |
| 1567 | parent_file_off + old_offset + new_size - footers_size, |
| 1568 | footers_size, |
| 1569 | ); |
| 1570 | } |
| 1371 | 1571 | } |
| 1372 | 1572 | } |
| 1373 | 1573 | return; |
| ... | ... | @@ -1444,11 +1644,14 @@ fn growFloatingNodeWithAlignment( |
| 1444 | 1644 | // that, let's first try the Linux "insert range" fast path. We didn't try it before now |
| 1445 | 1645 | // because it would have been more efficient to just move ourselves into existing space. |
| 1446 | 1646 | // |
| 1447 | | // If we were given a custom alignment, we cannot pass `grow_mode` directly into the |
| 1647 | // If we were given a custom alignment, we need to set `GrowOptions.exact_size` for the |
| 1448 | 1648 | // "insert range" path, because that function is unaware of `new_alignment`. |
| 1449 | | const sub_grow_mode: GrowMode = if (new_alignment == null) grow_mode else .exact; |
| 1649 | const insert_range_grow_options: GrowOptions = .{ |
| 1650 | .exact_size = grow_options.exact_size or new_alignment != null, |
| 1651 | .move_footers = grow_options.move_footers, |
| 1652 | }; |
| 1450 | 1653 | if (alignment.check(old_offset) and |
| 1451 | | try mf.growNodeViaInsertRange(gpa, ni, new_size, sub_grow_mode)) |
| 1654 | try mf.growNodeViaInsertRange(gpa, ni, new_size, insert_range_grow_options)) |
| 1452 | 1655 | { |
| 1453 | 1656 | // The Linux fast path did our job for us! |
| 1454 | 1657 | return; |
| ... | ... | @@ -1458,7 +1661,10 @@ fn growFloatingNodeWithAlignment( |
| 1458 | 1661 | const new_parent_size = parent_ni.alignment(mf).forward( |
| 1459 | 1662 | min_parent_size +| min_parent_size / growth_factor, |
| 1460 | 1663 | ); |
| 1461 | | try mf.growNode(gpa, parent_ni, new_parent_size, .minimum); |
| 1664 | try mf.growNode(gpa, parent_ni, new_parent_size, .{ |
| 1665 | .exact_size = false, |
| 1666 | .move_footers = true, |
| 1667 | }); |
| 1462 | 1668 | } |
| 1463 | 1669 | |
| 1464 | 1670 | break :new_loc .{ |
| ... | ... | @@ -1471,6 +1677,10 @@ fn growFloatingNodeWithAlignment( |
| 1471 | 1677 | |
| 1472 | 1678 | // Footers need to move to a different place than the rest of our content. |
| 1473 | 1679 | const footers_size: u64, const footers_have_content: bool = footers: { |
| 1680 | if (!grow_options.move_footers) { |
| 1681 | // Pretend there are no footers so as to not move them. |
| 1682 | break :footers .{ 0, false }; |
| 1683 | } |
| 1474 | 1684 | const first_footer_ni = ni.firstFooter(mf).unwrap() orelse { |
| 1475 | 1685 | break :footers .{ 0, false }; |
| 1476 | 1686 | }; |
| ... | ... | @@ -1525,15 +1735,14 @@ fn growFloatingNodeWithAlignment( |
| 1525 | 1735 | /// If this strategy is inapplicable or unsuitable for this operation, this function returns `false` |
| 1526 | 1736 | /// without changing any nodes' locations or invalidating any slices. |
| 1527 | 1737 | /// |
| 1528 | | /// Otherwise, this function grows `ni` to `new_size`, updates the location of `ni` and every node |
| 1529 | | /// whose offset has changed, and returns `true`. Like in `growNode`, if `grow_mode` is `.minimum`, |
| 1530 | | /// the actual new size of `ni` may be greater than `new_size`. |
| 1738 | /// Otherwise, this function grows `ni` to `new_size` (maybe larger if `!grow_options.exact_size`), |
| 1739 | /// updates the location of `ni` and every node whose offset has changed, and returns `true`. |
| 1531 | 1740 | fn growNodeViaInsertRange( |
| 1532 | 1741 | mf: *MappedFile, |
| 1533 | 1742 | gpa: Allocator, |
| 1534 | 1743 | ni: Node.Index, |
| 1535 | 1744 | new_size: u64, |
| 1536 | | grow_mode: GrowMode, |
| 1745 | grow_options: GrowOptions, |
| 1537 | 1746 | ) Error!bool { |
| 1538 | 1747 | if (!is_linux or mf.flags.fallocate_insert_range_unsupported) { |
| 1539 | 1748 | return false; |
| ... | ... | @@ -1541,24 +1750,22 @@ fn growNodeViaInsertRange( |
| 1541 | 1750 | |
| 1542 | 1751 | _, const old_size = ni.location(mf).resolve(mf); |
| 1543 | 1752 | |
| 1544 | | // We don't compute the size of the range yet, because depending on `grow_mode` we might want to |
| 1545 | | // bump it based on our sibling and parent nodes' alignments. However, we can do an early check |
| 1546 | | // for cases where we should obviously exit. |
| 1753 | // We don't compute the size of the range yet, because depending on `grow_options` we might want |
| 1754 | // to bump it based on our sibling and parent nodes' alignments. However, we can do an early |
| 1755 | // check for cases where we should obviously exit. |
| 1547 | 1756 | const min_range_size: u64 = s: { |
| 1548 | | const exact_size = new_size - old_size; |
| 1549 | | if (mf.flags.block_size.check(exact_size)) { |
| 1550 | | break :s exact_size; |
| 1551 | | } |
| 1552 | | switch (grow_mode) { |
| 1553 | | .exact => return false, |
| 1554 | | .minimum => if (exact_size >= mf.flags.block_size.toByteUnits() * 2) { |
| 1555 | | // We're growing by at least a few blocks, so allow ourselves to bump the size |
| 1556 | | // slightly to give it the needed alignment. |
| 1557 | | break :s mf.flags.block_size.forward(exact_size); |
| 1558 | | } else { |
| 1559 | | return false; |
| 1560 | | }, |
| 1757 | const requested_size = new_size - old_size; |
| 1758 | if (mf.flags.block_size.check(requested_size)) { |
| 1759 | break :s requested_size; |
| 1760 | } |
| 1761 | if (!grow_options.exact_size and |
| 1762 | requested_size >= mf.flags.block_size.toByteUnits() * 2) |
| 1763 | { |
| 1764 | // We're growing by at least a few blocks, so allow ourselves to bump the size |
| 1765 | // slightly to give it the needed alignment. |
| 1766 | break :s mf.flags.block_size.forward(requested_size); |
| 1561 | 1767 | } |
| 1768 | return false; |
| 1562 | 1769 | }; |
| 1563 | 1770 | assert(min_range_size > 0); |
| 1564 | 1771 | assert(mf.flags.block_size.check(min_range_size)); |
| ... | ... | @@ -1573,14 +1780,17 @@ fn growNodeViaInsertRange( |
| 1573 | 1780 | } |
| 1574 | 1781 | break :range_file_offset range_file_offset; |
| 1575 | 1782 | }; |
| 1576 | | const first_footer_oni = ni.firstFooter(mf); |
| 1577 | | const footers_size: u64 = if (first_footer_oni.unwrap()) |first_footer_ni| size: { |
| 1783 | const pre_footer_oni: Node.Index.Optional, const footers_size: u64 = footers: { |
| 1784 | if (!grow_options.move_footers) { |
| 1785 | // Pretend there are no footers so as to not move them. |
| 1786 | break :footers .{ .wrap(last_ni), 0 }; |
| 1787 | } |
| 1788 | const first_footer_ni = ni.firstFooter(mf).unwrap() orelse { |
| 1789 | break :footers .{ .wrap(last_ni), 0 }; |
| 1790 | }; |
| 1578 | 1791 | const first_footer_offset, _ = first_footer_ni.location(mf).resolve(mf); |
| 1579 | | break :size old_size - first_footer_offset; |
| 1580 | | } else 0; |
| 1581 | | const pre_footer_oni: Node.Index.Optional = if (first_footer_oni.unwrap()) |first_footer_ni| pre_footer: { |
| 1582 | | break :pre_footer first_footer_ni.prev(mf); |
| 1583 | | } else .wrap(last_ni); |
| 1792 | break :footers .{ first_footer_ni.prev(mf), old_size - first_footer_offset }; |
| 1793 | }; |
| 1584 | 1794 | const pre_footer_end: u64 = if (pre_footer_oni.unwrap()) |pre_footer_ni| end: { |
| 1585 | 1795 | const pre_footer_off, const pre_footer_size = pre_footer_ni.location(mf).resolve(mf); |
| 1586 | 1796 | break :end pre_footer_off + pre_footer_size; |
| ... | ... | @@ -1634,18 +1844,14 @@ fn growNodeViaInsertRange( |
| 1634 | 1844 | break :range_size min_range_size; |
| 1635 | 1845 | } |
| 1636 | 1846 | // Perhaps we're allowed to grow by more than `min_range_size`? |
| 1637 | | switch (grow_mode) { |
| 1638 | | .exact => return false, |
| 1639 | | .minimum => { |
| 1640 | | const candidate_range_size = need_range_align.forward(min_range_size); |
| 1641 | | // Allow growing by up to 50% more than was requested. |
| 1642 | | if (candidate_range_size <= min_range_size +| min_range_size / 2) { |
| 1643 | | break :range_size candidate_range_size; |
| 1644 | | } else { |
| 1645 | | return false; |
| 1646 | | } |
| 1647 | | }, |
| 1847 | const candidate_range_size = need_range_align.forward(min_range_size); |
| 1848 | if (!grow_options.exact_size and |
| 1849 | // Allow growing by up to 50% more than was requested. |
| 1850 | candidate_range_size <= min_range_size +| min_range_size / 2) |
| 1851 | { |
| 1852 | break :range_size candidate_range_size; |
| 1648 | 1853 | } |
| 1854 | return false; |
| 1649 | 1855 | }; |
| 1650 | 1856 | |
| 1651 | 1857 | // This `range_size` is compatible with everyone's alignment requirements, and we won't move too |
| ... | ... | @@ -1723,13 +1929,15 @@ fn growNodeViaInsertRange( |
| 1723 | 1929 | cur_ni = cur_ni.parent(mf).unwrap() orelse break; |
| 1724 | 1930 | } |
| 1725 | 1931 | |
| 1726 | | // The only thing left is to update the offsets of any footers inside of `ni`. |
| 1727 | | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1728 | | var footer_ni = first_footer_ni; |
| 1729 | | while (true) { |
| 1730 | | const old_footer_offset, const footer_size = footer_ni.location(mf).resolve(mf); |
| 1731 | | try footer_ni.setLocation(mf, gpa, old_footer_offset + range_size, footer_size); |
| 1732 | | footer_ni = footer_ni.next(mf).unwrap() orelse break; |
| 1932 | if (grow_options.move_footers) { |
| 1933 | // The only thing left is to update the offsets of any footers inside of `ni`. |
| 1934 | if (ni.firstFooter(mf).unwrap()) |first_footer_ni| { |
| 1935 | var footer_ni = first_footer_ni; |
| 1936 | while (true) { |
| 1937 | const old_footer_offset, const footer_size = footer_ni.location(mf).resolve(mf); |
| 1938 | try footer_ni.setLocation(mf, gpa, old_footer_offset + range_size, footer_size); |
| 1939 | footer_ni = footer_ni.next(mf).unwrap() orelse break; |
| 1940 | } |
| 1733 | 1941 | } |
| 1734 | 1942 | } |
| 1735 | 1943 | |
| ... | ... | @@ -1783,7 +1991,10 @@ fn ensureAdditionalHeaderCapacity( |
| 1783 | 1991 | const new_parent_size = parent_ni.alignment(mf).forward( |
| 1784 | 1992 | min_parent_size +| min_parent_size / growth_factor, |
| 1785 | 1993 | ); |
| 1786 | | try mf.growNode(gpa, parent_ni, new_parent_size, .minimum); |
| 1994 | try mf.growNode(gpa, parent_ni, new_parent_size, .{ |
| 1995 | .exact_size = false, |
| 1996 | .move_footers = true, |
| 1997 | }); |
| 1787 | 1998 | } |
| 1788 | 1999 | return; |
| 1789 | 2000 | }; |
| ... | ... | @@ -1865,7 +2076,10 @@ fn ensureAdditionalHeaderCapacity( |
| 1865 | 2076 | const new_parent_size = parent_ni.alignment(mf).forward( |
| 1866 | 2077 | min_parent_size +| min_parent_size / growth_factor, |
| 1867 | 2078 | ); |
| 1868 | | try mf.growNode(gpa, parent_ni, new_parent_size, .minimum); |
| 2079 | try mf.growNode(gpa, parent_ni, new_parent_size, .{ |
| 2080 | .exact_size = false, |
| 2081 | .move_footers = true, |
| 2082 | }); |
| 1869 | 2083 | } |
| 1870 | 2084 | |
| 1871 | 2085 | if (moving_has_content) { |
| ... | ... | @@ -1895,48 +2109,27 @@ fn ensureAdditionalHeaderCapacity( |
| 1895 | 2109 | } |
| 1896 | 2110 | } |
| 1897 | 2111 | |
| 1898 | | /// Ensures that `parent_ni` has at least `extra_capacity` padding bytes preceding its current |
| 1899 | | /// footers, so that the footers can grow into that space. |
| 1900 | | fn ensureAdditionalFooterCapacity( |
| 1901 | | mf: *MappedFile, |
| 1902 | | gpa: Allocator, |
| 1903 | | parent_ni: Node.Index, |
| 1904 | | extra_capacity: u64, |
| 1905 | | ) Error!void { |
| 1906 | | // This is way easier than the header case, because we don't need to actually move anything; we |
| 1907 | | // just need to expand the parent if there isn't space, and that will add padding after the |
| 1908 | | // parent's floating children, which is exactly where we want it. |
| 1909 | | |
| 2112 | /// Returns how many padding bytes `parent_ni` currently has directly preceding its footers, which |
| 2113 | /// footers can therefore grow into. |
| 2114 | fn availableFooterCapacity(mf: *const MappedFile, parent_ni: Node.Index) u64 { |
| 1910 | 2115 | const first_footer_oni = parent_ni.firstFooter(mf); |
| 1911 | 2116 | |
| 1912 | | _, const parent_size = parent_ni.location(mf).resolve(mf); |
| 1913 | | |
| 1914 | | const footers_size: u64 = footers_size: { |
| 1915 | | const first_footer_ni = first_footer_oni.unwrap() orelse break :footers_size 0; |
| 2117 | const before_footers_oni: Node.Index.Optional, const footers_off: u64 = footers: { |
| 2118 | const first_footer_ni = first_footer_oni.unwrap() orelse { |
| 2119 | _, const parent_size = parent_ni.location(mf).resolve(mf); |
| 2120 | break :footers .{ parent_ni.last(mf), parent_size }; |
| 2121 | }; |
| 1916 | 2122 | const first_footer_off, _ = first_footer_ni.location(mf).resolve(mf); |
| 1917 | | break :footers_size parent_size - first_footer_off; |
| 2123 | break :footers .{ first_footer_ni.prev(mf), first_footer_off }; |
| 1918 | 2124 | }; |
| 1919 | 2125 | |
| 1920 | 2126 | const header_and_floating_end: u64 = end: { |
| 1921 | | const before_footers_oni = if (first_footer_oni.unwrap()) |first_footer_ni| before_footers: { |
| 1922 | | break :before_footers first_footer_ni.prev(mf); |
| 1923 | | } else before_footers: { |
| 1924 | | break :before_footers parent_ni.last(mf); |
| 1925 | | }; |
| 1926 | 2127 | const before_footers_ni = before_footers_oni.unwrap() orelse break :end 0; |
| 1927 | 2128 | const offset, const size = before_footers_ni.location(mf).resolve(mf); |
| 1928 | 2129 | break :end offset + size; |
| 1929 | 2130 | }; |
| 1930 | 2131 | |
| 1931 | | assert(header_and_floating_end + footers_size <= parent_size); |
| 1932 | | |
| 1933 | | const min_parent_size = header_and_floating_end + footers_size + extra_capacity; |
| 1934 | | if (parent_size < min_parent_size) { |
| 1935 | | const new_parent_size = parent_ni.alignment(mf).forward( |
| 1936 | | min_parent_size +| min_parent_size / growth_factor, |
| 1937 | | ); |
| 1938 | | try mf.growNode(gpa, parent_ni, new_parent_size, .minimum); |
| 1939 | | } |
| 2132 | return footers_off - header_and_floating_end; |
| 1940 | 2133 | } |
| 1941 | 2134 | |
| 1942 | 2135 | fn removeNodesFromChildList( |
| ... | ... | @@ -2030,7 +2223,7 @@ fn realignNode( |
| 2030 | 2223 | mf: *MappedFile, |
| 2031 | 2224 | gpa: Allocator, |
| 2032 | 2225 | ni: Node.Index, |
| 2033 | | new_alignment: Alignment, |
| 2226 | new_align: Alignment, |
| 2034 | 2227 | ) Error!void { |
| 2035 | 2228 | mf.nodes_lock.assertUnlocked(); |
| 2036 | 2229 | |
| ... | ... | @@ -2038,30 +2231,25 @@ fn realignNode( |
| 2038 | 2231 | |
| 2039 | 2232 | if (ni == .root or ni.position(mf) != .floating) { |
| 2040 | 2233 | // Only this node's size is aligned, not its offset. |
| 2041 | | if (!new_alignment.check(old_size)) { |
| 2042 | | assert(new_alignment.compare(.gt, ni.alignment(mf))); |
| 2043 | | try mf.growNode( |
| 2044 | | gpa, |
| 2045 | | ni, |
| 2046 | | new_alignment.forward(old_size), |
| 2047 | | .exact, // because `growNode` is not aware that the size needs to match `new_alignment` |
| 2048 | | ); |
| 2234 | if (!new_align.check(old_size)) { |
| 2235 | assert(new_align.compare(.gt, ni.alignment(mf))); |
| 2236 | try mf.growNode(gpa, ni, new_align.forward(old_size), .{ |
| 2237 | .exact_size = true, // because `growNode` is not aware that the size needs to match `new_align` |
| 2238 | .move_footers = true, |
| 2239 | }); |
| 2049 | 2240 | } |
| 2050 | 2241 | } else { |
| 2051 | 2242 | // This is a floating node, so its size and offset are both aligned. |
| 2052 | | if (!new_alignment.check(old_offset) or !new_alignment.check(old_size)) { |
| 2053 | | assert(new_alignment.compare(.gt, ni.alignment(mf))); |
| 2054 | | try mf.growFloatingNodeWithAlignment( |
| 2055 | | gpa, |
| 2056 | | ni, |
| 2057 | | new_alignment, |
| 2058 | | new_alignment.forward(old_size), |
| 2059 | | .minimum, |
| 2060 | | ); |
| 2243 | if (!new_align.check(old_offset) or !new_align.check(old_size)) { |
| 2244 | assert(new_align.compare(.gt, ni.alignment(mf))); |
| 2245 | try mf.growFloatingNodeWithAlignment(gpa, ni, new_align, new_align.forward(old_size), .{ |
| 2246 | .exact_size = false, |
| 2247 | .move_footers = true, |
| 2248 | }); |
| 2061 | 2249 | } |
| 2062 | 2250 | } |
| 2063 | 2251 | |
| 2064 | | ni.get(mf).flags.alignment = new_alignment; |
| 2252 | ni.get(mf).flags.alignment = new_align; |
| 2065 | 2253 | } |
| 2066 | 2254 | |
| 2067 | 2255 | fn updateWriters(mf: *MappedFile) void { |