LLVM 22.0.0git
NVPTXMCExpr.cpp
Go to the documentation of this file.
1//===-- NVPTXMCExpr.cpp - NVPTX specific MC expression classes ------------===//
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#include "NVPTXMCExpr.h"
11#include "llvm/MC/MCAsmInfo.h"
12#include "llvm/MC/MCAssembler.h"
13#include "llvm/MC/MCContext.h"
14#include "llvm/Support/Format.h"
15using namespace llvm;
16
17#define DEBUG_TYPE "nvptx-mcexpr"
18
19const NVPTXFloatMCExpr *
21 return new (Ctx) NVPTXFloatMCExpr(Kind, Flt);
22}
23
25 bool Ignored;
26 unsigned NumHex;
27 APFloat APF = getAPFloat();
28
29 switch (Kind) {
30 default: llvm_unreachable("Invalid kind!");
32 // ptxas does not have a way to specify half-precision floats.
33 // Instead we have to print and load fp16 constants as .b16
34 OS << "0x";
35 NumHex = 4;
37 break;
39 OS << "0x";
40 NumHex = 4;
42 break;
44 OS << "0f";
45 NumHex = 8;
47 break;
49 OS << "0d";
50 NumHex = 16;
52 break;
53 }
54
55 APInt API = APF.bitcastToAPInt();
56 OS << format_hex_no_prefix(API.getZExtValue(), NumHex, /*Upper=*/true);
57}
58
61 MCContext &Ctx) {
62 return new (Ctx) NVPTXGenericMCSymbolRefExpr(SymExpr);
63}
64
66 const MCAsmInfo *MAI) const {
67 OS << "generic(";
68 MAI->printExpr(OS, *SymExpr);
69 OS << ")";
70}
raw_pwrite_stream & OS
This file contains some functions that are useful when dealing with strings.
LLVM_ABI opStatus convert(const fltSemantics &ToSemantics, roundingMode RM, bool *losesInfo)
Definition: APFloat.cpp:6057
APInt bitcastToAPInt() const
Definition: APFloat.h:1353
Class for arbitrary precision integers.
Definition: APInt.h:78
uint64_t getZExtValue() const
Get zero extended value.
Definition: APInt.h:1540
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:64
void printExpr(raw_ostream &, const MCExpr &) const
Definition: MCAsmInfo.cpp:153
Context object for machine code objects.
Definition: MCContext.h:83
Represent a reference to a symbol from inside an expression.
Definition: MCExpr.h:190
APFloat getAPFloat() const
getSubExpr - Get the child of this expression.
Definition: NVPTXMCExpr.h:72
static const NVPTXFloatMCExpr * create(VariantKind Kind, const APFloat &Flt, MCContext &Ctx)
Definition: NVPTXMCExpr.cpp:20
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
Definition: NVPTXMCExpr.cpp:24
A wrapper for MCSymbolRefExpr that tells the assembly printer that the symbol should be enclosed by g...
Definition: NVPTXMCExpr.h:91
static const NVPTXGenericMCSymbolRefExpr * create(const MCSymbolRefExpr *SymExpr, MCContext &Ctx)
Definition: NVPTXMCExpr.cpp:60
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
Definition: NVPTXMCExpr.cpp:65
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:53
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper=false)
format_hex_no_prefix - Output N as a fixed width hexadecimal.
Definition: Format.h:201
static LLVM_ABI const fltSemantics & IEEEsingle() LLVM_READNONE
Definition: APFloat.cpp:266
static constexpr roundingMode rmNearestTiesToEven
Definition: APFloat.h:304
static LLVM_ABI const fltSemantics & IEEEdouble() LLVM_READNONE
Definition: APFloat.cpp:267
static LLVM_ABI const fltSemantics & IEEEhalf() LLVM_READNONE
Definition: APFloat.cpp:264
static LLVM_ABI const fltSemantics & BFloat() LLVM_READNONE
Definition: APFloat.cpp:265