From a8ea67eb8005b0e655331e1c05c63d2c01af3fff Mon Sep 17 00:00:00 2001 From: Xinliang David Li Date: Thu, 12 Nov 2015 00:32:17 +0000 Subject: [PATCH] Fix problems in coding style git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252829 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ProfileData/InstrProfReader.cpp | 36 ++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/lib/ProfileData/InstrProfReader.cpp b/lib/ProfileData/InstrProfReader.cpp index b968e6beafc..bf10b448e4c 100644 --- a/lib/ProfileData/InstrProfReader.cpp +++ b/lib/ProfileData/InstrProfReader.cpp @@ -264,19 +264,23 @@ std::error_code RawInstrProfReader::readRawCounts( } template -std::error_code RawInstrProfReader::readNextRecord( - InstrProfRecord &Record) { +std::error_code +RawInstrProfReader::readNextRecord(InstrProfRecord &Record) { if (atEnd()) - if (std::error_code EC = readNextHeader(ProfileEnd)) return EC; + if (std::error_code EC = readNextHeader(ProfileEnd)) + return EC; // Read name ad set it in Record. - if (std::error_code EC = readName(Record)) return EC; + if (std::error_code EC = readName(Record)) + return EC; // Read FuncHash and set it in Record. - if (std::error_code EC = readFuncHash(Record)) return EC; + if (std::error_code EC = readFuncHash(Record)) + return EC; // Read raw counts and set Record. - if (std::error_code EC = readRawCounts(Record)) return EC; + if (std::error_code EC = readRawCounts(Record)) + return EC; // Iterate. advanceData(); @@ -356,13 +360,16 @@ data_type InstrProfLookupTrait::ReadData(StringRef K, const unsigned char *D, return DataBuffer; } -std::error_code InstrProfReaderIndex::getRecords( - StringRef FuncName, ArrayRef &Data) { +std::error_code +InstrProfReaderIndex::getRecords(StringRef FuncName, + ArrayRef &Data) { auto Iter = Index->find(FuncName); - if (Iter == Index->end()) return instrprof_error::unknown_function; + if (Iter == Index->end()) + return instrprof_error::unknown_function; Data = (*Iter); - if (Data.empty()) return instrprof_error::malformed; + if (Data.empty()) + return instrprof_error::malformed; return instrprof_error::success; } @@ -400,7 +407,8 @@ void InstrProfReaderIndex::Init(const unsigned char *Buckets, } bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { - if (DataBuffer.getBufferSize() < 8) return false; + if (DataBuffer.getBufferSize() < 8) + return false; using namespace support; uint64_t Magic = endian::read(DataBuffer.getBufferStart()); @@ -453,7 +461,8 @@ IndexedInstrProfReader::getInstrProfRecord(StringRef FuncName, uint64_t FuncHash) { ArrayRef Data; std::error_code EC = Index.getRecords(FuncName, Data); - if (EC != instrprof_error::success) return EC; + if (EC != instrprof_error::success) + return EC; // Found it. Look for counters with the right hash. for (unsigned I = 0, E = Data.size(); I < E; ++I) { // Check for a match and fill the vector if there is one. @@ -482,7 +491,8 @@ std::error_code IndexedInstrProfReader::readNextRecord( ArrayRef Data; std::error_code EC = Index.getRecords(Data); - if (EC != instrprof_error::success) return error(EC); + if (EC != instrprof_error::success) + return error(EC); Record = Data[RecordIndex++]; if (RecordIndex >= Data.size()) { -- 2.34.1