HomeSort by relevance Sort by last modified time
    Searched refs:doesNotThrow (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
EscapeEnumerator.cpp 53 if (F.doesNotThrow())
61 if (!CI->doesNotThrow())
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/Transforms/IPO/
PruneEH.cpp 92 SCCMightUnwind |= !F->doesNotThrow();
95 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow();
117 if (CI->doesNotThrow()) {
176 if (II->doesNotThrow()) {
  /external/swiftshader/third_party/LLVM/lib/Analysis/
CaptureTracking.cpp 77 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 97 SCCMightUnwind |= !F->doesNotThrow();
100 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow();
197 if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(F)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
PruneEH.cpp 93 SCCMightUnwind |= !F->doesNotThrow();
96 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow();
193 if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(F)) {
FunctionAttrs.cpp 643 if (F->onlyReadsMemory() && F->doesNotThrow() &&
    [all...]
  /external/llvm/include/llvm/IR/
Statepoint.h 139 bool doesNotThrow() const {
141 return getCallSite().doesNotThrow() || (F ? F->doesNotThrow() : false);
CallSite.h 450 bool doesNotThrow() const {
451 CALLSITE_DELEGATE_GETTER(doesNotThrow());
Function.h 343 bool doesNotThrow() const {
389 return hasUWTable() || !doesNotThrow();
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Statepoint.h 159 bool doesNotThrow() const {
161 return getCallSite().doesNotThrow() || (F ? F->doesNotThrow() : false);
Function.h 506 bool doesNotThrow() const {
560 return hasUWTable() || !doesNotThrow() || hasPersonalityFn();
CallSite.h 505 bool doesNotThrow() const {
506 CALLSITE_DELEGATE_GETTER(doesNotThrow());
  /external/swiftshader/third_party/LLVM/include/llvm/
Function.h 246 bool doesNotThrow() const {
249 void setDoesNotThrow(bool DoesNotThrow = true) {
250 if (DoesNotThrow) addFnAttr(Attribute::NoUnwind);
268 return hasUWTable() || !doesNotThrow();
  /external/catch2/projects/SelfTest/UsageTests/
Matchers.tests.cpp 56 void doesNotThrow() {}
311 CHECK_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{1});
312 REQUIRE_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{1});
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Function.h 366 bool doesNotThrow() const {
412 return hasUWTable() || !doesNotThrow();
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 243 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 161 if (II->doesNotThrow()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CaptureTracking.cpp 248 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyUtilities.cpp 200 if (F->doesNotThrow())
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCalls.cpp 180 if (CI.getParent()->getParent()->doesNotThrow() &&
181 !CI.doesNotThrow()) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instruction.cpp 357 return !CI->doesNotThrow();
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InlineFunction.cpp 553 if (CI->doesNotThrow())
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 427 if (!CI || CI->doesNotThrow() || isa<InlineAsm>(CI->getCalledValue()))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 184 MarkedNoUnwind = F->doesNotThrow();

Completed in 479 milliseconds

1 2 3