//===- llvm/BinaryFormat/COFF.cpp - The COFF format -----------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/BinaryFormat/COFF.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/Twine.h" // Maximum offsets for different string table entry encodings. enum : unsigned { … }; enum : uint64_t { … }; // 64^6, including 0 // Encode a string table entry offset in base 64, padded to 6 chars, and // prefixed with a double slash: '//AAAAAA', '//AAAAAB', ... // Buffer must be at least 8 bytes large. No terminating null appended. static void encodeBase64StringEntry(char *Buffer, uint64_t Value) { … } bool llvm::COFF::encodeSectionName(char *Out, uint64_t Offset) { … }