Searched refs:FMP (Results 1 – 2 of 2) sorted by relevance
140 raw_ostream &llvm::operator<<(raw_ostream &OS, const FaultMapParser &FMP) { in operator <<() argument141 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 <<()
2258 FaultMapParser FMP(FaultMapContents.bytes_begin(), in printFaultMaps() local2261 outs() << FMP; in printFaultMaps()