OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:doesNotThrow
(Results
1 - 15
of
15
) sorted by null
/external/llvm/include/llvm/Support/
CallSite.h
230
bool
doesNotThrow
() const {
231
CALLSITE_DELEGATE_GETTER(
doesNotThrow
());
233
void setDoesNotThrow(bool
doesNotThrow
= true) {
234
CALLSITE_DELEGATE_SETTER(setDoesNotThrow(
doesNotThrow
));
/external/llvm/lib/Transforms/IPO/
PruneEH.cpp
92
SCCMightUnwind |= !F->
doesNotThrow
();
95
bool CheckUnwind = !SCCMightUnwind && !F->
doesNotThrow
();
116
if (CI->
doesNotThrow
()) {
175
if (II->
doesNotThrow
()) {
/external/llvm/lib/Analysis/
CaptureTracking.cpp
77
if (CS.onlyReadsMemory() && CS.
doesNotThrow
() && I->getType()->isVoidTy())
/external/llvm/include/llvm/
Function.h
242
bool
doesNotThrow
() const {
245
void setDoesNotThrow(bool
DoesNotThrow
= true) {
246
if (
DoesNotThrow
) addFnAttr(Attribute::NoUnwind);
264
return hasUWTable() || !
doesNotThrow
();
Instructions.h
[
all
...]
/external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp
161
if (II->
doesNotThrow
()) {
SimplifyLibCalls.cpp
[
all
...]
/external/llvm/lib/VMCore/
Instruction.cpp
314
return !CI->
doesNotThrow
();
/external/clang/lib/CodeGen/
CodeGenFunction.cpp
368
if (!Call->
doesNotThrow
())
411
if (!CurFn->
doesNotThrow
())
[
all
...]
CGObjCMac.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
InlineFunction.cpp
462
if (CI->
doesNotThrow
())
816
bool MarkNoUnwind = CS.
doesNotThrow
();
[
all
...]
CodeExtractor.cpp
302
if (oldFunction->
doesNotThrow
())
/external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
181
if (CI.getParent()->getParent()->
doesNotThrow
() &&
182
!CI.
doesNotThrow
()) {
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp
211
MarkedNoUnwind = F->
doesNotThrow
();
/external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp
555
&& !CI->
doesNotThrow
())
Completed in 638 milliseconds