LLVM 24.0.0git
RISCVAsmPrinter.cpp
Go to the documentation of this file.
1//===-- RISCVAsmPrinter.cpp - RISC-V LLVM assembly writer -----------------===//
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 contains a printer that converts from our internal representation
10// of machine-dependent LLVM code to the RISC-V assembly language.
11//
12//===----------------------------------------------------------------------===//
13
14#include "RISCVAsmPrinter.h"
21#include "RISCV.h"
24#include "RISCVRegisterInfo.h"
26#include "llvm/ADT/APInt.h"
27#include "llvm/ADT/Statistic.h"
35#include "llvm/IR/Module.h"
36#include "llvm/MC/MCAsmInfo.h"
37#include "llvm/MC/MCContext.h"
38#include "llvm/MC/MCInst.h"
42#include "llvm/MC/MCStreamer.h"
43#include "llvm/MC/MCSymbol.h"
50
51using namespace llvm;
52
53#define DEBUG_TYPE "asm-printer"
54
55STATISTIC(RISCVNumInstrsCompressed,
56 "Number of RISC-V Compressed instructions emitted");
57
58namespace {
59class RISCVAsmPrinter : public AsmPrinter {
60public:
61 static char ID;
62
63private:
64 const RISCVSubtarget *STI;
65
66public:
67 explicit RISCVAsmPrinter(TargetMachine &TM,
68 std::unique_ptr<MCStreamer> Streamer)
69 : AsmPrinter(TM, std::move(Streamer), ID) {}
70
71 StringRef getPassName() const override { return "RISC-V Assembly Printer"; }
72
73 RISCVTargetStreamer &getTargetStreamer() const {
74 return static_cast<RISCVTargetStreamer &>(
75 *OutStreamer->getTargetStreamer());
76 }
77
78 void LowerSTACKMAP(MCStreamer &OutStreamer, StackMaps &SM,
79 const MachineInstr &MI);
80
81 void LowerPATCHPOINT(MCStreamer &OutStreamer, StackMaps &SM,
82 const MachineInstr &MI);
83
84 void LowerSTATEPOINT(MCStreamer &OutStreamer, StackMaps &SM,
85 const MachineInstr &MI);
86
87 bool runOnMachineFunction(MachineFunction &MF) override;
88
89 void emitInstruction(const MachineInstr *MI) override;
90
91 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
92
93 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
94 const char *ExtraCode, raw_ostream &OS) override;
95 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
96 const char *ExtraCode, raw_ostream &OS) override;
97
98 // Returns whether Inst is compressed.
99 bool EmitToStreamer(MCStreamer &S, const MCInst &Inst,
100 const MCSubtargetInfo &SubtargetInfo);
101 bool EmitToStreamer(MCStreamer &S, const MCInst &Inst) {
102 return EmitToStreamer(S, Inst, *STI);
103 }
104
105 bool lowerPseudoInstExpansion(const MachineInstr *MI, MCInst &Inst);
106
107 typedef std::tuple<unsigned, uint32_t> HwasanMemaccessTuple;
108 std::map<HwasanMemaccessTuple, MCSymbol *> HwasanMemaccessSymbols;
109 void LowerHWASAN_CHECK_MEMACCESS(const MachineInstr &MI);
110 void LowerKCFI_CHECK(const MachineInstr &MI);
111 void EmitHwasanMemaccessSymbols(Module &M);
112
113 // Wrapper needed for tblgenned pseudo lowering.
114 bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const;
115
116 void emitStartOfAsmFile(Module &M) override;
117 void emitEndOfAsmFile(Module &M) override;
118
119 void emitFunctionEntryLabel() override;
120 bool emitTargetFeaturePush(const MCSubtargetInfo &STI) override;
121 void emitTargetFeaturePop(const MCSubtargetInfo &STI, bool DidPush) override;
122
123 void emitNoteGnuProperty(const Module &M);
124
125private:
126 void emitAttributes(const MCSubtargetInfo &SubtargetInfo);
127
128 void emitNTLHint(const MachineInstr *MI);
129
130 void emitLpadAlignedCall(const MachineInstr &MI);
131
132 // XRay Support
133 void LowerPATCHABLE_FUNCTION_ENTER(const MachineInstr *MI);
134 void LowerPATCHABLE_FUNCTION_EXIT(const MachineInstr *MI);
135 void LowerPATCHABLE_TAIL_CALL(const MachineInstr *MI);
136 void emitSled(const MachineInstr *MI, SledKind Kind);
137
138 void lowerToMCInst(const MachineInstr *MI, MCInst &OutMI);
139
140 MaybeAlign
141 getRequiredGlobalAlignmentGranule(const GlobalVariable &GV) override;
142};
143} // namespace
144
145void RISCVAsmPrinter::LowerSTACKMAP(MCStreamer &OutStreamer, StackMaps &SM,
146 const MachineInstr &MI) {
147 unsigned NOPBytes = STI->hasStdExtZca() ? 2 : 4;
148 unsigned NumNOPBytes = StackMapOpers(&MI).getNumPatchBytes();
149
150 auto &Ctx = OutStreamer.getContext();
151 MCSymbol *MILabel = Ctx.createTempSymbol();
152 OutStreamer.emitLabel(MILabel);
153
154 SM.recordStackMap(*MILabel, MI);
155 assert(NumNOPBytes % NOPBytes == 0 &&
156 "Invalid number of NOP bytes requested!");
157
158 // Scan ahead to trim the shadow.
159 const MachineBasicBlock &MBB = *MI.getParent();
161 ++MII;
162 while (NumNOPBytes > 0) {
163 if (MII == MBB.end() || MII->isCall() ||
164 MII->getOpcode() == RISCV::DBG_VALUE ||
165 MII->getOpcode() == TargetOpcode::PATCHPOINT ||
166 MII->getOpcode() == TargetOpcode::STACKMAP)
167 break;
168 ++MII;
169 NumNOPBytes -= NOPBytes;
170 }
171
172 // Emit nops.
173 emitNops(NumNOPBytes / NOPBytes);
174}
175
176// Lower a patchpoint of the form:
177// [<def>], <id>, <numBytes>, <target>, <numArgs>
178void RISCVAsmPrinter::LowerPATCHPOINT(MCStreamer &OutStreamer, StackMaps &SM,
179 const MachineInstr &MI) {
180 unsigned NOPBytes = STI->hasStdExtZca() ? 2 : 4;
181
182 auto &Ctx = OutStreamer.getContext();
183 MCSymbol *MILabel = Ctx.createTempSymbol();
184 OutStreamer.emitLabel(MILabel);
185 SM.recordPatchPoint(*MILabel, MI);
186
187 PatchPointOpers Opers(&MI);
188
189 const MachineOperand &CalleeMO = Opers.getCallTarget();
190 unsigned EncodedBytes = 0;
191
192 if (CalleeMO.isImm()) {
193 uint64_t CallTarget = CalleeMO.getImm();
194 if (CallTarget) {
195 assert((CallTarget & 0xFFFF'FFFF'FFFF) == CallTarget &&
196 "High 16 bits of call target should be zero.");
197 // Materialize the jump address:
199 RISCVMatInt::generateMCInstSeq(CallTarget, *STI, RISCV::X1, Seq);
200 for (MCInst &Inst : Seq) {
201 bool Compressed = EmitToStreamer(OutStreamer, Inst);
202 EncodedBytes += Compressed ? 2 : 4;
203 }
204 bool Compressed = EmitToStreamer(OutStreamer, MCInstBuilder(RISCV::JALR)
205 .addReg(RISCV::X1)
206 .addReg(RISCV::X1)
207 .addImm(0));
208 EncodedBytes += Compressed ? 2 : 4;
209 }
210 } else if (CalleeMO.isGlobal()) {
211 MCOperand CallTargetMCOp;
212 lowerOperand(CalleeMO, CallTargetMCOp);
213 EmitToStreamer(OutStreamer,
214 MCInstBuilder(RISCV::PseudoCALL).addOperand(CallTargetMCOp));
215 EncodedBytes += 8;
216 }
217
218 // Emit padding.
219 unsigned NumBytes = Opers.getNumPatchBytes();
220 assert(NumBytes >= EncodedBytes &&
221 "Patchpoint can't request size less than the length of a call.");
222 assert((NumBytes - EncodedBytes) % NOPBytes == 0 &&
223 "Invalid number of NOP bytes requested!");
224 emitNops((NumBytes - EncodedBytes) / NOPBytes);
225}
226
227void RISCVAsmPrinter::LowerSTATEPOINT(MCStreamer &OutStreamer, StackMaps &SM,
228 const MachineInstr &MI) {
229 unsigned NOPBytes = STI->hasStdExtZca() ? 2 : 4;
230
231 StatepointOpers SOpers(&MI);
232 if (unsigned PatchBytes = SOpers.getNumPatchBytes()) {
233 assert(PatchBytes % NOPBytes == 0 &&
234 "Invalid number of NOP bytes requested!");
235 emitNops(PatchBytes / NOPBytes);
236 } else {
237 // Lower call target and choose correct opcode
238 const MachineOperand &CallTarget = SOpers.getCallTarget();
239 MCOperand CallTargetMCOp;
240 switch (CallTarget.getType()) {
243 lowerOperand(CallTarget, CallTargetMCOp);
244 EmitToStreamer(
245 OutStreamer,
246 MCInstBuilder(RISCV::PseudoCALL).addOperand(CallTargetMCOp));
247 break;
249 CallTargetMCOp = MCOperand::createImm(CallTarget.getImm());
250 EmitToStreamer(OutStreamer, MCInstBuilder(RISCV::JAL)
251 .addReg(RISCV::X1)
252 .addOperand(CallTargetMCOp));
253 break;
255 CallTargetMCOp = MCOperand::createReg(CallTarget.getReg());
256 EmitToStreamer(OutStreamer, MCInstBuilder(RISCV::JALR)
257 .addReg(RISCV::X1)
258 .addOperand(CallTargetMCOp)
259 .addImm(0));
260 break;
261 default:
262 llvm_unreachable("Unsupported operand type in statepoint call target");
263 break;
264 }
265 }
266
267 auto &Ctx = OutStreamer.getContext();
268 MCSymbol *MILabel = Ctx.createTempSymbol();
269 OutStreamer.emitLabel(MILabel);
270 SM.recordStatepoint(*MILabel, MI);
271}
272
273bool RISCVAsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst,
274 const MCSubtargetInfo &SubtargetInfo) {
275 MCInst CInst;
276 bool Res = RISCVRVC::compress(CInst, Inst, SubtargetInfo);
277 if (Res)
278 ++RISCVNumInstrsCompressed;
279 S.emitInstruction(Res ? CInst : Inst, SubtargetInfo);
280 return Res;
281}
282
283// Simple pseudo-instructions have their lowering (with expansion to real
284// instructions) auto-generated.
285#include "RISCVGenMCPseudoLowering.inc"
286
287// Emit a call to a returns_twice function with LPAD.
288// When Zca is enabled, emit .p2align 2 before the call to ensure the
289// following LPAD is 4-byte aligned. For assembly output, wrap with
290// .option push/exact/pop to prevent relaxation. For object output,
291// emit the pseudo directly so MCCodeEmitter handles it without R_RISCV_RELAX.
292void RISCVAsmPrinter::emitLpadAlignedCall(const MachineInstr &MI) {
293 const MCSubtargetInfo &MCSTI = getSubtargetInfo();
294 const bool IsIndirect = MI.getOpcode() == RISCV::PseudoCALLIndirectLpadAlign,
295 HasZca = MCSTI.hasFeature(RISCV::FeatureStdExtZca),
296 HasRelax = MCSTI.hasFeature(RISCV::FeatureRelax);
297
298 if (HasZca)
299 OutStreamer->emitCodeAlignment(Align(4), MCSTI);
300
301 if (OutStreamer->hasRawTextSupport()) {
302 // Assembly path: wrap call with .option push/exact/pop and emit LPAD
303 // separately so the output is human-readable.
304 RISCVTargetStreamer &RTS = getTargetStreamer();
305 if (HasZca && HasRelax) {
308 }
309
310 MCInst CallInst;
311 if (!IsIndirect) {
312 MCOperand MCOp;
313 lowerOperand(MI.getOperand(0), MCOp);
314 CallInst = MCInstBuilder(RISCV::PseudoCALL).addOperand(MCOp);
315 } else {
316 CallInst = MCInstBuilder(RISCV::JALR)
317 .addReg(RISCV::X1)
318 .addReg(MI.getOperand(0).getReg())
319 .addImm(0);
320 }
321
322 if (HasZca && HasRelax) {
323 MCSubtargetInfo NoRelaxSTI(MCSTI);
324 NoRelaxSTI.ToggleFeature(RISCV::FeatureRelax);
325 EmitToStreamer(*OutStreamer, CallInst, NoRelaxSTI);
327 } else {
328 EmitToStreamer(*OutStreamer, CallInst, MCSTI);
329 }
330
331 // LPAD is encoded as AUIPC X0, label.
332 MCInst LpadInst = MCInstBuilder(RISCV::AUIPC)
333 .addReg(RISCV::X0)
334 .addImm(MI.getOperand(1).getImm());
335 EmitToStreamer(*OutStreamer, LpadInst, MCSTI);
336 } else {
337 // Object path: emit PseudoCALL(Indirect)LpadAlign directly.
338 // MCCodeEmitter::expandFunctionCallLpad expands to AUIPC+JALR+LPAD
339 // without emitting R_RISCV_RELAX on the call fixup.
340 MCInst TmpInst;
341 TmpInst.setOpcode(MI.getOpcode());
342 if (!IsIndirect) {
343 MCOperand MCOp;
344 lowerOperand(MI.getOperand(0), MCOp);
345 TmpInst.addOperand(MCOp);
346 } else {
347 TmpInst.addOperand(MCOperand::createReg(MI.getOperand(0).getReg()));
348 }
349 TmpInst.addOperand(MCOperand::createImm(MI.getOperand(1).getImm()));
350 EmitToStreamer(*OutStreamer, TmpInst, MCSTI);
351 }
352}
353
354// If the instruction has a nontemporal MachineMemOperand, emit an NTL hint
355// instruction before it. NTL hints are always safe to emit since they use
356// HINT encodings that are guaranteed not to trap
357// (riscv-non-isa/riscv-elf-psabi-doc#474).
358void RISCVAsmPrinter::emitNTLHint(const MachineInstr *MI) {
359 if (!STI->getInstrInfo()->requiresNTLHint(*MI))
360 return;
361
362 assert(!MI->memoperands_empty());
363
364 MachineMemOperand *MMO = *(MI->memoperands_begin());
365
366 assert(MMO->isNonTemporal());
367
368 unsigned NontemporalMode = 0;
369 if (MMO->getFlags() & MONontemporalBit0)
370 NontemporalMode += 0b1;
371 if (MMO->getFlags() & MONontemporalBit1)
372 NontemporalMode += 0b10;
373
374 MCInst Hint;
375 if (STI->hasStdExtZca())
376 Hint.setOpcode(RISCV::C_ADD);
377 else
378 Hint.setOpcode(RISCV::ADD);
379
380 Hint.addOperand(MCOperand::createReg(RISCV::X0));
381 Hint.addOperand(MCOperand::createReg(RISCV::X0));
382 Hint.addOperand(MCOperand::createReg(RISCV::X2 + NontemporalMode));
383
384 EmitToStreamer(*OutStreamer, Hint);
385}
386
387void RISCVAsmPrinter::emitInstruction(const MachineInstr *MI) {
388 RISCV_MC::verifyInstructionPredicates(MI->getOpcode(), STI->getFeatureBits());
389
390 emitNTLHint(MI);
391
392 // Do any auto-generated pseudo lowerings.
393 if (MCInst OutInst; lowerPseudoInstExpansion(MI, OutInst)) {
394 EmitToStreamer(*OutStreamer, OutInst);
395 return;
396 }
397
398 switch (MI->getOpcode()) {
399 case RISCV::PseudoTAILX7: {
400 // Lower to PseudoTAILReg with X7 as the register operand.
401 MCOperand SymOp;
402 lowerOperand(MI->getOperand(0), SymOp);
403 MCInst TmpInst;
404 TmpInst.setOpcode(RISCV::PseudoTAILReg);
405 TmpInst.addOperand(SymOp);
406 TmpInst.addOperand(MCOperand::createReg(RISCV::X7));
407 EmitToStreamer(*OutStreamer, TmpInst);
408 return;
409 }
410 case RISCV::HWASAN_CHECK_MEMACCESS_SHORTGRANULES:
411 LowerHWASAN_CHECK_MEMACCESS(*MI);
412 return;
413 case RISCV::KCFI_CHECK:
414 LowerKCFI_CHECK(*MI);
415 return;
416 case TargetOpcode::STACKMAP:
417 return LowerSTACKMAP(*OutStreamer, SM, *MI);
418 case TargetOpcode::PATCHPOINT:
419 return LowerPATCHPOINT(*OutStreamer, SM, *MI);
420 case TargetOpcode::STATEPOINT:
421 return LowerSTATEPOINT(*OutStreamer, SM, *MI);
422 case TargetOpcode::PATCHABLE_FUNCTION_ENTER: {
423 const Function &F = MI->getParent()->getParent()->getFunction();
424 if (F.hasFnAttribute("patchable-function-entry")) {
425 unsigned Num =
426 F.getFnAttributeAsParsedInteger("patchable-function-entry");
427 emitNops(Num);
428 return;
429 }
430 LowerPATCHABLE_FUNCTION_ENTER(MI);
431 return;
432 }
433 case TargetOpcode::PATCHABLE_FUNCTION_EXIT:
434 LowerPATCHABLE_FUNCTION_EXIT(MI);
435 return;
436 case TargetOpcode::PATCHABLE_TAIL_CALL:
437 LowerPATCHABLE_TAIL_CALL(MI);
438 return;
439 case RISCV::PseudoCALLLpadAlign:
440 case RISCV::PseudoCALLIndirectLpadAlign:
441 emitLpadAlignedCall(*MI);
442 return;
443 }
444
445 MCInst OutInst;
446 lowerToMCInst(MI, OutInst);
447 EmitToStreamer(*OutStreamer, OutInst);
448}
449
450bool RISCVAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
451 const char *ExtraCode, raw_ostream &OS) {
452 // First try the generic code, which knows about modifiers like 'c' and 'n'.
453 if (!AsmPrinter::PrintAsmOperand(MI, OpNo, ExtraCode, OS))
454 return false;
455
456 const MachineOperand &MO = MI->getOperand(OpNo);
457 if (ExtraCode && ExtraCode[0]) {
458 if (ExtraCode[1] != 0)
459 return true; // Unknown modifier.
460
461 switch (ExtraCode[0]) {
462 default:
463 return true; // Unknown modifier.
464 case 'z': // Print zero register if zero, regular printing otherwise.
465 if (MO.isImm() && MO.getImm() == 0) {
466 OS << RISCVInstPrinter::getRegisterName(RISCV::X0);
467 return false;
468 }
469 break;
470 case 'i': // Literal 'i' if operand is not a register.
471 if (!MO.isReg())
472 OS << 'i';
473 return false;
474 case 'N': // Print the register encoding as an integer (0-31)
475 if (!MO.isReg())
476 return true;
477
478 const RISCVRegisterInfo *TRI = STI->getRegisterInfo();
479 OS << TRI->getEncodingValue(MO.getReg());
480 return false;
481 }
482 }
483
484 switch (MO.getType()) {
486 OS << MO.getImm();
487 return false;
490 return false;
492 PrintSymbolOperand(MO, OS);
493 return false;
495 MCSymbol *Sym = GetBlockAddressSymbol(MO.getBlockAddress());
496 Sym->print(OS, MAI);
497 return false;
498 }
499 default:
500 break;
501 }
502
503 return true;
504}
505
506bool RISCVAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
507 unsigned OpNo,
508 const char *ExtraCode,
509 raw_ostream &OS) {
510 if (ExtraCode)
511 return AsmPrinter::PrintAsmMemoryOperand(MI, OpNo, ExtraCode, OS);
512
513 const MachineOperand &AddrReg = MI->getOperand(OpNo);
514 assert(MI->getNumOperands() > OpNo + 1 && "Expected additional operand");
515 const MachineOperand &Offset = MI->getOperand(OpNo + 1);
516 // All memory operands should have a register and an immediate operand (see
517 // RISCVDAGToDAGISel::SelectInlineAsmMemoryOperand).
518 if (!AddrReg.isReg())
519 return true;
520 if (!Offset.isImm() && !Offset.isGlobal() && !Offset.isBlockAddress() &&
521 !Offset.isMCSymbol())
522 return true;
523
524 MCOperand MCO;
525 if (!lowerOperand(Offset, MCO))
526 return true;
527
528 if (Offset.isImm())
529 OS << MCO.getImm();
530 else if (Offset.isGlobal() || Offset.isBlockAddress() || Offset.isMCSymbol())
531 MAI.printExpr(OS, *MCO.getExpr());
532
533 if (Offset.isMCSymbol())
534 MMI->getContext().registerInlineAsmLabel(Offset.getMCSymbol());
535 if (Offset.isBlockAddress()) {
536 const BlockAddress *BA = Offset.getBlockAddress();
537 MCSymbol *Sym = GetBlockAddressSymbol(BA);
538 MMI->getContext().registerInlineAsmLabel(Sym);
539 }
540
541 OS << "(" << RISCVInstPrinter::getRegisterName(AddrReg.getReg()) << ")";
542 return false;
543}
544
545bool RISCVAsmPrinter::emitTargetFeaturePush(const MCSubtargetInfo &STI) {
546 RISCVTargetStreamer &RTS = getTargetStreamer();
547 SmallVector<RISCVOptionArchArg> NeedEmitStdOptionArgs;
548 const MCSubtargetInfo &MCSTI = TM.getMCSubtargetInfo();
549 for (const auto &Feature : MCSTI.getAllProcessorFeatures()) {
550 if (STI.hasFeature(Feature.Value) == MCSTI.hasFeature(Feature.Value))
551 continue;
552
554 continue;
555
556 auto Delta = STI.hasFeature(Feature.Value) ? RISCVOptionArchArgType::Plus
557 : RISCVOptionArchArgType::Minus;
558 StringRef ExtName = Feature.key();
559 ExtName.consume_front("experimental-");
560 NeedEmitStdOptionArgs.emplace_back(Delta, ExtName.str());
561 }
562 if (!NeedEmitStdOptionArgs.empty()) {
564 RTS.emitDirectiveOptionArch(NeedEmitStdOptionArgs);
565 return true;
566 }
567
568 return false;
569}
570
571void RISCVAsmPrinter::emitTargetFeaturePop(const MCSubtargetInfo &STI,
572 bool DidPush) {
573 if (DidPush)
574 getTargetStreamer().emitDirectiveOptionPop();
575}
576
577bool RISCVAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
578 STI = &MF.getSubtarget<RISCVSubtarget>();
579
580 bool EmittedOptionArch = emitTargetFeaturePush(*STI);
581
582 SetupMachineFunction(MF);
583 emitFunctionBody();
584
585 // Emit the XRay table
586 emitXRayTable();
587
588 emitTargetFeaturePop(*STI, EmittedOptionArch);
589 return false;
590}
591
592void RISCVAsmPrinter::LowerPATCHABLE_FUNCTION_ENTER(const MachineInstr *MI) {
593 emitSled(MI, SledKind::FUNCTION_ENTER);
594}
595
596void RISCVAsmPrinter::LowerPATCHABLE_FUNCTION_EXIT(const MachineInstr *MI) {
597 emitSled(MI, SledKind::FUNCTION_EXIT);
598}
599
600void RISCVAsmPrinter::LowerPATCHABLE_TAIL_CALL(const MachineInstr *MI) {
601 emitSled(MI, SledKind::TAIL_CALL);
602}
603
604void RISCVAsmPrinter::emitSled(const MachineInstr *MI, SledKind Kind) {
605 // We want to emit the jump instruction and the nops constituting the sled.
606 // The format is as follows:
607 // .Lxray_sled_N
608 // ALIGN
609 // J .tmpN
610 // 21 or 33 C.NOP instructions
611 // .tmpN
612
613 // The following variable holds the count of the number of NOPs to be patched
614 // in for XRay instrumentation during compilation.
615 // Note that RV64 and RV32 each has a sled of 68 and 44 bytes, respectively.
616 // Assuming we're using JAL to jump to .tmpN, then we only need
617 // (68 - 4)/2 = 32 NOPs for RV64 and (44 - 4)/2 = 20 for RV32. However, there
618 // is a chance that we'll use C.JAL instead, so an additional NOP is needed.
619 const uint8_t NoopsInSledCount = STI->is64Bit() ? 33 : 21;
620
621 OutStreamer->emitCodeAlignment(Align(4), *STI);
622 auto CurSled = OutContext.createTempSymbol("xray_sled_", true);
623 OutStreamer->emitLabel(CurSled);
624 auto Target = OutContext.createTempSymbol();
625
626 const MCExpr *TargetExpr = MCSymbolRefExpr::create(Target, OutContext);
627
628 // Emit "J bytes" instruction, which jumps over the nop sled to the actual
629 // start of function.
630 EmitToStreamer(
631 *OutStreamer,
632 MCInstBuilder(RISCV::JAL).addReg(RISCV::X0).addExpr(TargetExpr));
633
634 // Emit NOP instructions
635 for (int8_t I = 0; I < NoopsInSledCount; ++I)
636 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::ADDI)
637 .addReg(RISCV::X0)
638 .addReg(RISCV::X0)
639 .addImm(0));
640
641 OutStreamer->emitLabel(Target);
642 recordSled(CurSled, *MI, Kind, 2);
643}
644
645void RISCVAsmPrinter::emitStartOfAsmFile(Module &M) {
646 assert(OutStreamer->getTargetStreamer() &&
647 "target streamer is uninitialized");
648 RISCVTargetStreamer &RTS = getTargetStreamer();
649 if (const MDString *ModuleTargetABI =
650 dyn_cast_or_null<MDString>(M.getModuleFlag("target-abi")))
651 RTS.setTargetABI(RISCVABI::getTargetABI(ModuleTargetABI->getString()));
652 else if (!RTS.hasTargetABI())
653 RTS.setTargetABI(
654 cantFail(RISCVABI::computeTargetABI(TM.getMCSubtargetInfo(), "")));
655
656 MCSubtargetInfo SubtargetInfo = TM.getMCSubtargetInfo();
657
658 // Use module flag to update feature bits.
659 if (auto *MD = dyn_cast_or_null<MDNode>(M.getModuleFlag("riscv-isa"))) {
660 for (auto &ISA : MD->operands()) {
661 if (auto *ISAString = dyn_cast_or_null<MDString>(ISA)) {
662 auto ParseResult = llvm::RISCVISAInfo::parseArchString(
663 ISAString->getString(), /*EnableExperimentalExtension=*/true,
664 /*ExperimentalExtensionVersionCheck=*/true);
665 if (!errorToBool(ParseResult.takeError())) {
666 auto &ISAInfo = *ParseResult;
667 for (const auto &Feature : SubtargetInfo.getAllProcessorFeatures()) {
668 if (ISAInfo->hasExtension(Feature.key()) &&
669 !SubtargetInfo.hasFeature(Feature.Value))
670 SubtargetInfo.ToggleFeature(Feature.key());
671 }
672 }
673 }
674 }
675
676 RTS.setFlagsFromFeatures(SubtargetInfo);
677 }
678
679 if (TM.getTargetTriple().isOSBinFormatELF())
680 emitAttributes(SubtargetInfo);
681}
682
683void RISCVAsmPrinter::emitEndOfAsmFile(Module &M) {
684 RISCVTargetStreamer &RTS = getTargetStreamer();
685
686 if (TM.getTargetTriple().isOSBinFormatELF()) {
688 emitNoteGnuProperty(M);
689 }
690 EmitHwasanMemaccessSymbols(M);
691}
692
693void RISCVAsmPrinter::emitAttributes(const MCSubtargetInfo &SubtargetInfo) {
694 RISCVTargetStreamer &RTS = getTargetStreamer();
695 // Use MCSubtargetInfo from TargetMachine. Individual functions may have
696 // attributes that differ from other functions in the module and we have no
697 // way to know which function is correct.
698 RTS.emitTargetAttributes(SubtargetInfo, /*EmitStackAlign*/ true);
699}
700
701void RISCVAsmPrinter::emitFunctionEntryLabel() {
702 const auto *RMFI = MF->getInfo<RISCVMachineFunctionInfo>();
703 if (RMFI->isVectorCall()) {
704 RISCVTargetStreamer &RTS = getTargetStreamer();
705 RTS.emitDirectiveVariantCC(*CurrentFnSym);
706 }
708}
709
710// Force static initialization.
718
719void RISCVAsmPrinter::LowerHWASAN_CHECK_MEMACCESS(const MachineInstr &MI) {
720 Register Reg = MI.getOperand(0).getReg();
721 uint32_t AccessInfo = MI.getOperand(1).getImm();
722 MCSymbol *&Sym =
723 HwasanMemaccessSymbols[HwasanMemaccessTuple(Reg, AccessInfo)];
724 if (!Sym) {
725 // FIXME: Make this work on non-ELF.
726 if (!TM.getTargetTriple().isOSBinFormatELF())
727 report_fatal_error("llvm.hwasan.check.memaccess only supported on ELF");
728
729 std::string SymName = "__hwasan_check_x" + utostr(Reg - RISCV::X0) + "_" +
730 utostr(AccessInfo) + "_short";
731 Sym = OutContext.getOrCreateSymbol(SymName);
732 }
733 auto Res = MCSymbolRefExpr::create(Sym, OutContext);
734 auto Expr = MCSpecifierExpr::create(Res, RISCV::S_CALL_PLT, OutContext);
735
736 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::PseudoCALL).addExpr(Expr));
737}
738
739void RISCVAsmPrinter::LowerKCFI_CHECK(const MachineInstr &MI) {
740 Register AddrReg = MI.getOperand(0).getReg();
741 assert(std::next(MI.getIterator())->isCall() &&
742 "KCFI_CHECK not followed by a call instruction");
743 assert(std::next(MI.getIterator())->getOperand(0).getReg() == AddrReg &&
744 "KCFI_CHECK call target doesn't match call operand");
745
746 // Temporary registers for comparing the hashes. If a register is used
747 // for the call target, or reserved by the user, we can clobber another
748 // temporary register as the check is immediately followed by the
749 // call. The check defaults to X6/X7, but can fall back to X28-X31 if
750 // needed.
751 unsigned ScratchRegs[] = {RISCV::X6, RISCV::X7};
752 unsigned NextReg = RISCV::X28;
753 auto isRegAvailable = [&](unsigned Reg) {
754 return Reg != AddrReg && !STI->isRegisterReservedByUser(Reg);
755 };
756 for (auto &Reg : ScratchRegs) {
757 if (isRegAvailable(Reg))
758 continue;
759 while (!isRegAvailable(NextReg))
760 ++NextReg;
761 Reg = NextReg++;
762 if (Reg > RISCV::X31)
763 report_fatal_error("Unable to find scratch registers for KCFI_CHECK");
764 }
765
766 if (AddrReg == RISCV::X0) {
767 // Checking X0 makes no sense. Instead of emitting a load, zero
768 // ScratchRegs[0].
769 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::ADDI)
770 .addReg(ScratchRegs[0])
771 .addReg(RISCV::X0)
772 .addImm(0));
773 } else {
774 // Adjust the offset for patchable-function-prefix. This assumes that
775 // patchable-function-prefix is the same for all functions.
776 int NopSize = STI->hasStdExtZca() ? 2 : 4;
777 int64_t PrefixNops =
778 MI.getMF()->getFunction().getFnAttributeAsParsedInteger(
779 "patchable-function-prefix");
780
781 // Load the target function type hash.
782 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::LW)
783 .addReg(ScratchRegs[0])
784 .addReg(AddrReg)
785 .addImm(-(PrefixNops * NopSize + 4)));
786 }
787
788 // Load the expected 32-bit type hash.
789 const int64_t Type = MI.getOperand(1).getImm();
790 const int64_t Hi20 = ((Type + 0x800) >> 12) & 0xFFFFF;
791 const int64_t Lo12 = SignExtend64<12>(Type);
792 if (Hi20) {
793 EmitToStreamer(
794 *OutStreamer,
795 MCInstBuilder(RISCV::LUI).addReg(ScratchRegs[1]).addImm(Hi20));
796 }
797 if (Lo12 || Hi20 == 0) {
798 EmitToStreamer(*OutStreamer,
799 MCInstBuilder((STI->hasFeature(RISCV::Feature64Bit) && Hi20)
800 ? RISCV::ADDIW
801 : RISCV::ADDI)
802 .addReg(ScratchRegs[1])
803 .addReg(ScratchRegs[1])
804 .addImm(Lo12));
805 }
806
807 // Compare the hashes and trap if there's a mismatch.
808 MCSymbol *Pass = OutContext.createTempSymbol();
809 EmitToStreamer(*OutStreamer,
810 MCInstBuilder(RISCV::BEQ)
811 .addReg(ScratchRegs[0])
812 .addReg(ScratchRegs[1])
813 .addExpr(MCSymbolRefExpr::create(Pass, OutContext)));
814
815 MCSymbol *Trap = OutContext.createTempSymbol();
816 OutStreamer->emitLabel(Trap);
817 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::EBREAK));
818 emitKCFITrapEntry(*MI.getMF(), Trap);
819 OutStreamer->emitLabel(Pass);
820}
821
822void RISCVAsmPrinter::EmitHwasanMemaccessSymbols(Module &M) {
823 if (HwasanMemaccessSymbols.empty())
824 return;
825
826 assert(TM.getTargetTriple().isOSBinFormatELF());
827 // Use MCSubtargetInfo from TargetMachine. Individual functions may have
828 // attributes that differ from other functions in the module and we have no
829 // way to know which function is correct.
830 const MCSubtargetInfo &MCSTI = TM.getMCSubtargetInfo();
831
832 MCSymbol *HwasanTagMismatchV2Sym =
833 OutContext.getOrCreateSymbol("__hwasan_tag_mismatch_v2");
834 // Annotate symbol as one having incompatible calling convention, so
835 // run-time linkers can instead eagerly bind this function.
836 RISCVTargetStreamer &RTS = getTargetStreamer();
837 RTS.emitDirectiveVariantCC(*HwasanTagMismatchV2Sym);
838
839 const MCSymbolRefExpr *HwasanTagMismatchV2Ref =
840 MCSymbolRefExpr::create(HwasanTagMismatchV2Sym, OutContext);
841 auto Expr = MCSpecifierExpr::create(HwasanTagMismatchV2Ref, RISCV::S_CALL_PLT,
842 OutContext);
843
844 for (auto &P : HwasanMemaccessSymbols) {
845 unsigned Reg = std::get<0>(P.first);
846 uint32_t AccessInfo = std::get<1>(P.first);
847 MCSymbol *Sym = P.second;
848
849 unsigned Size =
850 1 << ((AccessInfo >> HWASanAccessInfo::AccessSizeShift) & 0xf);
851 OutStreamer->switchSection(OutContext.getELFSection(
852 ".text.hot", ELF::SHT_PROGBITS,
854 /*IsComdat=*/true));
855
857 OutStreamer->emitSymbolAttribute(Sym, MCSA_Weak);
858 OutStreamer->emitSymbolAttribute(Sym, MCSA_Hidden);
859 OutStreamer->emitLabel(Sym);
860
861 // Extract shadow offset from ptr
862 EmitToStreamer(
863 *OutStreamer,
864 MCInstBuilder(RISCV::SLLI).addReg(RISCV::X6).addReg(Reg).addImm(8),
865 MCSTI);
866 EmitToStreamer(*OutStreamer,
867 MCInstBuilder(RISCV::SRLI)
868 .addReg(RISCV::X6)
869 .addReg(RISCV::X6)
870 .addImm(12),
871 MCSTI);
872 // load shadow tag in X6, X5 contains shadow base
873 EmitToStreamer(*OutStreamer,
874 MCInstBuilder(RISCV::ADD)
875 .addReg(RISCV::X6)
876 .addReg(RISCV::X5)
877 .addReg(RISCV::X6),
878 MCSTI);
879 EmitToStreamer(
880 *OutStreamer,
881 MCInstBuilder(RISCV::LBU).addReg(RISCV::X6).addReg(RISCV::X6).addImm(0),
882 MCSTI);
883 // Extract tag from pointer and compare it with loaded tag from shadow
884 EmitToStreamer(
885 *OutStreamer,
886 MCInstBuilder(RISCV::SRLI).addReg(RISCV::X7).addReg(Reg).addImm(56),
887 MCSTI);
888 MCSymbol *HandleMismatchOrPartialSym = OutContext.createTempSymbol();
889 // X7 contains tag from the pointer, while X6 contains tag from memory
890 EmitToStreamer(*OutStreamer,
891 MCInstBuilder(RISCV::BNE)
892 .addReg(RISCV::X7)
893 .addReg(RISCV::X6)
895 HandleMismatchOrPartialSym, OutContext)),
896 MCSTI);
897 MCSymbol *ReturnSym = OutContext.createTempSymbol();
898 OutStreamer->emitLabel(ReturnSym);
899 EmitToStreamer(*OutStreamer,
900 MCInstBuilder(RISCV::JALR)
901 .addReg(RISCV::X0)
902 .addReg(RISCV::X1)
903 .addImm(0),
904 MCSTI);
905 OutStreamer->emitLabel(HandleMismatchOrPartialSym);
906
907 EmitToStreamer(*OutStreamer,
908 MCInstBuilder(RISCV::ADDI)
909 .addReg(RISCV::X28)
910 .addReg(RISCV::X0)
911 .addImm(16),
912 MCSTI);
913 MCSymbol *HandleMismatchSym = OutContext.createTempSymbol();
914 EmitToStreamer(
915 *OutStreamer,
916 MCInstBuilder(RISCV::BGEU)
917 .addReg(RISCV::X6)
918 .addReg(RISCV::X28)
919 .addExpr(MCSymbolRefExpr::create(HandleMismatchSym, OutContext)),
920 MCSTI);
921
922 EmitToStreamer(
923 *OutStreamer,
924 MCInstBuilder(RISCV::ANDI).addReg(RISCV::X28).addReg(Reg).addImm(0xF),
925 MCSTI);
926
927 if (Size != 1)
928 EmitToStreamer(*OutStreamer,
929 MCInstBuilder(RISCV::ADDI)
930 .addReg(RISCV::X28)
931 .addReg(RISCV::X28)
932 .addImm(Size - 1),
933 MCSTI);
934 EmitToStreamer(
935 *OutStreamer,
936 MCInstBuilder(RISCV::BGE)
937 .addReg(RISCV::X28)
938 .addReg(RISCV::X6)
939 .addExpr(MCSymbolRefExpr::create(HandleMismatchSym, OutContext)),
940 MCSTI);
941
942 EmitToStreamer(
943 *OutStreamer,
944 MCInstBuilder(RISCV::ORI).addReg(RISCV::X6).addReg(Reg).addImm(0xF),
945 MCSTI);
946 EmitToStreamer(
947 *OutStreamer,
948 MCInstBuilder(RISCV::LBU).addReg(RISCV::X6).addReg(RISCV::X6).addImm(0),
949 MCSTI);
950 EmitToStreamer(*OutStreamer,
951 MCInstBuilder(RISCV::BEQ)
952 .addReg(RISCV::X6)
953 .addReg(RISCV::X7)
954 .addExpr(MCSymbolRefExpr::create(ReturnSym, OutContext)),
955 MCSTI);
956
957 OutStreamer->emitLabel(HandleMismatchSym);
958
959 // | Previous stack frames... |
960 // +=================================+ <-- [SP + 256]
961 // | ... |
962 // | |
963 // | Stack frame space for x12 - x31.|
964 // | |
965 // | ... |
966 // +---------------------------------+ <-- [SP + 96]
967 // | Saved x11(arg1), as |
968 // | __hwasan_check_* clobbers it. |
969 // +---------------------------------+ <-- [SP + 88]
970 // | Saved x10(arg0), as |
971 // | __hwasan_check_* clobbers it. |
972 // +---------------------------------+ <-- [SP + 80]
973 // | |
974 // | Stack frame space for x9. |
975 // +---------------------------------+ <-- [SP + 72]
976 // | |
977 // | Saved x8(fp), as |
978 // | __hwasan_check_* clobbers it. |
979 // +---------------------------------+ <-- [SP + 64]
980 // | ... |
981 // | |
982 // | Stack frame space for x2 - x7. |
983 // | |
984 // | ... |
985 // +---------------------------------+ <-- [SP + 16]
986 // | Return address (x1) for caller |
987 // | of __hwasan_check_*. |
988 // +---------------------------------+ <-- [SP + 8]
989 // | Reserved place for x0, possibly |
990 // | junk, since we don't save it. |
991 // +---------------------------------+ <-- [x2 / SP]
992
993 // Adjust sp
994 EmitToStreamer(*OutStreamer,
995 MCInstBuilder(RISCV::ADDI)
996 .addReg(RISCV::X2)
997 .addReg(RISCV::X2)
998 .addImm(-256),
999 MCSTI);
1000
1001 // store x10(arg0) by new sp
1002 EmitToStreamer(*OutStreamer,
1003 MCInstBuilder(RISCV::SD)
1004 .addReg(RISCV::X10)
1005 .addReg(RISCV::X2)
1006 .addImm(8 * 10),
1007 MCSTI);
1008 // store x11(arg1) by new sp
1009 EmitToStreamer(*OutStreamer,
1010 MCInstBuilder(RISCV::SD)
1011 .addReg(RISCV::X11)
1012 .addReg(RISCV::X2)
1013 .addImm(8 * 11),
1014 MCSTI);
1015
1016 // store x8(fp) by new sp
1017 EmitToStreamer(
1018 *OutStreamer,
1019 MCInstBuilder(RISCV::SD).addReg(RISCV::X8).addReg(RISCV::X2).addImm(8 *
1020 8),
1021 MCSTI);
1022 // store x1(ra) by new sp
1023 EmitToStreamer(
1024 *OutStreamer,
1025 MCInstBuilder(RISCV::SD).addReg(RISCV::X1).addReg(RISCV::X2).addImm(1 *
1026 8),
1027 MCSTI);
1028 if (Reg != RISCV::X10)
1029 EmitToStreamer(
1030 *OutStreamer,
1031 MCInstBuilder(RISCV::ADDI).addReg(RISCV::X10).addReg(Reg).addImm(0),
1032 MCSTI);
1033 EmitToStreamer(*OutStreamer,
1034 MCInstBuilder(RISCV::ADDI)
1035 .addReg(RISCV::X11)
1036 .addReg(RISCV::X0)
1037 .addImm(AccessInfo & HWASanAccessInfo::RuntimeMask),
1038 MCSTI);
1039
1040 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::PseudoCALL).addExpr(Expr),
1041 MCSTI);
1042 }
1043}
1044
1045void RISCVAsmPrinter::emitNoteGnuProperty(const Module &M) {
1046 assert(TM.getTargetTriple().isOSBinFormatELF() && "invalid binary format");
1047 uint32_t GnuProps = 0;
1048 if (const Metadata *const Flag = M.getModuleFlag("cf-protection-return");
1049 Flag && !mdconst::extract<ConstantInt>(Flag)->isZero())
1051
1052 if (const Metadata *const Flag = M.getModuleFlag("cf-protection-branch");
1053 Flag && !mdconst::extract<ConstantInt>(Flag)->isZero()) {
1054 using namespace llvm::RISCVISAUtils;
1055 const Metadata *const CFBranchLabelSchemeFlag =
1056 M.getModuleFlag("cf-branch-label-scheme");
1057 assert(CFBranchLabelSchemeFlag &&
1058 "cf-protection=branch should come with cf-branch-label-scheme=... "
1059 "on RISC-V targets");
1060 const StringRef CFBranchLabelScheme =
1061 cast<MDString>(CFBranchLabelSchemeFlag)->getString();
1062 switch (llvm::RISCVCFI::getZicfilpLabelScheme(CFBranchLabelScheme)) {
1064 reportFatalInternalError("invalid RISC-V Zicfilp label scheme");
1067 break;
1069 // TODO: Emit the func-sig bit after the feature is implemented
1070 reportFatalUsageError("the complete func-sig label scheme feature is not "
1071 "implemented yet");
1072 break;
1073 }
1074 }
1075
1076 if (!GnuProps)
1077 return;
1078
1079 auto &RTS = static_cast<RISCVTargetELFStreamer &>(getTargetStreamer());
1080 RTS.emitNoteGnuPropertySection(GnuProps);
1081}
1082
1084 const AsmPrinter &AP) {
1085 MCContext &Ctx = AP.OutContext;
1086 RISCV::Specifier Kind;
1087
1088 switch (MO.getTargetFlags()) {
1089 default:
1090 llvm_unreachable("Unknown target flag on GV operand");
1091 case RISCVII::MO_None:
1092 Kind = RISCV::S_None;
1093 break;
1094 case RISCVII::MO_CALL:
1095 Kind = RISCV::S_CALL_PLT;
1096 break;
1097 case RISCVII::MO_LO:
1098 Kind = RISCV::S_LO;
1099 break;
1100 case RISCVII::MO_HI:
1101 Kind = ELF::R_RISCV_HI20;
1102 break;
1104 Kind = RISCV::S_PCREL_LO;
1105 break;
1107 Kind = RISCV::S_PCREL_HI;
1108 break;
1109 case RISCVII::MO_GOT_HI:
1110 Kind = RISCV::S_GOT_HI;
1111 break;
1113 Kind = RISCV::S_TPREL_LO;
1114 break;
1116 Kind = ELF::R_RISCV_TPREL_HI20;
1117 break;
1119 Kind = ELF::R_RISCV_TPREL_ADD;
1120 break;
1122 Kind = ELF::R_RISCV_TLS_GOT_HI20;
1123 break;
1125 Kind = ELF::R_RISCV_TLS_GD_HI20;
1126 break;
1128 Kind = ELF::R_RISCV_TLSDESC_HI20;
1129 break;
1131 Kind = ELF::R_RISCV_TLSDESC_LOAD_LO12;
1132 break;
1134 Kind = ELF::R_RISCV_TLSDESC_ADD_LO12;
1135 break;
1137 Kind = ELF::R_RISCV_TLSDESC_CALL;
1138 break;
1140 Kind = RISCV::S_QC_ACCESS;
1141 break;
1142 }
1143
1144 const MCExpr *ME = MCSymbolRefExpr::create(Sym, Ctx);
1145
1146 if (!MO.isJTI() && !MO.isMBB() && MO.getOffset())
1148 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
1149
1150 if (Kind != RISCV::S_None)
1151 ME = MCSpecifierExpr::create(ME, Kind, Ctx);
1152 return MCOperand::createExpr(ME);
1153}
1154
1155bool RISCVAsmPrinter::lowerOperand(const MachineOperand &MO,
1156 MCOperand &MCOp) const {
1157 switch (MO.getType()) {
1158 default:
1159 report_fatal_error("lowerOperand: unknown operand type");
1161 // Ignore all implicit register operands.
1162 if (MO.isImplicit())
1163 return false;
1164 MCOp = MCOperand::createReg(MO.getReg());
1165 break;
1167 // Regmasks are like implicit defs.
1168 return false;
1170 MCOp = MCOperand::createImm(MO.getImm());
1171 break;
1173 MCOp = lowerSymbolOperand(MO, MO.getMBB()->getSymbol(), *this);
1174 break;
1176 MCOp = lowerSymbolOperand(MO, getSymbolPreferLocal(*MO.getGlobal()), *this);
1177 break;
1179 MCOp = lowerSymbolOperand(MO, GetBlockAddressSymbol(MO.getBlockAddress()),
1180 *this);
1181 break;
1183 MCOp = lowerSymbolOperand(MO, GetExternalSymbolSymbol(MO.getSymbolName()),
1184 *this);
1185 break;
1187 MCOp = lowerSymbolOperand(MO, GetCPISymbol(MO.getIndex()), *this);
1188 break;
1190 MCOp = lowerSymbolOperand(MO, GetJTISymbol(MO.getIndex()), *this);
1191 break;
1193 MCOp = lowerSymbolOperand(MO, MO.getMCSymbol(), *this);
1194 break;
1195 }
1196 return true;
1197}
1198
1200 MCInst &OutMI,
1201 const RISCVSubtarget *STI) {
1203 RISCVVPseudosTable::getPseudoInfo(MI->getOpcode());
1204 if (!RVV)
1205 return false;
1206
1207 OutMI.setOpcode(RVV->BaseInstr);
1208
1209 const TargetInstrInfo *TII = STI->getInstrInfo();
1210 const TargetRegisterInfo *TRI = STI->getRegisterInfo();
1211 assert(TRI && "TargetRegisterInfo expected");
1212
1213 const MCInstrDesc &MCID = MI->getDesc();
1214 uint64_t TSFlags = MCID.TSFlags;
1215 unsigned NumOps = MI->getNumExplicitOperands();
1216
1217 // Skip policy, SEW, VL, VXRM/FRM operands which are the last operands if
1218 // present.
1219 if (RISCVII::hasVecPolicyOp(TSFlags))
1220 --NumOps;
1221 if (RISCVII::hasSEWOp(TSFlags))
1222 --NumOps;
1223 if (RISCVII::hasVLOp(TSFlags))
1224 --NumOps;
1225 if (RISCVII::hasRoundModeOp(TSFlags))
1226 --NumOps;
1227 if (RISCVII::hasTWidenOp(TSFlags))
1228 --NumOps;
1229 if (RISCVII::hasTMOp(TSFlags))
1230 --NumOps;
1231 if (RISCVII::hasTKOp(TSFlags))
1232 --NumOps;
1233
1234 bool hasVLOutput = RISCVInstrInfo::isFaultOnlyFirstLoad(*MI);
1235 for (unsigned OpNo = 0; OpNo != NumOps; ++OpNo) {
1236 const MachineOperand &MO = MI->getOperand(OpNo);
1237 // Skip vl output. It should be the second output.
1238 if (hasVLOutput && OpNo == 1)
1239 continue;
1240
1241 // Skip passthru op. It should be the first operand after the defs.
1242 if (OpNo == MI->getNumExplicitDefs() && MO.isReg() && MO.isTied()) {
1243 assert(MCID.getOperandConstraint(OpNo, MCOI::TIED_TO) == 0 &&
1244 "Expected tied to first def.");
1245 const MCInstrDesc &OutMCID = TII->get(OutMI.getOpcode());
1246 // Skip if the next operand in OutMI is not supposed to be tied. Unless it
1247 // is a _TIED instruction.
1248 if (OutMCID.getOperandConstraint(OutMI.getNumOperands(), MCOI::TIED_TO) <
1249 0 &&
1250 !RISCVII::isTiedPseudo(TSFlags))
1251 continue;
1252 }
1253
1254 MCOperand MCOp;
1255 switch (MO.getType()) {
1256 default:
1257 llvm_unreachable("Unknown operand type");
1259 Register Reg = MO.getReg();
1260
1261 if (RISCV::VRM2RegClass.contains(Reg) ||
1262 RISCV::VRM4RegClass.contains(Reg) ||
1263 RISCV::VRM8RegClass.contains(Reg)) {
1264 Reg = TRI->getSubReg(Reg, RISCV::sub_vrm1_0);
1265 assert(Reg && "Subregister does not exist");
1266 } else if (RISCV::FPR16RegClass.contains(Reg)) {
1267 Reg =
1268 TRI->getMatchingSuperReg(Reg, RISCV::sub_16, &RISCV::FPR32RegClass);
1269 assert(Reg && "Subregister does not exist");
1270 } else if (RISCV::FPR64RegClass.contains(Reg)) {
1271 Reg = TRI->getSubReg(Reg, RISCV::sub_32);
1272 assert(Reg && "Superregister does not exist");
1273 } else if (RISCV::VRN2M1RegClass.contains(Reg) ||
1274 RISCV::VRN2M2RegClass.contains(Reg) ||
1275 RISCV::VRN2M4RegClass.contains(Reg) ||
1276 RISCV::VRN3M1RegClass.contains(Reg) ||
1277 RISCV::VRN3M2RegClass.contains(Reg) ||
1278 RISCV::VRN4M1RegClass.contains(Reg) ||
1279 RISCV::VRN4M2RegClass.contains(Reg) ||
1280 RISCV::VRN5M1RegClass.contains(Reg) ||
1281 RISCV::VRN6M1RegClass.contains(Reg) ||
1282 RISCV::VRN7M1RegClass.contains(Reg) ||
1283 RISCV::VRN8M1RegClass.contains(Reg)) {
1284 Reg = TRI->getSubReg(Reg, RISCV::sub_vrm1_0);
1285 assert(Reg && "Subregister does not exist");
1286 }
1287
1288 MCOp = MCOperand::createReg(Reg);
1289 break;
1290 }
1292 MCOp = MCOperand::createImm(MO.getImm());
1293 break;
1294 }
1295 OutMI.addOperand(MCOp);
1296 }
1297
1298 // Unmasked pseudo instructions need to append dummy mask operand to
1299 // V instructions. All V instructions are modeled as the masked version.
1300 const MCInstrDesc &OutMCID = TII->get(OutMI.getOpcode());
1301 if (OutMI.getNumOperands() < OutMCID.getNumOperands()) {
1302 assert(OutMCID.operands()[OutMI.getNumOperands()].OperandType ==
1304 "Expected only mask operand to be missing");
1305 OutMI.addOperand(MCOperand::createReg(RISCV::NoRegister));
1306 }
1307
1308 assert(OutMI.getNumOperands() == OutMCID.getNumOperands());
1309 return true;
1310}
1311
1312void RISCVAsmPrinter::lowerToMCInst(const MachineInstr *MI, MCInst &OutMI) {
1313 if (lowerRISCVVMachineInstrToMCInst(MI, OutMI, STI))
1314 return;
1315
1316 OutMI.setOpcode(MI->getOpcode());
1317
1318 for (const MachineOperand &MO : MI->operands()) {
1319 MCOperand MCOp;
1320 if (lowerOperand(MO, MCOp))
1321 OutMI.addOperand(MCOp);
1322 }
1323}
1324
1325void RISCVAsmPrinter::emitMachineConstantPoolValue(
1326 MachineConstantPoolValue *MCPV) {
1327 auto *RCPV = static_cast<RISCVConstantPoolValue *>(MCPV);
1328 MCSymbol *MCSym;
1329
1330 if (RCPV->isGlobalValue()) {
1331 auto *GV = RCPV->getGlobalValue();
1332 MCSym = getSymbol(GV);
1333 } else {
1334 assert(RCPV->isExtSymbol() && "unrecognized constant pool type");
1335 auto Sym = RCPV->getSymbol();
1336 MCSym = GetExternalSymbolSymbol(Sym);
1337 }
1338
1339 const MCExpr *Expr = MCSymbolRefExpr::create(MCSym, OutContext);
1340 uint64_t Size = getDataLayout().getTypeAllocSize(RCPV->getType());
1341 OutStreamer->emitValue(Expr, Size);
1342}
1343
1344MaybeAlign
1345RISCVAsmPrinter::getRequiredGlobalAlignmentGranule(const GlobalVariable &GV) {
1346 const MCSubtargetInfo &MCSTI = TM.getMCSubtargetInfo();
1347 if (!GV.getValueType()->isSized())
1348 return std::nullopt;
1349
1350 // When the alignment granule is determined by a CHERI requirement,
1351 // don't increase alignment if a custom section has been specified,
1352 // as doing so can break existing code that relies on the lack of
1353 // padding (e.g. linker sets).
1354 if (GV.hasSection())
1355 return std::nullopt;
1356
1357 uint64_t Size = GV.getGlobalSize(getDataLayout());
1358 if (MCSTI.hasFeature(RISCV::FeatureVendorXCheriot))
1359 return CHERIoTCapabilityFormat::getRequiredAlignment(Size);
1360
1361 if (MCSTI.hasFeature(RISCV::FeatureStdExtY)) {
1362 if (MCSTI.hasFeature(RISCV::Feature64Bit))
1364 else
1366 }
1367
1368 return std::nullopt;
1369}
1370
1371char RISCVAsmPrinter::ID = 0;
1372
1373INITIALIZE_PASS(RISCVAsmPrinter, "riscv-asm-printer", "RISC-V Assembly Printer",
1374 false, false)
1375
1378 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1379 MAM.getResult<AsmPrinterAnalysis>(M).getPrinter());
1382 return PreservedAnalyses::all();
1383}
1384
1385PreservedAnalyses
1388 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1390 .getCachedResult<AsmPrinterAnalysis>(*MF.getFunction().getParent())
1391 ->getPrinter());
1394 return PreservedAnalyses::all();
1395}
1396
1399 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1400 MAM.getResult<AsmPrinterAnalysis>(M).getPrinter());
1403 return PreservedAnalyses::all();
1404}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
static MCDisassembler::DecodeStatus addOperand(MCInst &Inst, const MCOperand &Opnd)
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock & MBB
static const Function * getParent(const Value *V)
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
dxil translate DXIL Translate Metadata
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Module.h This file contains the declarations for the Module class.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
static MCOperand lowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym, const AsmPrinter &AP)
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
print mir2vec MIR2Vec Vocabulary Printer Pass
Definition MIR2Vec.cpp:621
Machine Check Debug Module
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define P(N)
ModuleAnalysisManager MAM
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
static bool lowerRISCVVMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI, const RISCVSubtarget *STI)
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeRISCVAsmPrinter()
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:484
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition Statistic.h:171
std::unique_ptr< MCStreamer > && Streamer
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
This class is intended to be used as a driving class for all asm writers.
Definition AsmPrinter.h:91
bool doInitialization(Module &M) override
Set up the AsmPrinter when we are working on a new module.
MCContext & OutContext
This is the context for the output file that we are streaming.
Definition AsmPrinter.h:101
bool doFinalization(Module &M) override
Shut down the asmprinter.
bool runOnMachineFunction(MachineFunction &MF) override
Emit the specified function out to the OutStreamer.
Definition AsmPrinter.h:453
virtual bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, const char *ExtraCode, raw_ostream &OS)
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant as...
virtual void emitFunctionEntryLabel()
EmitFunctionEntryLabel - Emit the label that is the entrypoint for the function.
virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, const char *ExtraCode, raw_ostream &OS)
Print the specified operand of MI, an INLINEASM instruction, using the specified assembler variant.
bool hasSection() const
Check if this global has a custom object file section.
Type * getValueType() const
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
Definition Globals.cpp:640
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition MCExpr.h:342
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition MCExpr.cpp:212
Context object for machine code objects.
Definition MCContext.h:83
Base class for the full range of assembler expressions which are needed for parsing.
Definition MCExpr.h:34
Instances of this class represent a single low-level machine instruction.
Definition MCInst.h:188
unsigned getNumOperands() const
Definition MCInst.h:212
unsigned getOpcode() const
Definition MCInst.h:202
void addOperand(const MCOperand Op)
Definition MCInst.h:215
void setOpcode(unsigned Op)
Definition MCInst.h:201
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
ArrayRef< MCOperandInfo > operands() const
int getOperandConstraint(unsigned OpNum, MCOI::OperandConstraint Constraint) const
Returns the value of the specified operand constraint if it is present.
Instances of this class represent operands of the MCInst class.
Definition MCInst.h:40
static MCOperand createExpr(const MCExpr *Val)
Definition MCInst.h:166
int64_t getImm() const
Definition MCInst.h:84
static MCOperand createReg(MCRegister Reg)
Definition MCInst.h:138
static MCOperand createImm(int64_t Val)
Definition MCInst.h:145
const MCExpr * getExpr() const
Definition MCInst.h:118
static const MCSpecifierExpr * create(const MCExpr *Expr, Spec S, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition MCExpr.cpp:743
Streaming machine code generation interface.
Definition MCStreamer.h:222
virtual void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI)
Emit the given Instruction into the current section.
virtual bool emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute)=0
Add the given Attribute to Symbol.
virtual void emitCodeAlignment(Align Alignment, const MCSubtargetInfo &STI, unsigned MaxBytesToEmit=0)
Emit nops until the byte alignment ByteAlignment is reached.
virtual bool hasRawTextSupport() const
Return true if this asm streamer supports emitting unformatted text to the .s file with EmitRawText.
Definition MCStreamer.h:385
MCContext & getContext() const
Definition MCStreamer.h:326
void emitValue(const MCExpr *Value, unsigned Size, SMLoc Loc=SMLoc())
virtual void emitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc())
Emit a label for Symbol into the current section.
MCTargetStreamer * getTargetStreamer()
Definition MCStreamer.h:336
virtual void switchSection(MCSection *Section, uint32_t Subsec=0)
Set the current section where code is being emitted to Section.
bool hasFeature(unsigned Feature) const
const FeatureBitset & ToggleFeature(uint64_t FB)
Toggle a feature and return the re-computed feature bits.
ArrayRef< SubtargetFeatureKV > getAllProcessorFeatures() const
Return processor features.
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition MCExpr.h:213
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
LLVM_ABI void print(raw_ostream &OS, const MCAsmInfo *MAI) const
print - Print the value to the stream OS.
Definition MCSymbol.cpp:59
StringRef getName() const
getName - Get the symbol name.
Definition MCSymbol.h:188
MachineInstrBundleIterator< const MachineInstr > const_iterator
LLVM_ABI MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Function & getFunction()
Return the LLVM function that this machine code represents.
Representation of each machine instruction.
Flags getFlags() const
Return the raw flags of the source value,.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
int64_t getImm() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
MachineBasicBlock * getMBB() const
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
bool isJTI() const
isJTI - Tests if this is a MO_JumpTableIndex operand.
const BlockAddress * getBlockAddress() const
unsigned getTargetFlags() const
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
MCSymbol * getMCSymbol() const
@ MO_Immediate
Immediate operand.
@ MO_ConstantPoolIndex
Address of indexed Constant in Constant Pool.
@ MO_MCSymbol
MCSymbol reference (for debug/eh info)
@ MO_GlobalAddress
Address of a global value.
@ MO_RegisterMask
Mask of preserved registers.
@ MO_BlockAddress
Address of a basic block.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_Register
Register operand.
@ MO_ExternalSymbol
Name of external global symbol.
@ MO_JumpTableIndex
Address of indexed Jump Table for switch.
int64_t getOffset() const
Return the offset from the symbol in this operand.
bool isMBB() const
isMBB - Tests if this is a MO_MachineBasicBlock operand.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
static LLVM_ABI bool isSupportedExtensionFeature(StringRef Ext)
static LLVM_ABI llvm::Expected< std::unique_ptr< RISCVISAInfo > > parseArchString(StringRef Arch, bool EnableExperimentalExtension, bool ExperimentalExtensionVersionCheck=true)
Parse RISC-V ISA info from arch string.
static const char * getRegisterName(MCRegister Reg)
bool requiresNTLHint(const MachineInstr &MI) const
Return true if the instruction requires an NTL hint to be emitted.
const RISCVRegisterInfo * getRegisterInfo() const override
const RISCVInstrInfo * getInstrInfo() const override
virtual void emitDirectiveVariantCC(MCSymbol &Symbol)
void emitTargetAttributes(const MCSubtargetInfo &STI, bool EmitStackAlign)
void setFlagsFromFeatures(const MCSubtargetInfo &STI)
void setTargetABI(RISCVABI::ABI ABI)
virtual void emitDirectiveOptionArch(ArrayRef< RISCVOptionArchArg > Args)
Wrapper class representing virtual and physical registers.
Definition Register.h:20
reference emplace_back(ArgTypes &&... Args)
LLVM_ABI void recordStatepoint(const MCSymbol &L, const MachineInstr &MI)
Generate a stackmap record for a statepoint instruction.
LLVM_ABI void recordPatchPoint(const MCSymbol &L, const MachineInstr &MI)
Generate a stackmap record for a patchpoint instruction.
LLVM_ABI void recordStackMap(const MCSymbol &L, const MachineInstr &MI)
Generate a stackmap record for a stackmap instruction.
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
Definition StringRef.h:661
TargetInstrInfo - Interface to description of machine instruction set.
Primary interface to the complete machine description for the target machine.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
bool isSized() const
Return true if it makes sense to take the size of this type.
Definition Type.h:321
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ SHF_ALLOC
Definition ELF.h:1259
@ SHF_GROUP
Definition ELF.h:1281
@ SHF_EXECINSTR
Definition ELF.h:1262
@ SHT_PROGBITS
Definition ELF.h:1157
@ GNU_PROPERTY_RISCV_FEATURE_1_CFI_LP_UNLABELED
Definition ELF.h:1925
@ GNU_PROPERTY_RISCV_FEATURE_1_CFI_SS
Definition ELF.h:1926
ABI getTargetABI(StringRef ABIName)
Expected< ABI > computeTargetABI(const MCSubtargetInfo &STI, StringRef ABIName)
ZicfilpLabelSchemeKind getZicfilpLabelScheme(const StringRef CFBranchLabelScheme)
static bool hasRoundModeOp(uint64_t TSFlags)
static bool hasTWidenOp(uint64_t TSFlags)
static bool isTiedPseudo(uint64_t TSFlags)
static bool hasTKOp(uint64_t TSFlags)
static bool hasVLOp(uint64_t TSFlags)
static bool hasTMOp(uint64_t TSFlags)
static bool hasVecPolicyOp(uint64_t TSFlags)
static bool hasSEWOp(uint64_t TSFlags)
void generateMCInstSeq(int64_t Val, const MCSubtargetInfo &STI, MCRegister DestReg, SmallVectorImpl< MCInst > &Insts)
bool compress(MCInst &OutInst, const MCInst &MI, const MCSubtargetInfo &STI)
uint16_t Specifier
void emitInstruction(MCObjectStreamer &, const MCInst &Inst, const MCSubtargetInfo &STI)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
Definition Metadata.h:679
This is an optimization pass for GlobalISel generic memory operations.
bool errorToBool(Error Err)
Helper for converting an Error to a bool.
Definition Error.h:1129
@ Offset
Definition DWP.cpp:577
static const MachineMemOperand::Flags MONontemporalBit1
OuterAnalysisManagerProxy< ModuleAnalysisManager, MachineFunction > ModuleAnalysisManagerMachineFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
Target & getTheRISCV32Target()
static const MachineMemOperand::Flags MONontemporalBit0
std::string utostr(uint64_t X, bool isNeg=false)
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
Target & getTheRISCV64beTarget()
LLVM_ABI void reportFatalInternalError(Error Err)
Report a fatal error that indicates a bug in LLVM.
Definition Error.cpp:173
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
LLVM_ABI void setupModuleAsmPrinter(Module &M, ModuleAnalysisManager &MAM, AsmPrinter &AsmPrinter)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition Error.h:769
Target & getTheRISCV64Target()
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1933
LLVM_ABI void setupMachineFunctionAsmPrinter(MachineFunctionAnalysisManager &MFAM, MachineFunction &MF, AsmPrinter &AsmPrinter)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
Definition MathExtras.h:567
@ MCSA_Weak
.weak
@ MCSA_ELF_TypeFunction
.type _foo, STT_FUNC # aka @function
@ MCSA_Hidden
.hidden (ELF)
Target & getTheRISCV32beTarget()
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
static Align getRequiredAlignment(AddressType Length)
Returns the required alignment for an allocation of size Length.
RegisterAsmPrinter - Helper template for registering a target specific assembly printer,...