Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DFaultMaps.cpp140 raw_ostream &llvm::operator<<(raw_ostream &OS, const FaultMapParser &FMP) { in operator <<() argument
141 OS << "Version: " << format_hex(FMP.getFaultMapVersion(), 2) << "\n"; in operator <<()
142 OS << "NumFunctions: " << FMP.getNumFunctions() << "\n"; in operator <<()
144 if (FMP.getNumFunctions() == 0) in operator <<()
149 for (unsigned i = 0, e = FMP.getNumFunctions(); i != e; ++i) { in operator <<()
150 FI = (i == 0) ? FMP.getFirstFunctionInfo() : FI.getNextFunctionInfo(); in operator <<()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2258 FaultMapParser FMP(FaultMapContents.bytes_begin(), in printFaultMaps() local
2261 outs() << FMP; in printFaultMaps()