LLVM 19.0.0git
VETargetStreamer.cpp
Go to the documentation of this file.
1//===-- VETargetStreamer.cpp - VE Target Streamer Methods -----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file provides VE specific target streamer methods.
10//
11//===----------------------------------------------------------------------===//
12
13#include "VETargetStreamer.h"
14#include "VEInstPrinter.h"
15#include "llvm/MC/MCRegister.h"
16
17using namespace llvm;
18
19// pin vtable to this file
21
22void VETargetStreamer::anchor() {}
23
26 : VETargetStreamer(S), OS(OS) {}
27
29 OS << "\t.register "
31 << ", #ignore\n";
32}
33
35 OS << "\t.register "
37 << ", #scratch\n";
38}
39
41
43 return static_cast<MCELFStreamer &>(Streamer);
44}
raw_pwrite_stream & OS
Streaming machine code generation interface.
Definition: MCStreamer.h:212
Target specific streamer interface.
Definition: MCStreamer.h:93
MCStreamer & Streamer
Definition: MCStreamer.h:95
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::string lower() const
Definition: StringRef.cpp:111
static const char * getRegisterName(MCRegister Reg, unsigned AltIdx=VE::NoRegAltName)
void emitVERegisterIgnore(unsigned reg) override
Emit ".register <reg>, #ignore".
VETargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS)
void emitVERegisterScratch(unsigned reg) override
Emit ".register <reg>, #scratch".
MCELFStreamer & getStreamer()
VETargetELFStreamer(MCStreamer &S)
VETargetStreamer(MCStreamer &S)
formatted_raw_ostream - A raw_ostream that wraps another one and keeps track of line and column posit...
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18