Home
last modified time | relevance | path

Searched refs:NoThrow (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td88 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
95 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
102 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
109 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
116 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
123 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
130 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const];
136 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const];
142 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions];
148 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions];
[all …]
H A DBuiltinsRISCV.td21 let Attributes = [NoThrow, Const] in {
140 } // Attributes = [Const, NoThrow]
H A DBuiltinsBase.td27 def NoThrow : Attribute<"n">;
H A DAttr.td2411 def NoThrow : InheritableAttr {
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h260 Value *emitHotColdNewNoThrow(Value *Num, Value *NoThrow, IRBuilderBase &B,
266 Value *emitHotColdNewAlignedNoThrow(Value *Num, Value *Align, Value *NoThrow,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1971 Value *llvm::emitHotColdNewNoThrow(Value *Num, Value *NoThrow, IRBuilderBase &B, in emitHotColdNewNoThrow() argument
1981 NoThrow->getType(), B.getInt8Ty()); in emitHotColdNewNoThrow()
1983 CallInst *CI = B.CreateCall(Func, {Num, NoThrow, B.getInt8(HotCold)}, Name); in emitHotColdNewNoThrow()
2013 Value *NoThrow, IRBuilderBase &B, in emitHotColdNewAlignedNoThrow() argument
2023 NoThrow->getType(), B.getInt8Ty()); in emitHotColdNewAlignedNoThrow()
2026 B.CreateCall(Func, {Num, Align, NoThrow, B.getInt8(HotCold)}, Name); in emitHotColdNewAlignedNoThrow()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp5742 bool NoThrow = F.doesNotThrow(); in determineFunctionCaptureCapabilities() local
5744 if (ReadOnly && NoThrow && IsVoidReturn) { in determineFunctionCaptureCapabilities()
5757 if (NoThrow && IsVoidReturn) in determineFunctionCaptureCapabilities()
5762 if (!NoThrow || ArgNo < 0 || in determineFunctionCaptureCapabilities()
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc6553 TEST(StreamingAssertionsTest, NoThrow) { in TEST() argument
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp11024 case attr::NoThrow: in AttrCompatibleWithMultiVersion()