Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DFaultMaps.cpp135 raw_ostream &llvm::operator<<(raw_ostream &OS, const FaultMapParser &FMP) { in operator <<() argument
136 OS << "Version: " << format_hex(FMP.getFaultMapVersion(), 2) << "\n"; in operator <<()
137 OS << "NumFunctions: " << FMP.getNumFunctions() << "\n"; in operator <<()
139 if (FMP.getNumFunctions() == 0) in operator <<()
144 for (unsigned i = 0, e = FMP.getNumFunctions(); i != e; ++i) { in operator <<()
145 FI = (i == 0) ? FMP.getFirstFunctionInfo() : FI.getNextFunctionInfo(); in operator <<()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp1625 FaultMapParser FMP(FaultMapContents.bytes_begin(), in printFaultMaps() local
1628 outs() << FMP; in printFaultMaps()