1 //===-- RISCVTargetStreamer.cpp - RISCV Target Streamer Methods -----------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file provides RISCV specific target streamer methods. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "RISCVTargetStreamer.h" 14 #include "RISCVMCTargetDesc.h" 15 #include "llvm/Support/FormattedStream.h" 16 #include "llvm/Support/RISCVAttributes.h" 17 18 using namespace llvm; 19 20 RISCVTargetStreamer::RISCVTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {} 21 22 void RISCVTargetStreamer::finish() { finishAttributeSection(); } 23 24 void RISCVTargetStreamer::emitDirectiveOptionPush() {} 25 void RISCVTargetStreamer::emitDirectiveOptionPop() {} 26 void RISCVTargetStreamer::emitDirectiveOptionPIC() {} 27 void RISCVTargetStreamer::emitDirectiveOptionNoPIC() {} 28 void RISCVTargetStreamer::emitDirectiveOptionRVC() {} 29 void RISCVTargetStreamer::emitDirectiveOptionNoRVC() {} 30 void RISCVTargetStreamer::emitDirectiveOptionRelax() {} 31 void RISCVTargetStreamer::emitDirectiveOptionNoRelax() {} 32 void RISCVTargetStreamer::emitAttribute(unsigned Attribute, unsigned Value) {} 33 void RISCVTargetStreamer::finishAttributeSection() {} 34 void RISCVTargetStreamer::emitTextAttribute(unsigned Attribute, 35 StringRef String) {} 36 void RISCVTargetStreamer::emitIntTextAttribute(unsigned Attribute, 37 unsigned IntValue, 38 StringRef StringValue) {} 39 40 void RISCVTargetStreamer::emitTargetAttributes(const MCSubtargetInfo &STI) { 41 if (STI.hasFeature(RISCV::FeatureRV32E)) 42 emitAttribute(RISCVAttrs::STACK_ALIGN, RISCVAttrs::ALIGN_4); 43 else 44 emitAttribute(RISCVAttrs::STACK_ALIGN, RISCVAttrs::ALIGN_16); 45 46 std::string Arch = "rv32"; 47 if (STI.hasFeature(RISCV::Feature64Bit)) 48 Arch = "rv64"; 49 if (STI.hasFeature(RISCV::FeatureRV32E)) 50 Arch += "e1p9"; 51 else 52 Arch += "i2p0"; 53 if (STI.hasFeature(RISCV::FeatureStdExtM)) 54 Arch += "_m2p0"; 55 if (STI.hasFeature(RISCV::FeatureStdExtA)) 56 Arch += "_a2p0"; 57 if (STI.hasFeature(RISCV::FeatureStdExtF)) 58 Arch += "_f2p0"; 59 if (STI.hasFeature(RISCV::FeatureStdExtD)) 60 Arch += "_d2p0"; 61 if (STI.hasFeature(RISCV::FeatureStdExtC)) 62 Arch += "_c2p0"; 63 if (STI.hasFeature(RISCV::FeatureStdExtV)) 64 Arch += "_v0p10"; 65 if (STI.hasFeature(RISCV::FeatureStdExtZfh)) 66 Arch += "_zfh0p1"; 67 if (STI.hasFeature(RISCV::FeatureStdExtZba)) 68 Arch += "_zba0p93"; 69 if (STI.hasFeature(RISCV::FeatureStdExtZbb)) 70 Arch += "_zbb0p93"; 71 if (STI.hasFeature(RISCV::FeatureStdExtZbc)) 72 Arch += "_zbc0p93"; 73 if (STI.hasFeature(RISCV::FeatureStdExtZbe)) 74 Arch += "_zbe0p93"; 75 if (STI.hasFeature(RISCV::FeatureStdExtZbf)) 76 Arch += "_zbf0p93"; 77 if (STI.hasFeature(RISCV::FeatureStdExtZbm)) 78 Arch += "_zbm0p93"; 79 if (STI.hasFeature(RISCV::FeatureStdExtZbp)) 80 Arch += "_zbp0p93"; 81 if (STI.hasFeature(RISCV::FeatureStdExtZbr)) 82 Arch += "_zbr0p93"; 83 if (STI.hasFeature(RISCV::FeatureStdExtZbs)) 84 Arch += "_zbs0p93"; 85 if (STI.hasFeature(RISCV::FeatureStdExtZbt)) 86 Arch += "_zbt0p93"; 87 if (STI.hasFeature(RISCV::FeatureStdExtZvamo)) 88 Arch += "_zvamo0p10"; 89 if (STI.hasFeature(RISCV::FeatureStdExtZvlsseg)) 90 Arch += "_zvlsseg0p10"; 91 92 emitTextAttribute(RISCVAttrs::ARCH, Arch); 93 } 94 95 // This part is for ascii assembly output 96 RISCVTargetAsmStreamer::RISCVTargetAsmStreamer(MCStreamer &S, 97 formatted_raw_ostream &OS) 98 : RISCVTargetStreamer(S), OS(OS) {} 99 100 void RISCVTargetAsmStreamer::emitDirectiveOptionPush() { 101 OS << "\t.option\tpush\n"; 102 } 103 104 void RISCVTargetAsmStreamer::emitDirectiveOptionPop() { 105 OS << "\t.option\tpop\n"; 106 } 107 108 void RISCVTargetAsmStreamer::emitDirectiveOptionPIC() { 109 OS << "\t.option\tpic\n"; 110 } 111 112 void RISCVTargetAsmStreamer::emitDirectiveOptionNoPIC() { 113 OS << "\t.option\tnopic\n"; 114 } 115 116 void RISCVTargetAsmStreamer::emitDirectiveOptionRVC() { 117 OS << "\t.option\trvc\n"; 118 } 119 120 void RISCVTargetAsmStreamer::emitDirectiveOptionNoRVC() { 121 OS << "\t.option\tnorvc\n"; 122 } 123 124 void RISCVTargetAsmStreamer::emitDirectiveOptionRelax() { 125 OS << "\t.option\trelax\n"; 126 } 127 128 void RISCVTargetAsmStreamer::emitDirectiveOptionNoRelax() { 129 OS << "\t.option\tnorelax\n"; 130 } 131 132 void RISCVTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) { 133 OS << "\t.attribute\t" << Attribute << ", " << Twine(Value) << "\n"; 134 } 135 136 void RISCVTargetAsmStreamer::emitTextAttribute(unsigned Attribute, 137 StringRef String) { 138 OS << "\t.attribute\t" << Attribute << ", \"" << String << "\"\n"; 139 } 140 141 void RISCVTargetAsmStreamer::emitIntTextAttribute(unsigned Attribute, 142 unsigned IntValue, 143 StringRef StringValue) {} 144 145 void RISCVTargetAsmStreamer::finishAttributeSection() {} 146