52using namespace object;
61 SymTab.push_back(&GV);
64 SymTab.push_back(
new (AsmSymbols.
Allocate())
75 if (M.getContext().getDiagHandlerPtr()->HasErrors)
82 const Triple TT(M.getTargetTriple());
86 std::unique_ptr<MCRegisterInfo>
MRI(
T->createMCRegInfo(TT.str()));
91 std::unique_ptr<MCAsmInfo> MAI(
T->createMCAsmInfo(*
MRI, TT.str(), MCOptions));
95 std::unique_ptr<MCSubtargetInfo> STI(
96 T->createMCSubtargetInfo(TT.str(),
"",
""));
100 std::unique_ptr<MCInstrInfo> MCII(
T->createMCInstrInfo());
104 std::unique_ptr<MemoryBuffer> Buffer(
110 std::unique_ptr<MCObjectFileInfo> MOFI(
111 T->createMCObjectFileInfo(MCCtx,
false));
114 T->createNullTargetStreamer(Streamer);
116 std::unique_ptr<MCAsmParser>
Parser(
119 std::unique_ptr<MCTargetAsmParser> TAP(
120 T->createMCAsmParser(*STI, *
Parser, *MCII, MCOptions));
126 std::vector<const MDNode *> &LocInfos) {
127 M.getContext().diagnose(
135 Parser->setTargetParser(*TAP);
148 for (
auto &KV : Streamer) {
181 Triple TT(M.getTargetTriple());
182 if (!TT.isOSBinFormatELF() || !TT.isX86())
184 auto CM = M.getCodeModel();
197 for (
auto &Alias : KV.second)
198 AsmSymver(KV.first->getName(), Alias);
203 if (isa<AsmSymbol *>(S)) {
204 OS << cast<AsmSymbol *>(S)->first;
208 auto *GV = cast<GlobalValue *>(S);
209 if (GV->hasDLLImportStorageClass())
216 if (isa<AsmSymbol *>(S))
217 return cast<AsmSymbol *>(S)->second;
219 auto *GV = cast<GlobalValue *>(S);
222 if (GV->isDeclarationForLinker())
224 else if (GV->hasHiddenVisibility() && !GV->hasLocalLinkage())
227 if (GVar->isConstant())
231 if (isa<Function>(GO) || isa<GlobalIFunc>(GO))
233 if (isa<GlobalAlias>(GV))
235 if (GV->hasPrivateLinkage())
237 if (!GV->hasLocalLinkage())
239 if (GV->hasCommonLinkage())
241 if (GV->hasLinkOnceLinkage() || GV->hasWeakLinkage() ||
242 GV->hasExternalWeakLinkage())
245 if (GV->getName().starts_with(
"llvm."))
247 else if (
auto *Var = dyn_cast<GlobalVariable>(GV)) {
248 if (Var->getSection() ==
"llvm.metadata")
unsigned const MachineRegisterInfo * MRI
for(const MachineOperand &MO :llvm::drop_begin(OldMI.operands(), Desc.getNumOperands()))
static void initializeRecordStreamer(const Module &M, function_ref< void(RecordStreamer &)> Init)
Module.h This file contains the declarations for the Module class.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Diagnostic information for SMDiagnostic reporting.
const GlobalObject * getAliaseeObject() const
Context object for machine code objects.
void setObjectFileInfo(const MCObjectFileInfo *Mofi)
void setDiagnosticHandler(DiagHandlerTy DiagHandler)
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
static std::unique_ptr< MemoryBuffer > getMemBuffer(StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
Open the specified memory range as a MemoryBuffer.
void addModule(Module *M)
static void CollectAsmSymvers(const Module &M, function_ref< void(StringRef, StringRef)> AsmSymver)
Parse inline ASM and collect the symvers directives that are defined in the current module.
std::pair< std::string, uint32_t > AsmSymbol
void printSymbolName(raw_ostream &OS, Symbol S) const
uint32_t getSymbolFlags(Symbol S) const
static void CollectAsmSymbols(const Module &M, function_ref< void(StringRef, object::BasicSymbolRef::Flags)> AsmSymbol)
Parse inline ASM and collect the symbols that are defined or referenced in the current module.
A Module instance is used to store all the information related to an LLVM module.
const std::string & getTargetTriple() const
Get the target triple which is a string describing the target host.
A discriminated union of two or more pointer types, with the discriminator in the low bit of the poin...
iterator_range< const_symver_iterator > symverAliases()
void flushSymverDirectives()
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Represents a location in source code.
This owns the files read by a parser, handles include stacks, and handles diagnostic wrangling.
unsigned AddNewSourceBuffer(std::unique_ptr< MemoryBuffer > F, SMLoc IncludeLoc)
Add a new source buffer to this source manager.
T * Allocate(size_t num=1)
Allocate space for an array of objects without constructing them.
StringRef - Represent a constant reference to a string, i.e.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
LLVM Value Representation.
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
#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.
MCAsmParser * createMCAsmParser(SourceMgr &, MCContext &, MCStreamer &, const MCAsmInfo &, unsigned CB=0)
Create an MCAsmParser instance for parsing assembly similar to gas syntax.
static const Target * lookupTarget(StringRef Triple, std::string &Error)
lookupTarget - Lookup a target based on a target triple.