YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/locks.cc
Line
Count
Source (jump to first uncovered line)
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include "yb/util/locks.h"
34
35
#include "yb/util/malloc.h"
36
37
namespace yb {
38
39
0
size_t percpu_rwlock::memory_footprint_excluding_this() const {
40
  // Because locks_ is a dynamic array of non-trivially-destructable types,
41
  // the returned pointer from new[] isn't guaranteed to point at the start of
42
  // a memory block, rendering it useless for malloc_usable_size().
43
  //
44
  // Rather than replace locks_ with a vector or something equivalent, we'll
45
  // just measure the memory footprint using sizeof(), with the understanding
46
  // that we might be inaccurate due to malloc "slop".
47
  //
48
  // See https://code.google.com/p/address-sanitizer/issues/detail?id=395 for
49
  // more details.
50
0
  return n_cpus_ * sizeof(padded_lock);
51
0
}
52
53
0
size_t percpu_rwlock::memory_footprint_including_this() const {
54
0
  return malloc_usable_size(this) + memory_footprint_excluding_this();
55
0
}
56
57
} // namespace yb