@@ -339,7 +339,8 @@ Error WasmObjectFile::parseSection(WasmSection &Sec) {
339
339
}
340
340
341
341
Error WasmObjectFile::parseDylinkSection (ReadContext &Ctx) {
342
- // See https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
342
+ // Legacy "dylink" section support.
343
+ // See parseDylink0Section for the current "dylink.0" section parsing.
343
344
HasDylinkSection = true ;
344
345
DylinkInfo.MemorySize = readVaruint32 (Ctx);
345
346
DylinkInfo.MemoryAlignment = readVaruint32 (Ctx);
@@ -349,12 +350,58 @@ Error WasmObjectFile::parseDylinkSection(ReadContext &Ctx) {
349
350
while (Count--) {
350
351
DylinkInfo.Needed .push_back (readString (Ctx));
351
352
}
353
+
352
354
if (Ctx.Ptr != Ctx.End )
353
355
return make_error<GenericBinaryError>(" dylink section ended prematurely" ,
354
356
object_error::parse_failed);
355
357
return Error::success ();
356
358
}
357
359
360
+ Error WasmObjectFile::parseDylink0Section (ReadContext &Ctx) {
361
+ // See
362
+ // https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
363
+ HasDylinkSection = true ;
364
+
365
+ const uint8_t *OrigEnd = Ctx.End ;
366
+ while (Ctx.Ptr < OrigEnd) {
367
+ Ctx.End = OrigEnd;
368
+ uint8_t Type = readUint8 (Ctx);
369
+ uint32_t Size = readVaruint32 (Ctx);
370
+ LLVM_DEBUG (dbgs () << " readSubsection type=" << int (Type) << " size=" << Size
371
+ << " \n " );
372
+ Ctx.End = Ctx.Ptr + Size ;
373
+ uint32_t Count;
374
+ switch (Type) {
375
+ case wasm::WASM_DYLINK_MEM_INFO:
376
+ DylinkInfo.MemorySize = readVaruint32 (Ctx);
377
+ DylinkInfo.MemoryAlignment = readVaruint32 (Ctx);
378
+ DylinkInfo.TableSize = readVaruint32 (Ctx);
379
+ DylinkInfo.TableAlignment = readVaruint32 (Ctx);
380
+ break ;
381
+ case wasm::WASM_DYLINK_NEEDED:
382
+ Count = readVaruint32 (Ctx);
383
+ while (Count--) {
384
+ DylinkInfo.Needed .push_back (readString (Ctx));
385
+ }
386
+ break ;
387
+ default :
388
+ return make_error<GenericBinaryError>(" unknown dylink.0 sub-section" ,
389
+ object_error::parse_failed);
390
+ Ctx.Ptr += Size ;
391
+ break ;
392
+ }
393
+ if (Ctx.Ptr != Ctx.End ) {
394
+ return make_error<GenericBinaryError>(
395
+ " dylink.0 sub-section ended prematurely" , object_error::parse_failed);
396
+ }
397
+ }
398
+
399
+ if (Ctx.Ptr != Ctx.End )
400
+ return make_error<GenericBinaryError>(" dylink.0 section ended prematurely" ,
401
+ object_error::parse_failed);
402
+ return Error::success ();
403
+ }
404
+
358
405
Error WasmObjectFile::parseNameSection (ReadContext &Ctx) {
359
406
llvm::DenseSet<uint64_t > SeenFunctions;
360
407
llvm::DenseSet<uint64_t > SeenGlobals;
@@ -984,6 +1031,9 @@ Error WasmObjectFile::parseCustomSection(WasmSection &Sec, ReadContext &Ctx) {
984
1031
if (Sec.Name == " dylink" ) {
985
1032
if (Error Err = parseDylinkSection (Ctx))
986
1033
return Err;
1034
+ } else if (Sec.Name == " dylink.0" ) {
1035
+ if (Error Err = parseDylink0Section (Ctx))
1036
+ return Err;
987
1037
} else if (Sec.Name == " name" ) {
988
1038
if (Error Err = parseNameSection (Ctx))
989
1039
return Err;
@@ -1793,6 +1843,7 @@ int WasmSectionOrderChecker::getSectionOrder(unsigned ID,
1793
1843
case wasm::WASM_SEC_CUSTOM:
1794
1844
return StringSwitch<unsigned >(CustomSectionName)
1795
1845
.Case (" dylink" , WASM_SEC_ORDER_DYLINK)
1846
+ .Case (" dylink.0" , WASM_SEC_ORDER_DYLINK)
1796
1847
.Case (" linking" , WASM_SEC_ORDER_LINKING)
1797
1848
.StartsWith (" reloc." , WASM_SEC_ORDER_RELOC)
1798
1849
.Case (" name" , WASM_SEC_ORDER_NAME)
0 commit comments