llvm/llvm/lib/Target/VE/MCTargetDesc/VEMCExpr.cpp

//===-- VEMCExpr.cpp - VE 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 VE architecture (e.g. "%hi", "%lo", ...).
//
//===----------------------------------------------------------------------===//

#include "VEMCExpr.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/MC/MCValue.h"
#include "llvm/Support/Casting.h"

usingnamespacellvm;

#define DEBUG_TYPE

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

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

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

void VEMCExpr::printVariantKindSuffix(raw_ostream &OS, VariantKind Kind) {}

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

VE::Fixups VEMCExpr::getFixupKind(VEMCExpr::VariantKind Kind) {}

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

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

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

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