Author: Mitch Phillips Date: 2020-12-10T12:25:42-08:00 New Revision: ebff66be655acccd2bed3798c2b6879d18c509e1
URL: https://github.com/llvm/llvm-project/commit/ebff66be655acccd2bed3798c2b6879d18c509e1 DIFF: https://github.com/llvm/llvm-project/commit/ebff66be655acccd2bed3798c2b6879d18c509e1.diff LOG: [scudo] [standalone] [NFC] clang-format code. clang-format the scudo standalone codebase. Reviewed By: cryptoad Differential Revision: https://reviews.llvm.org/D93056 Added: Modified: compiler-rt/lib/scudo/standalone/fuzz/get_error_info_fuzzer.cpp compiler-rt/lib/scudo/standalone/tools/compute_size_class_config.cpp Removed: ################################################################################ diff --git a/compiler-rt/lib/scudo/standalone/fuzz/get_error_info_fuzzer.cpp b/compiler-rt/lib/scudo/standalone/fuzz/get_error_info_fuzzer.cpp index d29f515215e6..f20a8a84a010 100644 --- a/compiler-rt/lib/scudo/standalone/fuzz/get_error_info_fuzzer.cpp +++ b/compiler-rt/lib/scudo/standalone/fuzz/get_error_info_fuzzer.cpp @@ -22,21 +22,25 @@ extern "C" int LLVMFuzzerTestOneInput(uint8_t *Data, size_t Size) { uintptr_t FaultAddr = FDP.ConsumeIntegral<uintptr_t>(); uintptr_t MemoryAddr = FDP.ConsumeIntegral<uintptr_t>(); - std::string MemoryAndTags = FDP.ConsumeRandomLengthString(FDP.remaining_bytes()); + std::string MemoryAndTags = + FDP.ConsumeRandomLengthString(FDP.remaining_bytes()); const char *Memory = MemoryAndTags.c_str(); // Assume 16-byte alignment. size_t MemorySize = (MemoryAndTags.length() / 17) * 16; const char *MemoryTags = Memory + MemorySize; - std::string StackDepotBytes = FDP.ConsumeRandomLengthString(FDP.remaining_bytes()); + std::string StackDepotBytes = + FDP.ConsumeRandomLengthString(FDP.remaining_bytes()); std::vector<char> StackDepot(sizeof(scudo::StackDepot), 0); - for (size_t i = 0; i < StackDepotBytes.length() && i < StackDepot.size(); ++i) { + for (size_t i = 0; i < StackDepotBytes.length() && i < StackDepot.size(); + ++i) { StackDepot[i] = StackDepotBytes[i]; } std::string RegionInfoBytes = FDP.ConsumeRemainingBytesAsString(); std::vector<char> RegionInfo(AllocatorT::getRegionInfoArraySize(), 0); - for (size_t i = 0; i < RegionInfoBytes.length() && i < RegionInfo.size(); ++i) { + for (size_t i = 0; i < RegionInfoBytes.length() && i < RegionInfo.size(); + ++i) { RegionInfo[i] = RegionInfoBytes[i]; } diff --git a/compiler-rt/lib/scudo/standalone/tools/compute_size_class_config.cpp b/compiler-rt/lib/scudo/standalone/tools/compute_size_class_config.cpp index 82f37b6647ef..8b17be0e965b 100644 --- a/compiler-rt/lib/scudo/standalone/tools/compute_size_class_config.cpp +++ b/compiler-rt/lib/scudo/standalone/tools/compute_size_class_config.cpp @@ -19,9 +19,8 @@ struct Alloc { }; size_t measureWastage(const std::vector<Alloc> &allocs, - const std::vector<size_t> &classes, - size_t pageSize, - size_t headerSize) { + const std::vector<size_t> &classes, size_t pageSize, + size_t headerSize) { size_t totalWastage = 0; for (auto &a : allocs) { size_t sizePlusHeader = a.size + headerSize; @@ -55,7 +54,8 @@ void readAllocs(std::vector<Alloc> &allocs, const char *path) { } Alloc a; - while (fscanf(f, "<alloc size=\"%zu\" count=\"%zu\"/>\n", &a.size, &a.count) == 2) + while (fscanf(f, "<alloc size=\"%zu\" count=\"%zu\"/>\n", &a.size, + &a.count) == 2) allocs.push_back(a); fclose(f); } @@ -157,5 +157,6 @@ struct MySizeClassConfig { }; static const uptr SizeDelta = %zu; }; -)", headerSize); +)", + headerSize); } _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits