Home
last modified time | relevance | path

Searched refs:SideEffect (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenCall.cpp96 auto sideEffect = cir::SideEffect::All; in constructAttributeList()
120 sideEffect = cir::SideEffect::Const; in constructAttributeList()
123 sideEffect = cir::SideEffect::Pure; in constructAttributeList()
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Interfaces/
H A DCIROpInterfaces.td40 "cir::SideEffect", "getSideEffect", (ins)>,
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRDialect.cpp125 REGISTER_ENUM_TYPE(SideEffect);
628 cir::SideEffect sideEffect; in parseCallCommon()
629 if (parseCIRKeyword<cir::SideEffect>(parser, sideEffect).failed()) in parseCallCommon()
660 cir::SideEffect sideEffect) { in printCallCommon()
679 if (sideEffect != cir::SideEffect::All) { in printCallCommon()
702 cir::SideEffect sideEffect = getSideEffect(); in print()
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/DirectToLLVM/
H A DLowerToLLVM.h33 cir::SideEffect sideEffect,
H A DLowerToLLVM.cpp236 cir::SideEffect sideEffect, in convertSideEffectForCall()
242 case cir::SideEffect::All: in convertSideEffectForCall()
248 case cir::SideEffect::Pure: in convertSideEffectForCall()
257 case cir::SideEffect::Const: in convertSideEffectForCall()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DOpcodes.td787 def SideEffect : Opcode {}
H A DInterp.h3134 inline bool SideEffect(InterpState &S, CodePtr OpPC) { in SideEffect() function
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIROps.td2003 "SideEffect", "allowed side effects of a function", [
2086 DefaultValuedAttr<CIR_SideEffect, "SideEffect::All">:$side_effect);