blob: 20b9efdc9df9b0ea467a4ddf83d1a0a3f4e43c00 [file] [log] [blame]
Clement Courbeteee2e062018-11-09 13:15:32 +00001//===-- PPCPfmCounters.td - PPC Hardware Counters ----------*- tablegen -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Clement Courbeteee2e062018-11-09 13:15:32 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This describes the available hardware counters for PPC.
10//
11//===----------------------------------------------------------------------===//
12
13def CpuCyclesPfmCounter : PfmCounter<"CYCLES">;
14
15def DefaultPfmCounters : ProcPfmCounters {
16 let CycleCounter = CpuCyclesPfmCounter;
17}
18def : PfmCountersDefaultBinding<DefaultPfmCounters>;