
Reviewers: brad0, s-barannikov, rorth Reviewed By: s-barannikov Pull Request: https://github.com/llvm/llvm-project/pull/130966
76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
//===-- SparcTargetStreamer.cpp - Sparc Target Streamer Methods -----------===//
|
|
//
|
|
// 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 provides Sparc specific target streamer methods.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SparcTargetStreamer.h"
|
|
#include "SparcInstPrinter.h"
|
|
#include "SparcMCTargetDesc.h"
|
|
#include "llvm/BinaryFormat/ELF.h"
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
|
#include "llvm/MC/MCRegister.h"
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
#include "llvm/Support/FormattedStream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
static unsigned getEFlagsForFeatureSet(const MCSubtargetInfo &STI) {
|
|
unsigned EFlags = 0;
|
|
|
|
if (STI.hasFeature(Sparc::FeatureV8Plus))
|
|
EFlags |= ELF::EF_SPARC_32PLUS;
|
|
|
|
if (STI.hasFeature(Sparc::FeatureVIS))
|
|
EFlags |= ELF::EF_SPARC_SUN_US1;
|
|
|
|
if (STI.hasFeature(Sparc::FeatureVIS2))
|
|
EFlags |= ELF::EF_SPARC_SUN_US3;
|
|
|
|
// VIS 3 and other ISA extensions doesn't set any flags.
|
|
|
|
return EFlags;
|
|
}
|
|
|
|
// pin vtable to this file
|
|
SparcTargetStreamer::SparcTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {}
|
|
|
|
void SparcTargetStreamer::anchor() {}
|
|
|
|
SparcTargetAsmStreamer::SparcTargetAsmStreamer(MCStreamer &S,
|
|
formatted_raw_ostream &OS)
|
|
: SparcTargetStreamer(S), OS(OS) {}
|
|
|
|
void SparcTargetAsmStreamer::emitSparcRegisterIgnore(unsigned reg) {
|
|
OS << "\t.register "
|
|
<< "%" << StringRef(SparcInstPrinter::getRegisterName(reg)).lower()
|
|
<< ", #ignore\n";
|
|
}
|
|
|
|
void SparcTargetAsmStreamer::emitSparcRegisterScratch(unsigned reg) {
|
|
OS << "\t.register "
|
|
<< "%" << StringRef(SparcInstPrinter::getRegisterName(reg)).lower()
|
|
<< ", #scratch\n";
|
|
}
|
|
|
|
SparcTargetELFStreamer::SparcTargetELFStreamer(MCStreamer &S,
|
|
const MCSubtargetInfo &STI)
|
|
: SparcTargetStreamer(S) {
|
|
ELFObjectWriter &W = getStreamer().getWriter();
|
|
unsigned EFlags = W.getELFHeaderEFlags();
|
|
|
|
EFlags |= getEFlagsForFeatureSet(STI);
|
|
|
|
W.setELFHeaderEFlags(EFlags);
|
|
}
|
|
|
|
MCELFStreamer &SparcTargetELFStreamer::getStreamer() {
|
|
return static_cast<MCELFStreamer &>(Streamer);
|
|
}
|