LLVM 19.0.0git
MCRelocationInfo.cpp
Go to the documentation of this file.
1//===-- MCRelocationInfo.cpp ----------------------------------------------===//
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
12
13using namespace llvm;
14
16
18
19const MCExpr *
21 unsigned VariantKind) {
22 if (VariantKind != LLVMDisassembler_VariantKind_None)
23 return nullptr;
24 return SubExpr;
25}
26
28 MCContext &Ctx) {
29 return new MCRelocationInfo(Ctx);
30}
Context object for machine code objects.
Definition: MCContext.h:76
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:35
Create MCExprs from relocations found in an object file.
MCRelocationInfo(MCContext &Ctx)
virtual const MCExpr * createExprForCAPIVariantKind(const MCExpr *SubExpr, unsigned VariantKind)
Create an MCExpr for the target-specific VariantKind.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
#define LLVMDisassembler_VariantKind_None
The operand VariantKinds for symbolic disassembly.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
MCRelocationInfo * createMCRelocationInfo(const Triple &TT, MCContext &Ctx)