[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / Target / AMDGPU / MCTargetDesc / AMDGPUELFStreamer.cpp
blob40437d8fa1a480d5d211ee1e71ab9eb0993954d1
1 //===-------- AMDGPUELFStreamer.cpp - ELF Object Output -------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "AMDGPUELFStreamer.h"
10 #include "Utils/AMDGPUBaseInfo.h"
11 #include "llvm/BinaryFormat/ELF.h"
12 #include "llvm/MC/MCAsmBackend.h"
13 #include "llvm/MC/MCCodeEmitter.h"
14 #include "llvm/MC/MCObjectWriter.h"
16 using namespace llvm;
18 namespace {
20 class AMDGPUELFStreamer : public MCELFStreamer {
21 public:
22 AMDGPUELFStreamer(const Triple &T, MCContext &Context,
23 std::unique_ptr<MCAsmBackend> MAB,
24 std::unique_ptr<MCObjectWriter> OW,
25 std::unique_ptr<MCCodeEmitter> Emitter)
26 : MCELFStreamer(Context, std::move(MAB), std::move(OW),
27 std::move(Emitter)) {}
32 MCELFStreamer *llvm::createAMDGPUELFStreamer(
33 const Triple &T, MCContext &Context, std::unique_ptr<MCAsmBackend> MAB,
34 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
35 bool RelaxAll) {
36 return new AMDGPUELFStreamer(T, Context, std::move(MAB), std::move(OW),
37 std::move(Emitter));