LLVM 23.0.0git
MIR2Vec.h
Go to the documentation of this file.
1//===- MIR2Vec.h - Implementation of MIR2Vec ------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM
4// Exceptions. See the LICENSE file for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file defines the MIR2Vec framework for generating Machine IR
11/// embeddings.
12///
13/// Design Overview:
14/// ----------------------
15/// 1. MIR2VecVocabProvider - Core vocabulary loading logic (no PM dependency)
16/// - Can be used standalone or wrapped by the pass manager
17/// - Requires MachineModuleInfo with parsed machine functions
18///
19/// 2. MIR2VecVocabLegacyAnalysis - Pass manager wrapper (ImmutablePass)
20/// - Integrated and used by llc -print-mir2vec
21///
22/// 3. MIREmbedder - Generates embeddings from vocabulary
23/// - SymbolicMIREmbedder: MIR2Vec embedding implementation
24///
25/// MIR2Vec extends IR2Vec to support Machine IR embeddings. It represents the
26/// LLVM Machine IR as embeddings which can be used as input to machine learning
27/// algorithms.
28///
29/// The original idea of MIR2Vec is described in the following paper:
30///
31/// RL4ReAl: Reinforcement Learning for Register Allocation. S. VenkataKeerthy,
32/// Siddharth Jain, Anilava Kundu, Rohit Aggarwal, Albert Cohen, and Ramakrishna
33/// Upadrasta. 2023. RL4ReAl: Reinforcement Learning for Register Allocation.
34/// Proceedings of the 32nd ACM SIGPLAN International Conference on Compiler
35/// Construction (CC 2023). https://doi.org/10.1145/3578360.3580273.
36/// https://arxiv.org/abs/2204.02013
37///
38//===----------------------------------------------------------------------===//
39
40#ifndef LLVM_CODEGEN_MIR2VEC_H
41#define LLVM_CODEGEN_MIR2VEC_H
42
51#include "llvm/IR/PassManager.h"
52#include "llvm/Pass.h"
54#include "llvm/Support/Error.h"
56#include <map>
57#include <set>
58#include <string>
59
60namespace llvm {
61
62class Module;
63class raw_ostream;
64class LLVMContext;
66class TargetInstrInfo;
67
68enum class MIR2VecKind { Symbolic };
69
70namespace mir2vec {
71
72// Forward declarations
73class MIREmbedder;
75
78
83
84/// Class for storing and accessing the MIR2Vec vocabulary.
85/// The MIRVocabulary class manages seed embeddings for LLVM Machine IR
88 using VocabMap = std::map<std::string, ir2vec::Embedding>;
89
90 // MIRVocabulary Layout:
91 // +-------------------+-----------------------------------------------------+
92 // | Entity Type | Description |
93 // +-------------------+-----------------------------------------------------+
94 // | 1. Opcodes | Target specific opcodes derived from TII, grouped |
95 // | | by instruction semantics. |
96 // | 2. Common Operands| All common operand types, except register operands, |
97 // | | defined by MachineOperand::MachineOperandType enum. |
98 // | 3. Physical | Register classes defined by the target, specialized |
99 // | Reg classes | by physical registers. |
100 // | 4. Virtual | Register classes defined by the target, specialized |
101 // | Reg classes | by virtual and physical registers. |
102 // +-------------------+-----------------------------------------------------+
103
104 /// Layout information for the MIR vocabulary. Defines the starting index
105 /// and size of each section in the vocabulary.
106 struct {
107 size_t OpcodeBase = 0;
109 size_t PhyRegBase = 0;
110 size_t VirtRegBase = 0;
111 size_t TotalEntries = 0;
112 } Layout;
113
114 // TODO: See if we can have only one reg classes section instead of physical
115 // and virtual separate sections in the vocabulary. This would reduce the
116 // number of vocabulary entities significantly.
117 // We can potentially distinguish physical and virtual registers by
118 // considering them as a separate feature.
119 enum class Section : unsigned {
120 Opcodes = 0,
121 CommonOperands = 1,
122 PhyRegisters = 2,
123 VirtRegisters = 3,
124 MaxSections
125 };
126
127 ir2vec::VocabStorage Storage;
128 std::set<std::string> UniqueBaseOpcodeNames;
129 SmallVector<std::string, 24> RegisterOperandNames;
130
131 // Some instructions have optional register operands that may be NoRegister.
132 // We return a zero vector in such cases.
133 Embedding ZeroEmbedding;
134
135 // We have specialized MO_Register handling in the Register operand section,
136 // so we don't include it here. Also, no MO_DbgInstrRef for now.
137 static constexpr StringLiteral CommonOperandNames[] = {
138 "Immediate", "CImmediate", "FPImmediate", "MBB",
139 "FrameIndex", "ConstantPoolIndex", "TargetIndex", "JumpTableIndex",
140 "ExternalSymbol", "GlobalAddress", "BlockAddress", "RegisterMask",
141 "RegisterLiveOut", "Metadata", "MCSymbol", "CFIIndex",
142 "IntrinsicID", "Predicate", "ShuffleMask", "LaneMask"};
143 static_assert(std::size(CommonOperandNames) == MachineOperand::MO_Last - 1 &&
144 "Common operand names size changed, update accordingly");
145
146 const TargetInstrInfo &TII;
147 const TargetRegisterInfo &TRI;
148 const MachineRegisterInfo &MRI;
149
150 void generateStorage(const VocabMap &OpcodeMap,
151 const VocabMap &CommonOperandMap,
152 const VocabMap &PhyRegMap, const VocabMap &VirtRegMap);
153 void buildCanonicalOpcodeMapping();
154 void buildRegisterOperandMapping();
155
156 /// Get canonical index for a machine opcode
157 LLVM_ABI unsigned getCanonicalOpcodeIndex(unsigned Opcode) const;
158
159 /// Get index for a common (non-register) machine operand
160 LLVM_ABI unsigned
161 getCommonOperandIndex(MachineOperand::MachineOperandType OperandType) const;
162
163 /// Get index for a register machine operand
164 LLVM_ABI unsigned getRegisterOperandIndex(Register Reg) const;
165
166 // Accessors for operand types
167 const Embedding &
168 operator[](MachineOperand::MachineOperandType OperandType) const {
169 unsigned LocalIndex = getCommonOperandIndex(OperandType);
170 return Storage[static_cast<unsigned>(Section::CommonOperands)][LocalIndex];
171 }
172
173 const Embedding &operator[](Register Reg) const {
174 // Reg is sometimes NoRegister (0) for optional operands. We return a zero
175 // vector in this case.
176 if (!Reg.isValid())
177 return ZeroEmbedding;
178 // TODO: Implement proper stack slot handling for MIR2Vec embeddings.
179 // Stack slots represent frame indices and should have their own
180 // embedding strategy rather than defaulting to register class 0.
181 // Consider: 1) Separate vocabulary section for stack slots
182 // 2) Stack slot size/alignment based embeddings
183 // 3) Frame index based categorization
184 if (Reg.isStack())
185 return ZeroEmbedding;
186
187 unsigned LocalIndex = getRegisterOperandIndex(Reg);
188 auto SectionID =
189 Reg.isPhysical() ? Section::PhyRegisters : Section::VirtRegisters;
190 return Storage[static_cast<unsigned>(SectionID)][LocalIndex];
191 }
192
193 /// Get entity ID (flat index) for a common operand type
194 /// This is used for triplet generation
195 unsigned getEntityIDForCommonOperand(
196 MachineOperand::MachineOperandType OperandType) const {
197 return Layout.CommonOperandBase + getCommonOperandIndex(OperandType);
198 }
199
200 /// Get entity ID (flat index) for a register
201 /// This is used for triplet generation
202 unsigned getEntityIDForRegister(Register Reg) const {
203 if (!Reg.isValid() || Reg.isStack())
204 return Layout
205 .VirtRegBase; // Return VirtRegBase for invalid/stack registers
206 unsigned LocalIndex = getRegisterOperandIndex(Reg);
207 size_t BaseOffset =
208 Reg.isPhysical() ? Layout.PhyRegBase : Layout.VirtRegBase;
209 return BaseOffset + LocalIndex;
210 }
211
212public:
213 /// Static method for extracting base opcode names (public for testing)
214 LLVM_ABI static std::string extractBaseOpcodeName(StringRef InstrName);
215
216 /// Get indices from opcode or operand names. These are public for testing.
217 /// String based lookups are inefficient and should be avoided in general.
218 LLVM_ABI unsigned getCanonicalIndexForBaseName(StringRef BaseName) const;
219 LLVM_ABI unsigned
220 getCanonicalIndexForOperandName(StringRef OperandName) const;
221 LLVM_ABI unsigned
223 bool IsPhysical = true) const;
224
225 /// Get the string key for a vocabulary entry at the given position
226 LLVM_ABI std::string getStringKey(unsigned Pos) const;
227
228 unsigned getDimension() const { return Storage.getDimension(); }
229
230 /// Get entity ID (flat index) for an opcode
231 /// This is used for triplet generation
232 unsigned getEntityIDForOpcode(unsigned Opcode) const {
233 return Layout.OpcodeBase + getCanonicalOpcodeIndex(Opcode);
234 }
235
236 /// Get entity ID (flat index) for a machine operand
237 /// This is used for triplet generation
240 return getEntityIDForRegister(MO.getReg());
241 return getEntityIDForCommonOperand(MO.getType());
242 }
243
244 // Accessor methods
245 const Embedding &operator[](unsigned Opcode) const {
246 unsigned LocalIndex = getCanonicalOpcodeIndex(Opcode);
247 return Storage[static_cast<unsigned>(Section::Opcodes)][LocalIndex];
248 }
249
250 const Embedding &operator[](MachineOperand Operand) const {
251 auto OperandType = Operand.getType();
252 if (OperandType == MachineOperand::MO_Register)
253 return operator[](Operand.getReg());
254 else
255 return operator[](OperandType);
256 }
257
258 // Iterator access
260 const_iterator begin() const { return Storage.begin(); }
261
262 const_iterator end() const { return Storage.end(); }
263
264 MIRVocabulary() = delete;
265
266 /// Factory method to create MIRVocabulary from vocabulary map
268 create(VocabMap &&OpcMap, VocabMap &&CommonOperandsMap, VocabMap &&PhyRegMap,
269 VocabMap &&VirtRegMap, const TargetInstrInfo &TII,
270 const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI);
271
272 /// Create a dummy vocabulary for testing purposes.
275 const TargetRegisterInfo &TRI,
276 const MachineRegisterInfo &MRI, unsigned Dim = 1);
277
278 /// Total number of entries in the vocabulary
279 size_t getCanonicalSize() const { return Storage.size(); }
280
281private:
282 MIRVocabulary(VocabMap &&OpcMap, VocabMap &&CommonOperandsMap,
283 VocabMap &&PhyRegMap, VocabMap &&VirtRegMap,
285 const MachineRegisterInfo &MRI);
286};
287
288/// Base class for MIR embedders
290protected:
293
294 /// Dimension of the embeddings; Captured from the vocabulary
295 const unsigned Dimension;
296
297 /// Weight for opcode embeddings
299
305
306 /// Function to compute embeddings.
308
309 /// Function to compute the embedding for a given machine basic block.
311
312 /// Function to compute the embedding for a given machine instruction.
313 /// Specific to the kind of embeddings being computed.
314 virtual Embedding computeEmbeddings(const MachineInstr &MI) const = 0;
315
316public:
317 virtual ~MIREmbedder() = default;
318
319 /// Factory method to create an Embedder object of the specified kind
320 /// Returns nullptr if the requested kind is not supported.
321 LLVM_ABI static std::unique_ptr<MIREmbedder>
323 const MIRVocabulary &Vocab);
324
325 /// Computes and returns the embedding for a given machine instruction MI in
326 /// the machine function MF.
328 return computeEmbeddings(MI);
329 }
330
331 /// Computes and returns the embedding for a given machine basic block in the
332 /// machine function MF.
336
337 /// Computes and returns the embedding for the current machine function.
339 // Currently, we always (re)compute the embeddings for the function. This is
340 // cheaper than caching the vector.
341 return computeEmbeddings();
342 }
343};
344
345/// Class for computing Symbolic embeddings
346/// Symbolic embeddings are constructed based on the entity-level
347/// representations obtained from the MIR Vocabulary.
349private:
350 Embedding computeEmbeddings(const MachineInstr &MI) const override;
351
352public:
354 static std::unique_ptr<SymbolicMIREmbedder>
356};
357
358} // namespace mir2vec
359
360/// MIR2Vec vocabulary provider used by pass managers and standalone tools.
361/// This class encapsulates the core vocabulary loading logic and can be used
362/// independently of the pass manager infrastructure. For pass-based usage,
363/// see MIR2VecVocabLegacyAnalysis.
364///
365/// Note: This provider pattern makes new PM migration straightforward when
366/// needed. A new PM analysis wrapper can be added that delegates to this
367/// provider, similar to how MIR2VecVocabLegacyAnalysis currently wraps it.
369 using VocabMap = std::map<std::string, mir2vec::Embedding>;
370
371public:
372 MIR2VecVocabProvider(const MachineModuleInfo &MMI) : MMI(MMI) {}
373
375
376private:
377 Error readVocabulary(VocabMap &OpcVocab, VocabMap &CommonOperandVocab,
378 VocabMap &PhyRegVocabMap, VocabMap &VirtRegVocabMap);
379 const MachineModuleInfo &MMI;
380};
381
382/// Pass to analyze and populate MIR2Vec vocabulary from a module
384 using VocabVector = std::vector<mir2vec::Embedding>;
385 using VocabMap = std::map<std::string, mir2vec::Embedding>;
386
387 StringRef getPassName() const override;
388
389protected:
390 void getAnalysisUsage(AnalysisUsage &AU) const override {
392 AU.setPreservesAll();
393 }
394 std::unique_ptr<MIR2VecVocabProvider> Provider;
395
396public:
397 static char ID;
399
401 MachineModuleInfo &MMI =
403 if (!Provider)
404 Provider = std::make_unique<MIR2VecVocabProvider>(MMI);
405 return Provider->getVocabulary(M);
406 }
407
409 assert(Provider && "Provider not initialized");
410 return *Provider;
411 }
412};
413
414/// This pass prints the embeddings in the MIR2Vec vocabulary
416 raw_ostream &OS;
417
418public:
419 static char ID;
422
423 bool runOnMachineFunction(MachineFunction &MF) override;
424 bool doFinalization(Module &M) override;
430
431 StringRef getPassName() const override {
432 return "MIR2Vec Vocabulary Printer Pass";
433 }
434};
435
436/// This pass prints the MIR2Vec embeddings for machine functions, basic blocks,
437/// and instructions
439 raw_ostream &OS;
440
441public:
442 static char ID;
445
446 bool runOnMachineFunction(MachineFunction &MF) override;
452
453 StringRef getPassName() const override {
454 return "MIR2Vec Embedder Printer Pass";
455 }
456};
457
458/// Create a machine pass that prints MIR2Vec embeddings
459LLVM_ABI MachineFunctionPass *createMIR2VecPrinterLegacyPass(raw_ostream &OS);
460
461} // namespace llvm
462
463#endif // LLVM_CODEGEN_MIR2VEC_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
#define LLVM_ABI
Definition Compiler.h:215
Provides ErrorOr<T> smart pointer.
const HexagonInstrInfo * TII
This file defines the IR2Vec vocabulary analysis(IR2VecVocabAnalysis), the core ir2vec::Embedder inte...
IRTranslator LLVM IR MI
This header defines various interfaces for pass management in LLVM.
#define RegName(no)
#define F(x, y, z)
Definition MD5.cpp:54
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesAll()
Set by analyses that do not transform their input at all.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
Tagged union holding either a T or a Error.
Definition Error.h:485
ImmutablePass(char &pid)
Definition Pass.h:287
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
MIR2VecPrinterLegacyPass(raw_ostream &OS)
Definition MIR2Vec.h:443
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Definition MIR2Vec.h:447
StringRef getPassName() const override
getPassName - Return a nice clean name for a pass.
Definition MIR2Vec.h:453
Pass to analyze and populate MIR2Vec vocabulary from a module.
Definition MIR2Vec.h:383
MIR2VecVocabProvider & getProvider()
Definition MIR2Vec.h:408
Expected< mir2vec::MIRVocabulary > getMIR2VecVocabulary(const Module &M)
Definition MIR2Vec.h:400
std::unique_ptr< MIR2VecVocabProvider > Provider
Definition MIR2Vec.h:394
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition MIR2Vec.h:390
StringRef getPassName() const override
getPassName - Return a nice clean name for a pass.
Definition MIR2Vec.h:431
MIR2VecVocabPrinterLegacyPass(raw_ostream &OS)
Definition MIR2Vec.h:420
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Definition MIR2Vec.h:425
MIR2Vec vocabulary provider used by pass managers and standalone tools.
Definition MIR2Vec.h:368
MIR2VecVocabProvider(const MachineModuleInfo &MMI)
Definition MIR2Vec.h:372
LLVM_ABI Expected< mir2vec::MIRVocabulary > getVocabulary(const Module &M)
Definition MIR2Vec.cpp:429
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Representation of each machine instruction.
This class contains meta information specific to a module.
MachineOperand class - Representation of each machine instruction operand.
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
Register getReg() const
getReg - Returns the register number.
@ MO_Register
Register operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
Definition StringRef.h:882
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
Iterator support for section-based access.
Definition IR2Vec.h:202
Generic storage class for section-based vocabularies.
Definition IR2Vec.h:157
Base class for MIR embedders.
Definition MIR2Vec.h:289
const unsigned Dimension
Dimension of the embeddings; Captured from the vocabulary.
Definition MIR2Vec.h:295
Embedding getMFunctionVector() const
Computes and returns the embedding for the current machine function.
Definition MIR2Vec.h:338
const MIRVocabulary & Vocab
Definition MIR2Vec.h:292
Embedding getMInstVector(const MachineInstr &MI) const
Computes and returns the embedding for a given machine instruction MI in the machine function MF.
Definition MIR2Vec.h:327
virtual Embedding computeEmbeddings(const MachineInstr &MI) const =0
Function to compute the embedding for a given machine instruction.
Embedding getMBBVector(const MachineBasicBlock &MBB) const
Computes and returns the embedding for a given machine basic block in the machine function MF.
Definition MIR2Vec.h:333
const float RegOperandWeight
Definition MIR2Vec.h:298
MIREmbedder(const MachineFunction &MF, const MIRVocabulary &Vocab)
Definition MIR2Vec.h:300
const float CommonOperandWeight
Definition MIR2Vec.h:298
LLVM_ABI Embedding computeEmbeddings() const
Function to compute embeddings.
Definition MIR2Vec.cpp:554
const float OpcWeight
Weight for opcode embeddings.
Definition MIR2Vec.h:298
const MachineFunction & MF
Definition MIR2Vec.h:291
virtual ~MIREmbedder()=default
static LLVM_ABI std::unique_ptr< MIREmbedder > create(MIR2VecKind Mode, const MachineFunction &MF, const MIRVocabulary &Vocab)
Factory method to create an Embedder object of the specified kind Returns nullptr if the requested ki...
Definition MIR2Vec.cpp:521
Class for storing and accessing the MIR2Vec vocabulary.
Definition MIR2Vec.h:86
unsigned getDimension() const
Definition MIR2Vec.h:228
unsigned getEntityIDForOpcode(unsigned Opcode) const
Get entity ID (flat index) for an opcode This is used for triplet generation.
Definition MIR2Vec.h:232
const_iterator end() const
Definition MIR2Vec.h:262
LLVM_ABI unsigned getCanonicalIndexForOperandName(StringRef OperandName) const
Definition MIR2Vec.cpp:164
const Embedding & operator[](MachineOperand Operand) const
Definition MIR2Vec.h:250
LLVM_ABI unsigned getCanonicalIndexForRegisterClass(StringRef RegName, bool IsPhysical=true) const
Definition MIR2Vec.cpp:174
static LLVM_ABI Expected< MIRVocabulary > create(VocabMap &&OpcMap, VocabMap &&CommonOperandsMap, VocabMap &&PhyRegMap, VocabMap &&VirtRegMap, const TargetInstrInfo &TII, const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI)
Factory method to create MIRVocabulary from vocabulary map.
Definition MIR2Vec.cpp:98
static LLVM_ABI std::string extractBaseOpcodeName(StringRef InstrName)
Static method for extracting base opcode names (public for testing)
Definition MIR2Vec.cpp:119
ir2vec::VocabStorage::const_iterator const_iterator
Definition MIR2Vec.h:259
const_iterator begin() const
Definition MIR2Vec.h:260
const Embedding & operator[](unsigned Opcode) const
Definition MIR2Vec.h:245
size_t getCanonicalSize() const
Total number of entries in the vocabulary.
Definition MIR2Vec.h:279
static LLVM_ABI Expected< MIRVocabulary > createDummyVocabForTest(const TargetInstrInfo &TII, const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, unsigned Dim=1)
Create a dummy vocabulary for testing purposes.
Definition MIR2Vec.cpp:382
unsigned getEntityIDForMachineOperand(const MachineOperand &MO) const
Get entity ID (flat index) for a machine operand This is used for triplet generation.
Definition MIR2Vec.h:238
LLVM_ABI std::string getStringKey(unsigned Pos) const
Get the string key for a vocabulary entry at the given position.
Definition MIR2Vec.cpp:184
LLVM_ABI unsigned getCanonicalIndexForBaseName(StringRef BaseName) const
Get indices from opcode or operand names.
Definition MIR2Vec.cpp:149
Class for computing Symbolic embeddings Symbolic embeddings are constructed based on the entity-level...
Definition MIR2Vec.h:348
static std::unique_ptr< SymbolicMIREmbedder > create(const MachineFunction &MF, const MIRVocabulary &Vocab)
Definition MIR2Vec.cpp:568
SymbolicMIREmbedder(const MachineFunction &F, const MIRVocabulary &Vocab)
Definition MIR2Vec.cpp:563
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
DenseMap< const MachineInstr *, Embedding > MachineInstEmbeddingsMap
Definition MIR2Vec.h:80
LLVM_ABI llvm::cl::OptionCategory MIR2VecCategory
LLVM_ABI cl::opt< float > OpcWeight
LLVM_ABI cl::opt< float > RegOperandWeight
Definition MIR2Vec.h:77
ir2vec::Embedding Embedding
Definition MIR2Vec.h:79
DenseMap< const MachineBasicBlock *, Embedding > MachineBlockEmbeddingsMap
Definition MIR2Vec.h:81
LLVM_ABI cl::opt< float > CommonOperandWeight
Definition MIR2Vec.h:77
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI MachineFunctionPass * createMIR2VecPrinterLegacyPass(raw_ostream &OS)
Create a machine pass that prints MIR2Vec embeddings.
Definition MIR2Vec.cpp:683
MIR2VecKind
Definition MIR2Vec.h:68
Embedding is a datatype that wraps std::vector<double>.
Definition IR2Vec.h:88