Home
last modified time | relevance | path

Searched refs:fromIndex (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/lld/MachO/
H A DInputFiles.h95 uint32_t fromIndex; member
101 CallGraphEntry(uint32_t fromIndex, uint32_t toIndex, uint64_t count) in CallGraphEntry()
102 : fromIndex(fromIndex), toIndex(toIndex), count(count) {} in CallGraphEntry()
H A DSectionPriorities.cpp283 assert(entry.fromIndex < obj->symbols.size() && in extractCallGraphProfile()
285 auto *fromSym = dyn_cast_or_null<Defined>(obj->symbols[entry.fromIndex]); in extractCallGraphProfile()
H A DInputFiles.cpp303 uint32_t fromIndex, toIndex; in parseCallGraph() local
305 if (Error err = reader.readInteger(fromIndex)) in parseCallGraph()
311 callGraph.emplace_back(fromIndex, toIndex, count); in parseCallGraph()
/openbsd/gnu/llvm/lld/COFF/
H A DDriver.cpp1159 uint32_t fromIndex, toIndex; in readCallGraphsFromObjectFiles() local
1161 if (Error err = reader.readInteger(fromIndex)) in readCallGraphsFromObjectFiles()
1167 auto *fromSym = dyn_cast_or_null<Defined>(obj->getSymbol(fromIndex)); in readCallGraphsFromObjectFiles()
/openbsd/gnu/llvm/lld/ELF/
H A DDriver.cpp974 uint32_t fromIndex = symbolIndices[i * 2]; in readCallGraphsFromObjectFiles() local
976 auto *fromSym = dyn_cast<Defined>(&obj->getSymbol(fromIndex)); in readCallGraphsFromObjectFiles()