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

1 2

  /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)) {
FunctionAttrs.cpp 506 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/include/llvm/
Function.h 246 bool doesNotThrow() const {
249 void setDoesNotThrow(bool DoesNotThrow = true) {
250 if (DoesNotThrow) addFnAttr(Attribute::NoUnwind);
268 return hasUWTable() || !doesNotThrow();
Instructions.h     [all...]
  /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/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...]
CodeExtractor.cpp 302 if (oldFunction->doesNotThrow())
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 427 if (!CI || CI->doesNotThrow() || isa<InlineAsm>(CI->getCalledValue()))
    [all...]
CodeExtractor.cpp 340 if (oldFunction->doesNotThrow())
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 184 MarkedNoUnwind = F->doesNotThrow();
  /external/llvm/lib/IR/
Instruction.cpp 540 return !CI->doesNotThrow();
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfException.cpp 211 MarkedNoUnwind = F->doesNotThrow();
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SjLjEHPrepare.cpp 681 && !CI->doesNotThrow())
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyRegStackify.cpp 105 if (!F->doesNotThrow())
    [all...]
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 630 return !CS.doesNotThrow();
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp     [all...]

Completed in 503 milliseconds

1 2