LLVM 19.0.0git
MCAsmMacro.cpp
Go to the documentation of this file.
1//===- MCAsmMacro.h - Assembly Macros ---------------------------*- C++ -*-===//
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
11
12using namespace llvm;
13
14#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
16 OS << "\"" << Name << "\"";
17 if (Required)
18 OS << ":req";
19 if (Vararg)
20 OS << ":vararg";
21 if (!Value.empty()) {
22 OS << " = ";
23 bool first = true;
24 for (const AsmToken &T : Value) {
25 if (!first)
26 OS << ", ";
27 first = false;
28 OS << T.getString();
29 }
30 }
31 OS << "\n";
32}
33
35 OS << "Macro " << Name << ":\n";
36 OS << " Parameters:\n";
37 for (const MCAsmMacroParameter &P : Parameters) {
38 OS << " ";
39 P.dump();
40 }
41 if (!Locals.empty()) {
42 OS << " Locals:\n";
43 for (StringRef L : Locals)
44 OS << " " << L << '\n';
45 }
46 OS << " (BEGIN BODY)" << Body << "(END BODY)\n";
47}
48#endif
#define P(N)
raw_pwrite_stream & OS
Target independent representation for an assembler token.
Definition: MCAsmMacro.h:21
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
LLVM Value Representation.
Definition: Value.h:74
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::vector< std::string > Locals
Definition: MCAsmMacro.h:146
StringRef Name
Definition: MCAsmMacro.h:143
StringRef Body
Definition: MCAsmMacro.h:144
void dump() const
Definition: MCAsmMacro.h:158
MCAsmMacroParameters Parameters
Definition: MCAsmMacro.h:145