forked from OSchip/llvm-project
20 lines
685 B
TableGen
20 lines
685 B
TableGen
//===-- AArch64PfmCounters.td - AArch64 Hardware Counters --*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This describes the available hardware counters for AArch64.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
def CpuCyclesPfmCounter : PfmCounter<"CPU_CYCLES">;
|
|
|
|
def DefaultPfmCounters : ProcPfmCounters {
|
|
let CycleCounter = CpuCyclesPfmCounter;
|
|
}
|
|
def : PfmCountersDefaultBinding<DefaultPfmCounters>;
|