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

  /external/llvm/include/llvm/Support/
CallSite.h 235 bool doesNotThrow() const {
236 CALLSITE_DELEGATE_GETTER(doesNotThrow());
238 void setDoesNotThrow(bool doesNotThrow = true) {
239 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()) {
FunctionAttrs.cpp 371 if (F->onlyReadsMemory() && F->doesNotThrow() &&
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 108 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 164 } else if (II->doesNotThrow()) {
SimplifyLibCalls.cpp     [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 372 return !CI->doesNotThrow();
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 183 if (!CI || CI->doesNotThrow())
510 bool MarkNoUnwind = CS.doesNotThrow();
    [all...]
CodeExtractor.cpp 348 if (oldFunction->doesNotThrow())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 176 if (CI.getParent()->getParent()->doesNotThrow() &&
177 !CI.doesNotThrow()) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 212 MarkedNoUnwind = F->doesNotThrow();
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 452 if (!CI->doesNotThrow())
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 483 if (!Call->doesNotThrow())
543 if (!CurFn->doesNotThrow())
    [all...]
CGObjCMac.cpp     [all...]

Completed in 886 milliseconds