Files
clang-p2996/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchTargetStreamer.cpp
wanglei 1a787b3c8e [LoongArch] Support .option directive
The .option can accept 4 parameters like the LoongArch's gnu as:
push, pop, relax and norelax.

Reviewed By: heiher, SixWeining

Pull Request: https://github.com/llvm/llvm-project/pull/110404
2024-10-14 11:45:12 +08:00

51 lines
1.6 KiB
C++

//===-- LoongArchTargetStreamer.cpp - LoongArch 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 LoongArch specific target streamer methods.
//
//===----------------------------------------------------------------------===//
#include "LoongArchTargetStreamer.h"
using namespace llvm;
LoongArchTargetStreamer::LoongArchTargetStreamer(MCStreamer &S)
: MCTargetStreamer(S) {}
void LoongArchTargetStreamer::setTargetABI(LoongArchABI::ABI ABI) {
assert(ABI != LoongArchABI::ABI_Unknown &&
"Improperly initialized target ABI");
TargetABI = ABI;
}
void LoongArchTargetStreamer::emitDirectiveOptionPush() {}
void LoongArchTargetStreamer::emitDirectiveOptionPop() {}
void LoongArchTargetStreamer::emitDirectiveOptionRelax() {}
void LoongArchTargetStreamer::emitDirectiveOptionNoRelax() {}
// This part is for ascii assembly output.
LoongArchTargetAsmStreamer::LoongArchTargetAsmStreamer(
MCStreamer &S, formatted_raw_ostream &OS)
: LoongArchTargetStreamer(S), OS(OS) {}
void LoongArchTargetAsmStreamer::emitDirectiveOptionPush() {
OS << "\t.option\tpush\n";
}
void LoongArchTargetAsmStreamer::emitDirectiveOptionPop() {
OS << "\t.option\tpop\n";
}
void LoongArchTargetAsmStreamer::emitDirectiveOptionRelax() {
OS << "\t.option\trelax\n";
}
void LoongArchTargetAsmStreamer::emitDirectiveOptionNoRelax() {
OS << "\t.option\tnorelax\n";
}