//===-- AArch64SMEAttributes.cpp - Helper for interpreting SME attributes -===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "AArch64SMEAttributes.h" #include "llvm/IR/InstrTypes.h" #include <cassert> usingnamespacellvm; void SMEAttrs::set(unsigned M, bool Enable) { … } SMEAttrs::SMEAttrs(const CallBase &CB) { … } SMEAttrs::SMEAttrs(StringRef FuncName) : … { … } SMEAttrs::SMEAttrs(const AttributeList &Attrs) { … } bool SMEAttrs::requiresSMChange(const SMEAttrs &Callee) const { … }