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
653 MCSubtargetInfo SubtargetInfo = TM.getMCSubtargetInfo();
654
655 // Use module flag to update feature bits.
656 if (auto *MD = dyn_cast_or_null<MDNode>(M.getModuleFlag("riscv-isa"))) {
657 for (auto &ISA : MD->operands()) {
658 if (auto *ISAString = dyn_cast_or_null<MDString>(ISA)) {
659 auto ParseResult = llvm::RISCVISAInfo::parseArchString(
660 ISAString->getString(), /*EnableExperimentalExtension=*/true,
661 /*ExperimentalExtensionVersionCheck=*/true);
662 if (!errorToBool(ParseResult.takeError())) {
663 auto &ISAInfo = *ParseResult;
664 for (const auto &Feature : SubtargetInfo.getAllProcessorFeatures()) {
665 if (ISAInfo->hasExtension(Feature.key()) &&
666 !SubtargetInfo.hasFeature(Feature.Value))
667 SubtargetInfo.ToggleFeature(Feature.key());
668 }
669 }
670 }
671 }
672
673 RTS.setFlagsFromFeatures(SubtargetInfo);
674 }
675
676 if (TM.getTargetTriple().isOSBinFormatELF())
677 emitAttributes(SubtargetInfo);
678}
679
680void RISCVAsmPrinter::emitEndOfAsmFile(Module &M) {
681 RISCVTargetStreamer &RTS = getTargetStreamer();
682
683 if (TM.getTargetTriple().isOSBinFormatELF()) {
685 emitNoteGnuProperty(M);
686 }
687 EmitHwasanMemaccessSymbols(M);
688}
689
690void RISCVAsmPrinter::emitAttributes(const MCSubtargetInfo &SubtargetInfo) {
691 RISCVTargetStreamer &RTS = getTargetStreamer();
692 // Use MCSubtargetInfo from TargetMachine. Individual functions may have
693 // attributes that differ from other functions in the module and we have no
694 // way to know which function is correct.
695 RTS.emitTargetAttributes(SubtargetInfo, /*EmitStackAlign*/ true);
696}
697
698void RISCVAsmPrinter::emitFunctionEntryLabel() {
699 const auto *RMFI = MF->getInfo<RISCVMachineFunctionInfo>();
700 if (RMFI->isVectorCall()) {
701 RISCVTargetStreamer &RTS = getTargetStreamer();
702 RTS.emitDirectiveVariantCC(*CurrentFnSym);
703 }
705}
706
707// Force static initialization.
715
716void RISCVAsmPrinter::LowerHWASAN_CHECK_MEMACCESS(const MachineInstr &MI) {
717 Register Reg = MI.getOperand(0).getReg();
718 uint32_t AccessInfo = MI.getOperand(1).getImm();
719 MCSymbol *&Sym =
720 HwasanMemaccessSymbols[HwasanMemaccessTuple(Reg, AccessInfo)];
721 if (!Sym) {
722 // FIXME: Make this work on non-ELF.
723 if (!TM.getTargetTriple().isOSBinFormatELF())
724 report_fatal_error("llvm.hwasan.check.memaccess only supported on ELF");
725
726 std::string SymName = "__hwasan_check_x" + utostr(Reg - RISCV::X0) + "_" +
727 utostr(AccessInfo) + "_short";
728 Sym = OutContext.getOrCreateSymbol(SymName);
729 }
730 auto Res = MCSymbolRefExpr::create(Sym, OutContext);
731 auto Expr = MCSpecifierExpr::create(Res, RISCV::S_CALL_PLT, OutContext);
732
733 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::PseudoCALL).addExpr(Expr));
734}
735
736void RISCVAsmPrinter::LowerKCFI_CHECK(const MachineInstr &MI) {
737 Register AddrReg = MI.getOperand(0).getReg();
738 assert(std::next(MI.getIterator())->isCall() &&
739 "KCFI_CHECK not followed by a call instruction");
740 assert(std::next(MI.getIterator())->getOperand(0).getReg() == AddrReg &&
741 "KCFI_CHECK call target doesn't match call operand");
742
743 // Temporary registers for comparing the hashes. If a register is used
744 // for the call target, or reserved by the user, we can clobber another
745 // temporary register as the check is immediately followed by the
746 // call. The check defaults to X6/X7, but can fall back to X28-X31 if
747 // needed.
748 unsigned ScratchRegs[] = {RISCV::X6, RISCV::X7};
749 unsigned NextReg = RISCV::X28;
750 auto isRegAvailable = [&](unsigned Reg) {
751 return Reg != AddrReg && !STI->isRegisterReservedByUser(Reg);
752 };
753 for (auto &Reg : ScratchRegs) {
754 if (isRegAvailable(Reg))
755 continue;
756 while (!isRegAvailable(NextReg))
757 ++NextReg;
758 Reg = NextReg++;
759 if (Reg > RISCV::X31)
760 report_fatal_error("Unable to find scratch registers for KCFI_CHECK");
761 }
762
763 if (AddrReg == RISCV::X0) {
764 // Checking X0 makes no sense. Instead of emitting a load, zero
765 // ScratchRegs[0].
766 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::ADDI)
767 .addReg(ScratchRegs[0])
768 .addReg(RISCV::X0)
769 .addImm(0));
770 } else {
771 // Adjust the offset for patchable-function-prefix. This assumes that
772 // patchable-function-prefix is the same for all functions.
773 int NopSize = STI->hasStdExtZca() ? 2 : 4;
774 int64_t PrefixNops =
775 MI.getMF()->getFunction().getFnAttributeAsParsedInteger(
776 "patchable-function-prefix");
777
778 // Load the target function type hash.
779 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::LW)
780 .addReg(ScratchRegs[0])
781 .addReg(AddrReg)
782 .addImm(-(PrefixNops * NopSize + 4)));
783 }
784
785 // Load the expected 32-bit type hash.
786 const int64_t Type = MI.getOperand(1).getImm();
787 const int64_t Hi20 = ((Type + 0x800) >> 12) & 0xFFFFF;
788 const int64_t Lo12 = SignExtend64<12>(Type);
789 if (Hi20) {
790 EmitToStreamer(
791 *OutStreamer,
792 MCInstBuilder(RISCV::LUI).addReg(ScratchRegs[1]).addImm(Hi20));
793 }
794 if (Lo12 || Hi20 == 0) {
795 EmitToStreamer(*OutStreamer,
796 MCInstBuilder((STI->hasFeature(RISCV::Feature64Bit) && Hi20)
797 ? RISCV::ADDIW
798 : RISCV::ADDI)
799 .addReg(ScratchRegs[1])
800 .addReg(ScratchRegs[1])
801 .addImm(Lo12));
802 }
803
804 // Compare the hashes and trap if there's a mismatch.
805 MCSymbol *Pass = OutContext.createTempSymbol();
806 EmitToStreamer(*OutStreamer,
807 MCInstBuilder(RISCV::BEQ)
808 .addReg(ScratchRegs[0])
809 .addReg(ScratchRegs[1])
810 .addExpr(MCSymbolRefExpr::create(Pass, OutContext)));
811
812 MCSymbol *Trap = OutContext.createTempSymbol();
813 OutStreamer->emitLabel(Trap);
814 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::EBREAK));
815 emitKCFITrapEntry(*MI.getMF(), Trap);
816 OutStreamer->emitLabel(Pass);
817}
818
819void RISCVAsmPrinter::EmitHwasanMemaccessSymbols(Module &M) {
820 if (HwasanMemaccessSymbols.empty())
821 return;
822
823 assert(TM.getTargetTriple().isOSBinFormatELF());
824 // Use MCSubtargetInfo from TargetMachine. Individual functions may have
825 // attributes that differ from other functions in the module and we have no
826 // way to know which function is correct.
827 const MCSubtargetInfo &MCSTI = TM.getMCSubtargetInfo();
828
829 MCSymbol *HwasanTagMismatchV2Sym =
830 OutContext.getOrCreateSymbol("__hwasan_tag_mismatch_v2");
831 // Annotate symbol as one having incompatible calling convention, so
832 // run-time linkers can instead eagerly bind this function.
833 RISCVTargetStreamer &RTS = getTargetStreamer();
834 RTS.emitDirectiveVariantCC(*HwasanTagMismatchV2Sym);
835
836 const MCSymbolRefExpr *HwasanTagMismatchV2Ref =
837 MCSymbolRefExpr::create(HwasanTagMismatchV2Sym, OutContext);
838 auto Expr = MCSpecifierExpr::create(HwasanTagMismatchV2Ref, RISCV::S_CALL_PLT,
839 OutContext);
840
841 for (auto &P : HwasanMemaccessSymbols) {
842 unsigned Reg = std::get<0>(P.first);
843 uint32_t AccessInfo = std::get<1>(P.first);
844 MCSymbol *Sym = P.second;
845
846 unsigned Size =
847 1 << ((AccessInfo >> HWASanAccessInfo::AccessSizeShift) & 0xf);
848 OutStreamer->switchSection(OutContext.getELFSection(
849 ".text.hot", ELF::SHT_PROGBITS,
851 /*IsComdat=*/true));
852
854 OutStreamer->emitSymbolAttribute(Sym, MCSA_Weak);
855 OutStreamer->emitSymbolAttribute(Sym, MCSA_Hidden);
856 OutStreamer->emitLabel(Sym);
857
858 // Extract shadow offset from ptr
859 EmitToStreamer(
860 *OutStreamer,
861 MCInstBuilder(RISCV::SLLI).addReg(RISCV::X6).addReg(Reg).addImm(8),
862 MCSTI);
863 EmitToStreamer(*OutStreamer,
864 MCInstBuilder(RISCV::SRLI)
865 .addReg(RISCV::X6)
866 .addReg(RISCV::X6)
867 .addImm(12),
868 MCSTI);
869 // load shadow tag in X6, X5 contains shadow base
870 EmitToStreamer(*OutStreamer,
871 MCInstBuilder(RISCV::ADD)
872 .addReg(RISCV::X6)
873 .addReg(RISCV::X5)
874 .addReg(RISCV::X6),
875 MCSTI);
876 EmitToStreamer(
877 *OutStreamer,
878 MCInstBuilder(RISCV::LBU).addReg(RISCV::X6).addReg(RISCV::X6).addImm(0),
879 MCSTI);
880 // Extract tag from pointer and compare it with loaded tag from shadow
881 EmitToStreamer(
882 *OutStreamer,
883 MCInstBuilder(RISCV::SRLI).addReg(RISCV::X7).addReg(Reg).addImm(56),
884 MCSTI);
885 MCSymbol *HandleMismatchOrPartialSym = OutContext.createTempSymbol();
886 // X7 contains tag from the pointer, while X6 contains tag from memory
887 EmitToStreamer(*OutStreamer,
888 MCInstBuilder(RISCV::BNE)
889 .addReg(RISCV::X7)
890 .addReg(RISCV::X6)
892 HandleMismatchOrPartialSym, OutContext)),
893 MCSTI);
894 MCSymbol *ReturnSym = OutContext.createTempSymbol();
895 OutStreamer->emitLabel(ReturnSym);
896 EmitToStreamer(*OutStreamer,
897 MCInstBuilder(RISCV::JALR)
898 .addReg(RISCV::X0)
899 .addReg(RISCV::X1)
900 .addImm(0),
901 MCSTI);
902 OutStreamer->emitLabel(HandleMismatchOrPartialSym);
903
904 EmitToStreamer(*OutStreamer,
905 MCInstBuilder(RISCV::ADDI)
906 .addReg(RISCV::X28)
907 .addReg(RISCV::X0)
908 .addImm(16),
909 MCSTI);
910 MCSymbol *HandleMismatchSym = OutContext.createTempSymbol();
911 EmitToStreamer(
912 *OutStreamer,
913 MCInstBuilder(RISCV::BGEU)
914 .addReg(RISCV::X6)
915 .addReg(RISCV::X28)
916 .addExpr(MCSymbolRefExpr::create(HandleMismatchSym, OutContext)),
917 MCSTI);
918
919 EmitToStreamer(
920 *OutStreamer,
921 MCInstBuilder(RISCV::ANDI).addReg(RISCV::X28).addReg(Reg).addImm(0xF),
922 MCSTI);
923
924 if (Size != 1)
925 EmitToStreamer(*OutStreamer,
926 MCInstBuilder(RISCV::ADDI)
927 .addReg(RISCV::X28)
928 .addReg(RISCV::X28)
929 .addImm(Size - 1),
930 MCSTI);
931 EmitToStreamer(
932 *OutStreamer,
933 MCInstBuilder(RISCV::BGE)
934 .addReg(RISCV::X28)
935 .addReg(RISCV::X6)
936 .addExpr(MCSymbolRefExpr::create(HandleMismatchSym, OutContext)),
937 MCSTI);
938
939 EmitToStreamer(
940 *OutStreamer,
941 MCInstBuilder(RISCV::ORI).addReg(RISCV::X6).addReg(Reg).addImm(0xF),
942 MCSTI);
943 EmitToStreamer(
944 *OutStreamer,
945 MCInstBuilder(RISCV::LBU).addReg(RISCV::X6).addReg(RISCV::X6).addImm(0),
946 MCSTI);
947 EmitToStreamer(*OutStreamer,
948 MCInstBuilder(RISCV::BEQ)
949 .addReg(RISCV::X6)
950 .addReg(RISCV::X7)
951 .addExpr(MCSymbolRefExpr::create(ReturnSym, OutContext)),
952 MCSTI);
953
954 OutStreamer->emitLabel(HandleMismatchSym);
955
956 // | Previous stack frames... |
957 // +=================================+ <-- [SP + 256]
958 // | ... |
959 // | |
960 // | Stack frame space for x12 - x31.|
961 // | |
962 // | ... |
963 // +---------------------------------+ <-- [SP + 96]
964 // | Saved x11(arg1), as |
965 // | __hwasan_check_* clobbers it. |
966 // +---------------------------------+ <-- [SP + 88]
967 // | Saved x10(arg0), as |
968 // | __hwasan_check_* clobbers it. |
969 // +---------------------------------+ <-- [SP + 80]
970 // | |
971 // | Stack frame space for x9. |
972 // +---------------------------------+ <-- [SP + 72]
973 // | |
974 // | Saved x8(fp), as |
975 // | __hwasan_check_* clobbers it. |
976 // +---------------------------------+ <-- [SP + 64]
977 // | ... |
978 // | |
979 // | Stack frame space for x2 - x7. |
980 // | |
981 // | ... |
982 // +---------------------------------+ <-- [SP + 16]
983 // | Return address (x1) for caller |
984 // | of __hwasan_check_*. |
985 // +---------------------------------+ <-- [SP + 8]
986 // | Reserved place for x0, possibly |
987 // | junk, since we don't save it. |
988 // +---------------------------------+ <-- [x2 / SP]
989
990 // Adjust sp
991 EmitToStreamer(*OutStreamer,
992 MCInstBuilder(RISCV::ADDI)
993 .addReg(RISCV::X2)
994 .addReg(RISCV::X2)
995 .addImm(-256),
996 MCSTI);
997
998 // store x10(arg0) by new sp
999 EmitToStreamer(*OutStreamer,
1000 MCInstBuilder(RISCV::SD)
1001 .addReg(RISCV::X10)
1002 .addReg(RISCV::X2)
1003 .addImm(8 * 10),
1004 MCSTI);
1005 // store x11(arg1) by new sp
1006 EmitToStreamer(*OutStreamer,
1007 MCInstBuilder(RISCV::SD)
1008 .addReg(RISCV::X11)
1009 .addReg(RISCV::X2)
1010 .addImm(8 * 11),
1011 MCSTI);
1012
1013 // store x8(fp) by new sp
1014 EmitToStreamer(
1015 *OutStreamer,
1016 MCInstBuilder(RISCV::SD).addReg(RISCV::X8).addReg(RISCV::X2).addImm(8 *
1017 8),
1018 MCSTI);
1019 // store x1(ra) by new sp
1020 EmitToStreamer(
1021 *OutStreamer,
1022 MCInstBuilder(RISCV::SD).addReg(RISCV::X1).addReg(RISCV::X2).addImm(1 *
1023 8),
1024 MCSTI);
1025 if (Reg != RISCV::X10)
1026 EmitToStreamer(
1027 *OutStreamer,
1028 MCInstBuilder(RISCV::ADDI).addReg(RISCV::X10).addReg(Reg).addImm(0),
1029 MCSTI);
1030 EmitToStreamer(*OutStreamer,
1031 MCInstBuilder(RISCV::ADDI)
1032 .addReg(RISCV::X11)
1033 .addReg(RISCV::X0)
1034 .addImm(AccessInfo & HWASanAccessInfo::RuntimeMask),
1035 MCSTI);
1036
1037 EmitToStreamer(*OutStreamer, MCInstBuilder(RISCV::PseudoCALL).addExpr(Expr),
1038 MCSTI);
1039 }
1040}
1041
1042void RISCVAsmPrinter::emitNoteGnuProperty(const Module &M) {
1043 assert(TM.getTargetTriple().isOSBinFormatELF() && "invalid binary format");
1044 uint32_t GnuProps = 0;
1045 if (const Metadata *const Flag = M.getModuleFlag("cf-protection-return");
1046 Flag && !mdconst::extract<ConstantInt>(Flag)->isZero())
1048
1049 if (const Metadata *const Flag = M.getModuleFlag("cf-protection-branch");
1050 Flag && !mdconst::extract<ConstantInt>(Flag)->isZero()) {
1051 using namespace llvm::RISCVISAUtils;
1052 const Metadata *const CFBranchLabelSchemeFlag =
1053 M.getModuleFlag("cf-branch-label-scheme");
1054 assert(CFBranchLabelSchemeFlag &&
1055 "cf-protection=branch should come with cf-branch-label-scheme=... "
1056 "on RISC-V targets");
1057 const StringRef CFBranchLabelScheme =
1058 cast<MDString>(CFBranchLabelSchemeFlag)->getString();
1059 switch (llvm::RISCVCFI::getZicfilpLabelScheme(CFBranchLabelScheme)) {
1061 reportFatalInternalError("invalid RISC-V Zicfilp label scheme");
1064 break;
1066 // TODO: Emit the func-sig bit after the feature is implemented
1067 reportFatalUsageError("the complete func-sig label scheme feature is not "
1068 "implemented yet");
1069 break;
1070 }
1071 }
1072
1073 if (!GnuProps)
1074 return;
1075
1076 auto &RTS = static_cast<RISCVTargetELFStreamer &>(getTargetStreamer());
1077 RTS.emitNoteGnuPropertySection(GnuProps);
1078}
1079
1081 const AsmPrinter &AP) {
1082 MCContext &Ctx = AP.OutContext;
1083 RISCV::Specifier Kind;
1084
1085 switch (MO.getTargetFlags()) {
1086 default:
1087 llvm_unreachable("Unknown target flag on GV operand");
1088 case RISCVII::MO_None:
1089 Kind = RISCV::S_None;
1090 break;
1091 case RISCVII::MO_CALL:
1092 Kind = RISCV::S_CALL_PLT;
1093 break;
1094 case RISCVII::MO_LO:
1095 Kind = RISCV::S_LO;
1096 break;
1097 case RISCVII::MO_HI:
1098 Kind = ELF::R_RISCV_HI20;
1099 break;
1101 Kind = RISCV::S_PCREL_LO;
1102 break;
1104 Kind = RISCV::S_PCREL_HI;
1105 break;
1106 case RISCVII::MO_GOT_HI:
1107 Kind = RISCV::S_GOT_HI;
1108 break;
1110 Kind = RISCV::S_TPREL_LO;
1111 break;
1113 Kind = ELF::R_RISCV_TPREL_HI20;
1114 break;
1116 Kind = ELF::R_RISCV_TPREL_ADD;
1117 break;
1119 Kind = ELF::R_RISCV_TLS_GOT_HI20;
1120 break;
1122 Kind = ELF::R_RISCV_TLS_GD_HI20;
1123 break;
1125 Kind = ELF::R_RISCV_TLSDESC_HI20;
1126 break;
1128 Kind = ELF::R_RISCV_TLSDESC_LOAD_LO12;
1129 break;
1131 Kind = ELF::R_RISCV_TLSDESC_ADD_LO12;
1132 break;
1134 Kind = ELF::R_RISCV_TLSDESC_CALL;
1135 break;
1137 Kind = RISCV::S_QC_ACCESS;
1138 break;
1139 }
1140
1141 const MCExpr *ME = MCSymbolRefExpr::create(Sym, Ctx);
1142
1143 if (!MO.isJTI() && !MO.isMBB() && MO.getOffset())
1145 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
1146
1147 if (Kind != RISCV::S_None)
1148 ME = MCSpecifierExpr::create(ME, Kind, Ctx);
1149 return MCOperand::createExpr(ME);
1150}
1151
1152bool RISCVAsmPrinter::lowerOperand(const MachineOperand &MO,
1153 MCOperand &MCOp) const {
1154 switch (MO.getType()) {
1155 default:
1156 report_fatal_error("lowerOperand: unknown operand type");
1158 // Ignore all implicit register operands.
1159 if (MO.isImplicit())
1160 return false;
1161 MCOp = MCOperand::createReg(MO.getReg());
1162 break;
1164 // Regmasks are like implicit defs.
1165 return false;
1167 MCOp = MCOperand::createImm(MO.getImm());
1168 break;
1170 MCOp = lowerSymbolOperand(MO, MO.getMBB()->getSymbol(), *this);
1171 break;
1173 MCOp = lowerSymbolOperand(MO, getSymbolPreferLocal(*MO.getGlobal()), *this);
1174 break;
1176 MCOp = lowerSymbolOperand(MO, GetBlockAddressSymbol(MO.getBlockAddress()),
1177 *this);
1178 break;
1180 MCOp = lowerSymbolOperand(MO, GetExternalSymbolSymbol(MO.getSymbolName()),
1181 *this);
1182 break;
1184 MCOp = lowerSymbolOperand(MO, GetCPISymbol(MO.getIndex()), *this);
1185 break;
1187 MCOp = lowerSymbolOperand(MO, GetJTISymbol(MO.getIndex()), *this);
1188 break;
1190 MCOp = lowerSymbolOperand(MO, MO.getMCSymbol(), *this);
1191 break;
1192 }
1193 return true;
1194}
1195
1197 MCInst &OutMI,
1198 const RISCVSubtarget *STI) {
1200 RISCVVPseudosTable::getPseudoInfo(MI->getOpcode());
1201 if (!RVV)
1202 return false;
1203
1204 OutMI.setOpcode(RVV->BaseInstr);
1205
1206 const TargetInstrInfo *TII = STI->getInstrInfo();
1207 const TargetRegisterInfo *TRI = STI->getRegisterInfo();
1208 assert(TRI && "TargetRegisterInfo expected");
1209
1210 const MCInstrDesc &MCID = MI->getDesc();
1211 uint64_t TSFlags = MCID.TSFlags;
1212 unsigned NumOps = MI->getNumExplicitOperands();
1213
1214 // Skip policy, SEW, VL, VXRM/FRM operands which are the last operands if
1215 // present.
1216 if (RISCVII::hasVecPolicyOp(TSFlags))
1217 --NumOps;
1218 if (RISCVII::hasSEWOp(TSFlags))
1219 --NumOps;
1220 if (RISCVII::hasVLOp(TSFlags))
1221 --NumOps;
1222 if (RISCVII::hasRoundModeOp(TSFlags))
1223 --NumOps;
1224 if (RISCVII::hasTWidenOp(TSFlags))
1225 --NumOps;
1226 if (RISCVII::hasTMOp(TSFlags))
1227 --NumOps;
1228 if (RISCVII::hasTKOp(TSFlags))
1229 --NumOps;
1230
1231 bool hasVLOutput = RISCVInstrInfo::isFaultOnlyFirstLoad(*MI);
1232 for (unsigned OpNo = 0; OpNo != NumOps; ++OpNo) {
1233 const MachineOperand &MO = MI->getOperand(OpNo);
1234 // Skip vl output. It should be the second output.
1235 if (hasVLOutput && OpNo == 1)
1236 continue;
1237
1238 // Skip passthru op. It should be the first operand after the defs.
1239 if (OpNo == MI->getNumExplicitDefs() && MO.isReg() && MO.isTied()) {
1240 assert(MCID.getOperandConstraint(OpNo, MCOI::TIED_TO) == 0 &&
1241 "Expected tied to first def.");
1242 const MCInstrDesc &OutMCID = TII->get(OutMI.getOpcode());
1243 // Skip if the next operand in OutMI is not supposed to be tied. Unless it
1244 // is a _TIED instruction.
1245 if (OutMCID.getOperandConstraint(OutMI.getNumOperands(), MCOI::TIED_TO) <
1246 0 &&
1247 !RISCVII::isTiedPseudo(TSFlags))
1248 continue;
1249 }
1250
1251 MCOperand MCOp;
1252 switch (MO.getType()) {
1253 default:
1254 llvm_unreachable("Unknown operand type");
1256 Register Reg = MO.getReg();
1257
1258 if (RISCV::VRM2RegClass.contains(Reg) ||
1259 RISCV::VRM4RegClass.contains(Reg) ||
1260 RISCV::VRM8RegClass.contains(Reg)) {
1261 Reg = TRI->getSubReg(Reg, RISCV::sub_vrm1_0);
1262 assert(Reg && "Subregister does not exist");
1263 } else if (RISCV::FPR16RegClass.contains(Reg)) {
1264 Reg =
1265 TRI->getMatchingSuperReg(Reg, RISCV::sub_16, &RISCV::FPR32RegClass);
1266 assert(Reg && "Subregister does not exist");
1267 } else if (RISCV::FPR64RegClass.contains(Reg)) {
1268 Reg = TRI->getSubReg(Reg, RISCV::sub_32);
1269 assert(Reg && "Superregister does not exist");
1270 } else if (RISCV::VRN2M1RegClass.contains(Reg) ||
1271 RISCV::VRN2M2RegClass.contains(Reg) ||
1272 RISCV::VRN2M4RegClass.contains(Reg) ||
1273 RISCV::VRN3M1RegClass.contains(Reg) ||
1274 RISCV::VRN3M2RegClass.contains(Reg) ||
1275 RISCV::VRN4M1RegClass.contains(Reg) ||
1276 RISCV::VRN4M2RegClass.contains(Reg) ||
1277 RISCV::VRN5M1RegClass.contains(Reg) ||
1278 RISCV::VRN6M1RegClass.contains(Reg) ||
1279 RISCV::VRN7M1RegClass.contains(Reg) ||
1280 RISCV::VRN8M1RegClass.contains(Reg)) {
1281 Reg = TRI->getSubReg(Reg, RISCV::sub_vrm1_0);
1282 assert(Reg && "Subregister does not exist");
1283 }
1284
1285 MCOp = MCOperand::createReg(Reg);
1286 break;
1287 }
1289 MCOp = MCOperand::createImm(MO.getImm());
1290 break;
1291 }
1292 OutMI.addOperand(MCOp);
1293 }
1294
1295 // Unmasked pseudo instructions need to append dummy mask operand to
1296 // V instructions. All V instructions are modeled as the masked version.
1297 const MCInstrDesc &OutMCID = TII->get(OutMI.getOpcode());
1298 if (OutMI.getNumOperands() < OutMCID.getNumOperands()) {
1299 assert(OutMCID.operands()[OutMI.getNumOperands()].OperandType ==
1301 "Expected only mask operand to be missing");
1302 OutMI.addOperand(MCOperand::createReg(RISCV::NoRegister));
1303 }
1304
1305 assert(OutMI.getNumOperands() == OutMCID.getNumOperands());
1306 return true;
1307}
1308
1309void RISCVAsmPrinter::lowerToMCInst(const MachineInstr *MI, MCInst &OutMI) {
1310 if (lowerRISCVVMachineInstrToMCInst(MI, OutMI, STI))
1311 return;
1312
1313 OutMI.setOpcode(MI->getOpcode());
1314
1315 for (const MachineOperand &MO : MI->operands()) {
1316 MCOperand MCOp;
1317 if (lowerOperand(MO, MCOp))
1318 OutMI.addOperand(MCOp);
1319 }
1320}
1321
1322void RISCVAsmPrinter::emitMachineConstantPoolValue(
1323 MachineConstantPoolValue *MCPV) {
1324 auto *RCPV = static_cast<RISCVConstantPoolValue *>(MCPV);
1325 MCSymbol *MCSym;
1326
1327 if (RCPV->isGlobalValue()) {
1328 auto *GV = RCPV->getGlobalValue();
1329 MCSym = getSymbol(GV);
1330 } else {
1331 assert(RCPV->isExtSymbol() && "unrecognized constant pool type");
1332 auto Sym = RCPV->getSymbol();
1333 MCSym = GetExternalSymbolSymbol(Sym);
1334 }
1335
1336 const MCExpr *Expr = MCSymbolRefExpr::create(MCSym, OutContext);
1337 uint64_t Size = getDataLayout().getTypeAllocSize(RCPV->getType());
1338 OutStreamer->emitValue(Expr, Size);
1339}
1340
1341MaybeAlign
1342RISCVAsmPrinter::getRequiredGlobalAlignmentGranule(const GlobalVariable &GV) {
1343 const MCSubtargetInfo &MCSTI = TM.getMCSubtargetInfo();
1344 if (!GV.getValueType()->isSized())
1345 return std::nullopt;
1346
1347 uint64_t Size = GV.getGlobalSize(getDataLayout());
1348 if (MCSTI.hasFeature(RISCV::FeatureVendorXCheriot))
1349 return CHERIoTCapabilityFormat::getRequiredAlignment(Size);
1350
1351 if (MCSTI.hasFeature(RISCV::FeatureStdExtY)) {
1352 if (MCSTI.hasFeature(RISCV::Feature64Bit))
1354 else
1356 }
1357
1358 return std::nullopt;
1359}
1360
1361char RISCVAsmPrinter::ID = 0;
1362
1363INITIALIZE_PASS(RISCVAsmPrinter, "riscv-asm-printer", "RISC-V Assembly Printer",
1364 false, false)
1365
1368 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1369 MAM.getResult<AsmPrinterAnalysis>(M).getPrinter());
1372 return PreservedAnalyses::all();
1373}
1374
1375PreservedAnalyses
1378 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1380 .getCachedResult<AsmPrinterAnalysis>(*MF.getFunction().getParent())
1381 ->getPrinter());
1384 return PreservedAnalyses::all();
1385}
1386
1389 RISCVAsmPrinter &AsmPrinter = static_cast<RISCVAsmPrinter &>(
1390 MAM.getResult<AsmPrinterAnalysis>(M).getPrinter());
1393 return PreservedAnalyses::all();
1394}
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.
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)
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:668
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...
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:1917
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,...