Skip to content

Commit 1813fde

Browse files
kateinoigakukunsbc100
authored andcommitted
[WebAssembly] Emit clangast in custom section aligned by 4 bytes
Emit __clangast in custom section instead of named data segment to find it while iterating sections. This could be avoided if all data segements (the wasm sense) were represented as their own sections (in the llvm sense). This can be resolved by WebAssembly/tool-conventions#138 And the on-disk hashtable in clangast needs to be aligned by 4 bytes, so add paddings in name length field in custom section header. The length of clangast section name can be represented in 1 byte by leb128, and possible maximum pads are 3 bytes, so the section name length won't be invalid in theory. Fixes https://bugs.llvm.org/show_bug.cgi?id=35928 Differential Revision: https://reviews.llvm.org/D74531
1 parent 9660563 commit 1813fde

File tree

4 files changed

+83
-20
lines changed

4 files changed

+83
-20
lines changed

clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp

+36-19
Original file line numberDiff line numberDiff line change
@@ -270,25 +270,42 @@ class PCHContainerGenerator : public ASTConsumer {
270270
assert(Buffer->IsComplete && "serialization did not complete");
271271
auto &SerializedAST = Buffer->Data;
272272
auto Size = SerializedAST.size();
273-
auto Int8Ty = llvm::Type::getInt8Ty(*VMContext);
274-
auto *Ty = llvm::ArrayType::get(Int8Ty, Size);
275-
auto *Data = llvm::ConstantDataArray::getString(
276-
*VMContext, StringRef(SerializedAST.data(), Size),
277-
/*AddNull=*/false);
278-
auto *ASTSym = new llvm::GlobalVariable(
279-
*M, Ty, /*constant*/ true, llvm::GlobalVariable::InternalLinkage, Data,
280-
"__clang_ast");
281-
// The on-disk hashtable needs to be aligned.
282-
ASTSym->setAlignment(llvm::Align(8));
283-
284-
// Mach-O also needs a segment name.
285-
if (Triple.isOSBinFormatMachO())
286-
ASTSym->setSection("__CLANG,__clangast");
287-
// COFF has an eight character length limit.
288-
else if (Triple.isOSBinFormatCOFF())
289-
ASTSym->setSection("clangast");
290-
else
291-
ASTSym->setSection("__clangast");
273+
274+
if (Triple.isOSBinFormatWasm()) {
275+
// Emit __clangast in custom section instead of named data segment
276+
// to find it while iterating sections.
277+
// This could be avoided if all data segements (the wasm sense) were
278+
// represented as their own sections (in the llvm sense).
279+
// TODO: https://github.com/WebAssembly/tool-conventions/issues/138
280+
llvm::NamedMDNode *MD =
281+
M->getOrInsertNamedMetadata("wasm.custom_sections");
282+
llvm::Metadata *Ops[2] = {
283+
llvm::MDString::get(*VMContext, "__clangast"),
284+
llvm::MDString::get(*VMContext,
285+
StringRef(SerializedAST.data(), Size))};
286+
auto *NameAndContent = llvm::MDTuple::get(*VMContext, Ops);
287+
MD->addOperand(NameAndContent);
288+
} else {
289+
auto Int8Ty = llvm::Type::getInt8Ty(*VMContext);
290+
auto *Ty = llvm::ArrayType::get(Int8Ty, Size);
291+
auto *Data = llvm::ConstantDataArray::getString(
292+
*VMContext, StringRef(SerializedAST.data(), Size),
293+
/*AddNull=*/false);
294+
auto *ASTSym = new llvm::GlobalVariable(
295+
*M, Ty, /*constant*/ true, llvm::GlobalVariable::InternalLinkage,
296+
Data, "__clang_ast");
297+
// The on-disk hashtable needs to be aligned.
298+
ASTSym->setAlignment(llvm::Align(8));
299+
300+
// Mach-O also needs a segment name.
301+
if (Triple.isOSBinFormatMachO())
302+
ASTSym->setSection("__CLANG,__clangast");
303+
// COFF has an eight character length limit.
304+
else if (Triple.isOSBinFormatCOFF())
305+
ASTSym->setSection("clangast");
306+
else
307+
ASTSym->setSection("__clangast");
308+
}
292309

293310
LLVM_DEBUG({
294311
// Print the IR for the PCH container to the debug output.

clang/test/PCH/pch-wasm.c

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// REQUIRES: webassembly-registered-target
2+
// RUN: %clang_cc1 -triple wasm32-unknown-unknown-wasm -emit-pch -fmodule-format=obj %S/pchpch1.h -o - | llvm-objdump --section-headers - | FileCheck %s
3+
4+
// Ensure that clangast section should be emitted in a section for wasm object file
5+
6+
// CHECK: file format wasm
7+
// CHECK: __clangast {{[0-9a-f]+}} {{[0-9a-f]+}}

llvm/lib/MC/WasmObjectWriter.cpp

+30-1
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ class WasmObjectWriter : public MCObjectWriter {
292292
W->OS << Str;
293293
}
294294

295+
void writeStringWithAlignment(const StringRef Str, unsigned Alignment);
296+
295297
void writeI32(int32_t val) {
296298
char Buffer[4];
297299
support::endian::write32le(Buffer, val);
@@ -362,6 +364,28 @@ void WasmObjectWriter::startSection(SectionBookkeeping &Section,
362364
Section.Index = SectionCount++;
363365
}
364366

367+
// Write a string with extra paddings for trailing alignment
368+
// TODO: support alignment at asm and llvm level?
369+
void WasmObjectWriter::writeStringWithAlignment(const StringRef Str,
370+
unsigned Alignment) {
371+
372+
// Calculate the encoded size of str length and add pads based on it and
373+
// alignment.
374+
raw_null_ostream NullOS;
375+
uint64_t StrSizeLength = encodeULEB128(Str.size(), NullOS);
376+
uint64_t Offset = W->OS.tell() + StrSizeLength + Str.size();
377+
uint64_t Paddings = offsetToAlignment(Offset, Align(Alignment));
378+
Offset += Paddings;
379+
380+
// LEB128 greater than 5 bytes is invalid
381+
assert((StrSizeLength + Paddings) <= 5 && "too long string to align");
382+
383+
encodeSLEB128(Str.size(), W->OS, StrSizeLength + Paddings);
384+
W->OS << Str;
385+
386+
assert(W->OS.tell() == Offset && "invalid padding");
387+
}
388+
365389
void WasmObjectWriter::startCustomSection(SectionBookkeeping &Section,
366390
StringRef Name) {
367391
LLVM_DEBUG(dbgs() << "startCustomSection " << Name << "\n");
@@ -371,7 +395,12 @@ void WasmObjectWriter::startCustomSection(SectionBookkeeping &Section,
371395
Section.PayloadOffset = W->OS.tell();
372396

373397
// Custom sections in wasm also have a string identifier.
374-
writeString(Name);
398+
if (Name != "__clangast") {
399+
writeString(Name);
400+
} else {
401+
// The on-disk hashtable in clangast needs to be aligned by 4 bytes.
402+
writeStringWithAlignment(Name, 4);
403+
}
375404

376405
// The position where the custom section starts.
377406
Section.ContentsOffset = W->OS.tell();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; RUN: llc -filetype=obj %s -o - | od -t x1 -v | FileCheck %s
2+
3+
target triple = "wasm32-unknown-unknown"
4+
5+
!0 = !{ !"before", !"\de\ad\be\ef" }
6+
!1 = !{ !"__clangast", !"\fe\ed\fa\ce" }
7+
!wasm.custom_sections = !{ !0, !1 }
8+
9+
; Ensure that __clangast content is aligned by 4 bytes
10+
; CHECK: {{(([0-9a-f]{2} ){4})*}}fe ed fa ce

0 commit comments

Comments
 (0)