blob: fdde46f09d5b188958b1f886900250c652da9b33 [file]
//===- VEMCAsmInfo.cpp - VE asm properties --------------------------------===//
//
// 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 declarations of the VEMCAsmInfo properties.
//
//===----------------------------------------------------------------------===//
#include "VEMCAsmInfo.h"
#include "VEMCExpr.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/TargetParser/Triple.h"
using namespace llvm;
const MCAsmInfo::VariantKindDesc variantKindDescs[] = {
{VEMCExpr::VK_HI32, "hi"},
{VEMCExpr::VK_LO32, "lo"},
{VEMCExpr::VK_PC_HI32, "pc_hi"},
{VEMCExpr::VK_PC_LO32, "pc_lo"},
{VEMCExpr::VK_GOT_HI32, "got_hi"},
{VEMCExpr::VK_GOT_LO32, "got_lo"},
{VEMCExpr::VK_GOTOFF_HI32, "gotoff_hi"},
{VEMCExpr::VK_GOTOFF_LO32, "gotoff_lo"},
{VEMCExpr::VK_PLT_HI32, "plt_hi"},
{VEMCExpr::VK_PLT_LO32, "plt_lo"},
{VEMCExpr::VK_TLS_GD_HI32, "tls_gd_hi"},
{VEMCExpr::VK_TLS_GD_LO32, "tls_gd_lo"},
{VEMCExpr::VK_TPOFF_HI32, "tpoff_hi"},
{VEMCExpr::VK_TPOFF_LO32, "tpoff_lo"},
};
void VEELFMCAsmInfo::anchor() {}
VEELFMCAsmInfo::VEELFMCAsmInfo(const Triple &TheTriple) {
CodePointerSize = CalleeSaveStackSlotSize = 8;
MaxInstLength = MinInstAlignment = 8;
// VE uses ".*byte" directive for unaligned data.
Data8bitsDirective = "\t.byte\t";
Data16bitsDirective = "\t.2byte\t";
Data32bitsDirective = "\t.4byte\t";
Data64bitsDirective = "\t.8byte\t";
// Uses '.section' before '.bss' directive. VE requires this although
// assembler manual says sinple '.bss' is supported.
UsesELFSectionDirectiveForBSS = true;
SupportsDebugInformation = true;
initializeVariantKinds(variantKindDescs);
}
void VEELFMCAsmInfo::printSpecifierExpr(raw_ostream &OS,
const MCSpecifierExpr &Expr) const {
printExpr(OS, *Expr.getSubExpr());
auto specifier = Expr.getSpecifier();
if (specifier && specifier != VEMCExpr::VK_REFLONG)
OS << '@' << getSpecifierName(specifier);
}