1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/MC/MCELFObjectWriter.h"
13 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_
, uint8_t OSABI_
,
15 bool HasRelocationAddend_
,
17 : OSABI(OSABI_
), ABIVersion(ABIVersion_
), EMachine(EMachine_
),
18 HasRelocationAddend(HasRelocationAddend_
), Is64Bit(Is64Bit_
) {}
20 bool MCELFObjectTargetWriter::needsRelocateWithSymbol(const MCValue
&,
22 unsigned Type
) const {
27 MCELFObjectTargetWriter::sortRelocs(const MCAssembler
&Asm
,
28 std::vector
<ELFRelocationEntry
> &Relocs
) {