llvm/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp

//===-- SparcMCExpr.cpp - Sparc specific MC expression classes --------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file contains the implementation of the assembly expression modifiers
// accepted by the Sparc architecture (e.g. "%hi", "%lo", ...).
//
//===----------------------------------------------------------------------===//

#include "SparcMCExpr.h"
#include "llvm/BinaryFormat/ELF.h"
#include "llvm/MC/MCAssembler.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCObjectStreamer.h"
#include "llvm/MC/MCSymbolELF.h"
#include "llvm/Support/Casting.h"

usingnamespacellvm;

#define DEBUG_TYPE

const SparcMCExpr*
SparcMCExpr::create(VariantKind Kind, const MCExpr *Expr,
                      MCContext &Ctx) {}

void SparcMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const {}

bool SparcMCExpr::printVariantKind(raw_ostream &OS, VariantKind Kind)
{}

SparcMCExpr::VariantKind SparcMCExpr::parseVariantKind(StringRef name)
{}

Sparc::Fixups SparcMCExpr::getFixupKind(SparcMCExpr::VariantKind Kind) {}

bool SparcMCExpr::evaluateAsRelocatableImpl(MCValue &Res,
                                            const MCAssembler *Asm,
                                            const MCFixup *Fixup) const {}

static void fixELFSymbolsInTLSFixupsImpl(const MCExpr *Expr, MCAssembler &Asm) {}

void SparcMCExpr::fixELFSymbolsInTLSFixups(MCAssembler &Asm) const {}

void SparcMCExpr::visitUsedExpr(MCStreamer &Streamer) const {}