Lines Matching refs:SMEAttrs
15 void SMEAttrs::set(unsigned M, bool Enable) { in set()
43 SMEAttrs::SMEAttrs(const CallBase &CB) { in SMEAttrs() function in SMEAttrs
44 *this = SMEAttrs(CB.getAttributes()); in SMEAttrs()
46 set(SMEAttrs(*F).Bitmask | SMEAttrs(F->getName()).Bitmask); in SMEAttrs()
50 SMEAttrs::SMEAttrs(StringRef FuncName) : Bitmask(0) { in SMEAttrs() function in SMEAttrs
52 Bitmask |= (SMEAttrs::SM_Compatible | SMEAttrs::SME_ABI_Routine); in SMEAttrs()
54 Bitmask |= SMEAttrs::SM_Compatible | encodeZAState(StateValue::In) | in SMEAttrs()
55 SMEAttrs::SME_ABI_Routine; in SMEAttrs()
58 Bitmask |= SMEAttrs::SM_Compatible; in SMEAttrs()
61 SMEAttrs::SMEAttrs(const AttributeList &Attrs) { in SMEAttrs() function in SMEAttrs
91 bool SMEAttrs::requiresSMChange(const SMEAttrs &Callee) const { in requiresSMChange()