Home
last modified time | relevance | path

Searched refs:EntryBlockName (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h373 FuncDataT(std::string S) : EntryBlockName(S) {} in FuncDataT()
376 std::string getEntryBlockName() const { return EntryBlockName; } in getEntryBlockName()
379 std::string EntryBlockName;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp2156 std::string EntryBlockName = After.getEntryBlockName(); in handleFunctionCompare() local
2158 if (EntryBlockName == "") in handleFunctionCompare()
2159 EntryBlockName = Before.getEntryBlockName(); in handleFunctionCompare()
2160 assert(EntryBlockName != "" && "Expected to find entry block"); in handleFunctionCompare()
2162 DotCfgDiffDisplayGraph DG = Diff.createDisplayGraph(Text, EntryBlockName); in handleFunctionCompare()