reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
// RUN: %clang_cc1 -x c++ -std=c++11 %s -triple x86_64-unknown-linux-gnu  -main-file-name def-ctors.cpp -o - -emit-llvm -fprofile-instrument=clang |  FileCheck --check-prefix=PGOGEN %s

// RUN: %clang_cc1 -x c++ -std=c++11 %s -triple x86_64-unknown-linux-gnu -main-file-name def-ctors.cpp -o - -emit-llvm -fprofile-instrument=clang -fcoverage-mapping | FileCheck --check-prefix=COVMAP %s

struct Base {
  int B;
  Base() : B(2) {}
  Base(const struct Base &b2) {}
};

struct Derived : public Base {
  Derived(const Derived &) = default;
  // PGOGEN-DAG: define {{.*}}@_ZN7DerivedC2ERKS_
  // PGOGEN-DAG: %pgocount = load {{.*}} @__profc__ZN7DerivedC2ERKS_
  // PGOGEN-DAG: {{.*}}add{{.*}}%pgocount, 1
  // PGOGEN-DAG: store{{.*}}@__profc__ZN7DerivedC2ERKS_
  Derived() = default;
  // PGOGEN-DAG: define {{.*}}@_ZN7DerivedC2Ev
  // PGOGEN-DAG: %pgocount = load {{.*}} @__profc__ZN7DerivedC2Ev
  // PGOGEN-DAG: {{.*}}add{{.*}}%pgocount, 1
  // PGOGEN-DAG: store{{.*}}@__profc__ZN7DerivedC2Ev

  // Check that coverage mapping has 6 function records including
  // the defaulted Derived::Derived(const Derived), and Derived::Derived()
  // methds.
  // COVMAP: @__llvm_coverage_mapping = {{.*}} { { i32, i32, i32, i32 }, [5 x
  // <{{.*}}>],
};

Derived dd;
int g;
int main() {
  Derived dd2(dd);
  g = dd2.B;
  return 0;
}