33#define DEBUG_TYPE "ir2vec"
36 "Number of lookups to entities not present in the vocabulary");
48 cl::desc(
"Weight for opcode embeddings"),
51 cl::desc(
"Weight for type embeddings"),
54 cl::desc(
"Weight for argument embeddings"),
59 "Generate symbolic embeddings"),
61 "Generate flow-aware embeddings")),
76 std::vector<double> TempOut;
88 assert(this->
size() == RHS.
size() &&
"Vectors must have the same dimension");
89 std::transform(this->
begin(), this->
end(), RHS.
begin(), this->begin(),
101 assert(this->
size() == RHS.
size() &&
"Vectors must have the same dimension");
102 std::transform(this->
begin(), this->
end(), RHS.
begin(), this->begin(),
103 std::minus<double>());
115 [Factor](
double Elem) {
return Elem * Factor; });
126 assert(this->
size() == Src.
size() &&
"Vectors must have the same dimension");
127 for (
size_t Itr = 0; Itr < this->
size(); ++Itr)
128 (*
this)[Itr] += Src[Itr] * Factor;
133 double Tolerance)
const {
134 assert(this->
size() == RHS.
size() &&
"Vectors must have the same dimension");
135 for (
size_t Itr = 0; Itr < this->
size(); ++Itr)
136 if (std::abs((*
this)[Itr] - RHS[Itr]) > Tolerance) {
137 LLVM_DEBUG(
errs() <<
"Embedding mismatch at index " << Itr <<
": "
138 << (*
this)[Itr] <<
" vs " << RHS[Itr]
139 <<
"; Tolerance: " << Tolerance <<
"\n");
147 for (
const auto &Elem : Data)
148 OS <<
" " <<
format(
"%.2f", Elem) <<
" ";
165 return std::make_unique<SymbolicEmbedder>(
F,
Vocab);
167 return std::make_unique<FlowAwareEmbedder>(
F,
Vocab);
200 if (
F.isDeclaration())
218 for (
const auto &
Op :
I.operands())
221 Vocab[
I.getOpcode()] +
Vocab[
I.getType()->getTypeID()] + ArgEmb;
223 InstVector +=
Vocab[IC->getPredicate()];
225 BBVector += InstVector;
238 for (
const auto &
Op :
I.operands()) {
254 ArgEmb += DefIt->second;
260 LLVM_DEBUG(
errs() <<
"Using embedding from vocabulary for operand: "
268 Vocab[
I.getOpcode()] +
Vocab[
I.getType()->getTypeID()] + ArgEmb;
271 InstVector +=
Vocab[IC->getPredicate()];
273 BBVector += InstVector;
283 : Sections(
std::
move(SectionData)), TotalSize([&] {
284 assert(!Sections.empty() &&
"Vocabulary has no sections");
287 for (
const auto &Section : Sections) {
288 assert(!Section.empty() &&
"Vocabulary section is empty");
289 Size += Section.size();
296 assert(!Sections.empty() &&
"Vocabulary has no sections");
297 assert(!Sections[0].empty() &&
"First section of vocabulary is empty");
298 unsigned ExpectedDim =
static_cast<unsigned>(Sections[0][0].size());
302 [[maybe_unused]]
auto allSameDim =
303 [ExpectedDim](
const std::vector<Embedding> &Section) {
304 return std::all_of(Section.begin(), Section.end(),
306 return Emb.size() == ExpectedDim;
309 assert(std::all_of(Sections.begin(), Sections.end(), allSameDim) &&
310 "All embeddings must have the same dimension");
316 assert(SectionId < Storage->Sections.size() &&
"Invalid section ID");
317 assert(LocalIndex < Storage->Sections[SectionId].
size() &&
318 "Local index out of range");
319 return Storage->Sections[SectionId][LocalIndex];
326 LocalIndex >= Storage->Sections[SectionId].size()) {
327 assert(LocalIndex == Storage->Sections[SectionId].size() &&
328 "Local index should be at the end of the current section");
337 return Storage ==
Other.Storage && SectionId ==
Other.SectionId &&
338 LocalIndex ==
Other.LocalIndex;
343 return !(*
this ==
Other);
348 VocabMap &TargetVocab,
unsigned &Dim) {
353 "JSON root is not an object");
358 "Missing '" + std::string(
Key) +
359 "' section in vocabulary file");
362 "Unable to parse '" + std::string(
Key) +
363 "' section from vocabulary");
365 Dim = TargetVocab.begin()->second.size();
368 "Dimension of '" + std::string(
Key) +
369 "' section of the vocabulary is zero");
371 if (!std::all_of(TargetVocab.begin(), TargetVocab.end(),
372 [Dim](
const std::pair<StringRef, Embedding> &Entry) {
373 return Entry.second.size() == Dim;
377 "All vectors in the '" + std::string(
Key) +
378 "' section of the vocabulary are not of the same dimension");
388 assert(Opcode >= 1 && Opcode <= MaxOpcodes &&
"Invalid opcode");
389#define HANDLE_INST(NUM, OPCODE, CLASS) \
390 if (Opcode == NUM) { \
393#include "llvm/IR/Instruction.def"
395 return "UnknownOpcode";
420 if (LocalIndex < fcmpRange)
425 LocalIndex - fcmpRange);
431 PredNameBuffer =
"FCMP_";
433 PredNameBuffer =
"ICMP_";
435 return PredNameBuffer;
439 assert(Pos < NumCanonicalEntries &&
"Position out of bounds in vocabulary");
441 if (Pos < MaxOpcodes)
444 if (Pos < OperandBaseOffset)
445 return getVocabKeyForCanonicalTypeID(
448 if (Pos < PredicateBaseOffset)
450 static_cast<OperandKind>(Pos - OperandBaseOffset));
457 ModuleAnalysisManager::Invalidator &Inv)
const {
459 return !(PAC.preservedWhenStateless());
463 float DummyVal = 0.1f;
467 std::vector<std::vector<Embedding>> Sections;
471 std::vector<Embedding> OpcodeSec;
472 OpcodeSec.reserve(MaxOpcodes);
473 for (
unsigned I = 0;
I < MaxOpcodes; ++
I) {
474 OpcodeSec.emplace_back(Dim, DummyVal);
477 Sections.push_back(std::move(OpcodeSec));
480 std::vector<Embedding> TypeSec;
483 TypeSec.emplace_back(Dim, DummyVal);
486 Sections.push_back(std::move(TypeSec));
489 std::vector<Embedding> OperandSec;
492 OperandSec.emplace_back(Dim, DummyVal);
495 Sections.push_back(std::move(OperandSec));
498 std::vector<Embedding> PredicateSec;
501 PredicateSec.emplace_back(Dim, DummyVal);
504 Sections.push_back(std::move(PredicateSec));
522 auto Content = BufOrError.get()->getBuffer();
525 if (!ParsedVocabValue)
528 unsigned OpcodeDim = 0, TypeDim = 0, ArgDim = 0;
530 OpcVocab, OpcodeDim))
541 if (!(OpcodeDim == TypeDim && TypeDim == ArgDim))
543 "Vocabulary sections have different dimensions");
548void IR2VecVocabAnalysis::generateVocabStorage(
VocabMap &OpcVocab,
555 auto handleMissingEntity = [](
const std::string &Val) {
557 <<
" is not in vocabulary, using zero vector; This "
558 "would result in an error in future.\n");
562 unsigned Dim = OpcVocab.begin()->second.size();
563 assert(Dim > 0 &&
"Vocabulary dimension must be greater than zero");
566 std::vector<Embedding> NumericOpcodeEmbeddings(Vocabulary::MaxOpcodes,
568 for (
unsigned Opcode :
seq(0u, Vocabulary::MaxOpcodes)) {
570 auto It = OpcVocab.find(VocabKey.
str());
571 if (It != OpcVocab.end())
572 NumericOpcodeEmbeddings[Opcode] = It->second;
574 handleMissingEntity(VocabKey.
str());
581 StringRef VocabKey = Vocabulary::getVocabKeyForCanonicalTypeID(
583 if (
auto It = TypeVocab.find(VocabKey.
str()); It != TypeVocab.end()) {
584 NumericTypeEmbeddings[CTypeID] = It->second;
587 handleMissingEntity(VocabKey.
str());
596 auto It = ArgVocab.find(VocabKey.
str());
597 if (It != ArgVocab.end()) {
598 NumericArgEmbeddings[OpKind] = It->second;
601 handleMissingEntity(VocabKey.
str());
611 auto It = ArgVocab.find(VocabKey.
str());
612 if (It != ArgVocab.end()) {
613 NumericPredEmbeddings[PK] = It->second;
616 handleMissingEntity(VocabKey.
str());
621 std::vector<std::vector<Embedding>> Sections(4);
622 Sections[
static_cast<unsigned>(Vocabulary::Section::Opcodes)] =
623 std::move(NumericOpcodeEmbeddings);
624 Sections[
static_cast<unsigned>(Vocabulary::Section::CanonicalTypes)] =
625 std::move(NumericTypeEmbeddings);
626 Sections[
static_cast<unsigned>(Vocabulary::Section::Operands)] =
627 std::move(NumericArgEmbeddings);
628 Sections[
static_cast<unsigned>(Vocabulary::Section::Predicates)] =
629 std::move(NumericPredEmbeddings);
632 Vocab.emplace(std::move(Sections));
635void IR2VecVocabAnalysis::emitError(
Error Err, LLVMContext &Ctx) {
643 auto Ctx = &M.getContext();
645 if (Vocab.has_value())
651 Ctx->emitError(
"IR2Vec vocabulary file path not specified; You may need to "
652 "set it using --ir2vec-vocab-path");
656 VocabMap OpcVocab, TypeVocab, ArgVocab;
657 if (
auto Err = readVocabulary(OpcVocab, TypeVocab, ArgVocab)) {
658 emitError(std::move(Err), *Ctx);
663 auto scaleVocabSection = [](VocabMap &Vocab,
double Weight) {
664 for (
auto &Entry : Vocab)
665 Entry.second *= Weight;
672 generateVocabStorage(OpcVocab, TypeVocab, ArgVocab);
689 OS <<
"Error creating IR2Vec embeddings \n";
693 OS <<
"IR2Vec embeddings for function " <<
F.getName() <<
":\n";
694 OS <<
"Function vector: ";
695 Emb->getFunctionVector().print(OS);
697 OS <<
"Basic block vectors:\n";
698 const auto &BBMap = Emb->getBBVecMap();
700 auto It = BBMap.find(&BB);
701 if (It != BBMap.end()) {
702 OS <<
"Basic block: " << BB.
getName() <<
":\n";
703 It->second.print(OS);
707 OS <<
"Instruction vectors:\n";
708 const auto &InstMap = Emb->getInstVecMap();
711 auto It = InstMap.find(&
I);
712 if (It != InstMap.end()) {
713 OS <<
"Instruction: ";
715 It->second.print(OS);
726 assert(IR2VecVocabulary.isValid() &&
"IR2Vec Vocabulary is invalid");
730 for (
const auto &Entry : IR2VecVocabulary) {
731 OS <<
"Key: " << IR2VecVocabulary.getStringKey(Pos++) <<
": ";
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file builds on the ADT/GraphTraits.h file to build generic depth first graph iterator.
This file defines the IR2Vec vocabulary analysis(IR2VecVocabAnalysis), the core ir2vec::Embedder inte...
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
ModuleAnalysisManager MAM
Provides some synthesis utilities to produce sequences of values.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
LLVM Basic Block Representation.
LLVM_ABI iterator_range< filter_iterator< BasicBlock::const_iterator, std::function< bool(const Instruction &)> > > instructionsWithoutDebug(bool SkipPseudoOp=true) const
Return a const iterator range over the instructions in the block, skipping any debug instructions.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
static LLVM_ABI StringRef getPredicateName(Predicate P)
iterator find(const_arg_type_t< KeyT > Val)
virtual std::string message() const
Return the error message as a string.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
This analysis provides the vocabulary for IR2Vec.
ir2vec::Vocabulary Result
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &MAM)
static LLVM_ABI AnalysisKey Key
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
LLVM_ABI void emitError(const Instruction *I, const Twine &ErrorStr)
emitError - Emit an error message to the currently installed error handler with optional location inf...
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-".
A Module instance is used to store all the information related to an LLVM module.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalysisChecker getChecker() const
Build a checker for this PreservedAnalyses and the specified analysis type.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
StringRef - Represent a constant reference to a string, i.e.
std::string str() const
str - Get the contents as an std::string.
LLVM Value Representation.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI const Embedding & getBBVector(const BasicBlock &BB) const
Returns the embedding for a given basic block in the function F if it has been computed.
static LLVM_ABI std::unique_ptr< Embedder > create(IR2VecKind Mode, const Function &F, const Vocabulary &Vocab)
Factory method to create an Embedder object.
LLVM_ABI const BBEmbeddingsMap & getBBVecMap() const
Returns a map containing basic block and the corresponding embeddings for the function F if it has be...
void computeEmbeddings() const
Function to compute embeddings.
LLVM_ABI const InstEmbeddingsMap & getInstVecMap() const
Returns a map containing instructions and the corresponding embeddings for the function F if it has b...
const float OpcWeight
Weights for different entities (like opcode, arguments, types) in the IR instructions to generate the...
const unsigned Dimension
Dimension of the vector representation; captured from the input vocabulary.
LLVM_ABI Embedder(const Function &F, const Vocabulary &Vocab)
LLVM_ABI const Embedding & getFunctionVector() const
Computes and returns the embedding for the current function.
InstEmbeddingsMap InstVecMap
Iterator support for section-based access.
const_iterator(const VocabStorage *Storage, unsigned SectionId, size_t LocalIndex)
LLVM_ABI bool operator!=(const const_iterator &Other) const
LLVM_ABI const_iterator & operator++()
LLVM_ABI const Embedding & operator*() const
LLVM_ABI bool operator==(const const_iterator &Other) const
Generic storage class for section-based vocabularies.
static Error parseVocabSection(StringRef Key, const json::Value &ParsedVocabValue, VocabMap &TargetVocab, unsigned &Dim)
Parse a vocabulary section from JSON and populate the target vocabulary map.
unsigned getNumSections() const
Get number of sections.
VocabStorage()
Default constructor creates empty storage (invalid state)
size_t size() const
Get total number of entries across all sections.
std::map< std::string, Embedding > VocabMap
Class for storing and accessing the IR2Vec vocabulary.
static LLVM_ABI StringRef getVocabKeyForOperandKind(OperandKind Kind)
Function to get vocabulary key for a given OperandKind.
LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA, ModuleAnalysisManager::Invalidator &Inv) const
static LLVM_ABI OperandKind getOperandKind(const Value *Op)
Function to classify an operand into OperandKind.
friend class llvm::IR2VecVocabAnalysis
static LLVM_ABI StringRef getStringKey(unsigned Pos)
Returns the string key for a given index position in the vocabulary.
static constexpr unsigned MaxCanonicalTypeIDs
static constexpr unsigned MaxOperandKinds
OperandKind
Operand kinds supported by IR2Vec Vocabulary.
static LLVM_ABI StringRef getVocabKeyForPredicate(CmpInst::Predicate P)
Function to get vocabulary key for a given predicate.
static LLVM_ABI StringRef getVocabKeyForOpcode(unsigned Opcode)
Function to get vocabulary key for a given Opcode.
LLVM_ABI bool isValid() const
static LLVM_ABI VocabStorage createDummyVocabForTest(unsigned Dim=1)
Create a dummy vocabulary for testing purposes.
static constexpr unsigned MaxPredicateKinds
CanonicalTypeID
Canonical type IDs supported by IR2Vec Vocabulary.
An Object is a JSON object, which maps strings to heterogenous JSON values.
LLVM_ABI Value * get(StringRef K)
The root is the trivial Path to the root value.
A "cursor" marking a position within a Value.
A Value is an JSON value of unknown type.
const json::Object * getAsObject() const
This class implements an extremely fast bulk output stream that can only output to a stream.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
DenseMap< const Instruction *, Embedding > InstEmbeddingsMap
static cl::opt< std::string > VocabFile("ir2vec-vocab-path", cl::Optional, cl::desc("Path to the vocabulary file for IR2Vec"), cl::init(""), cl::cat(IR2VecCategory))
LLVM_ABI cl::opt< float > ArgWeight
DenseMap< const BasicBlock *, Embedding > BBEmbeddingsMap
LLVM_ABI cl::opt< float > OpcWeight
LLVM_ABI cl::opt< float > TypeWeight
LLVM_ABI cl::opt< IR2VecKind > IR2VecEmbeddingKind
llvm::cl::OptionCategory IR2VecCategory
LLVM_ABI llvm::Expected< Value > parse(llvm::StringRef JSON)
Parses the provided JSON source, or returns a ParseError.
bool fromJSON(const Value &E, std::string &Out, Path P)
ir2vec::Embedding Embedding
This is an optimization pass for GlobalISel generic memory operations.
Error createFileError(const Twine &F, Error E)
Concatenate a source file path and/or name with an Error.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void handleAllErrors(Error E, HandlerTs &&... Handlers)
Behaves the same as handleErrors, except that by contract all errors must be handled by the given han...
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
IR2VecKind
IR2Vec computes two kinds of embeddings: Symbolic and Flow-aware.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
DWARFExpression::Operation Op
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
iterator_range< df_iterator< T > > depth_first(const T &G)
auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Implement std::hash so that hash_code can be used in STL containers.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Embedding is a datatype that wraps std::vector<double>.
LLVM_ABI bool approximatelyEquals(const Embedding &RHS, double Tolerance=1e-4) const
Returns true if the embedding is approximately equal to the RHS embedding within the specified tolera...
LLVM_ABI Embedding & operator+=(const Embedding &RHS)
Arithmetic operators.
LLVM_ABI Embedding operator-(const Embedding &RHS) const
LLVM_ABI Embedding & operator-=(const Embedding &RHS)
LLVM_ABI Embedding operator*(double Factor) const
LLVM_ABI Embedding & operator*=(double Factor)
LLVM_ABI Embedding operator+(const Embedding &RHS) const
LLVM_ABI Embedding & scaleAndAdd(const Embedding &Src, float Factor)
Adds Src Embedding scaled by Factor with the called Embedding.
LLVM_ABI void print(raw_ostream &OS) const