2018-01-26 15:53:07 +08:00
|
|
|
//===-- RISCVELFStreamer.h - RISCV ELF Target Streamer ---------*- C++ -*--===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2018-01-26 15:53:07 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_RISCV_RISCVELFSTREAMER_H
|
|
|
|
#define LLVM_LIB_TARGET_RISCV_RISCVELFSTREAMER_H
|
|
|
|
|
|
|
|
#include "RISCVTargetStreamer.h"
|
|
|
|
#include "llvm/MC/MCELFStreamer.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class RISCVTargetELFStreamer : public RISCVTargetStreamer {
|
|
|
|
public:
|
|
|
|
MCELFStreamer &getStreamer();
|
|
|
|
RISCVTargetELFStreamer(MCStreamer &S, const MCSubtargetInfo &STI);
|
2018-05-12 01:30:28 +08:00
|
|
|
|
2018-11-29 00:39:14 +08:00
|
|
|
virtual void emitDirectiveOptionPush();
|
|
|
|
virtual void emitDirectiveOptionPop();
|
2018-05-12 01:30:28 +08:00
|
|
|
virtual void emitDirectiveOptionRVC();
|
|
|
|
virtual void emitDirectiveOptionNoRVC();
|
2018-11-12 22:25:07 +08:00
|
|
|
virtual void emitDirectiveOptionRelax();
|
|
|
|
virtual void emitDirectiveOptionNoRelax();
|
2018-01-26 15:53:07 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|