HomeSort by relevance Sort by last modified time
    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();
117 if (CI->doesNotThrow()) {
176 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 357 return !CI->doesNotThrow();
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 377 if (!Call->doesNotThrow())
427 if (!CurFn->doesNotThrow())
    [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 553 if (CI->doesNotThrow())
    [all...]
CodeExtractor.cpp 302 if (oldFunction->doesNotThrow())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 180 if (CI.getParent()->getParent()->doesNotThrow() &&
181 !CI.doesNotThrow()) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 211 MarkedNoUnwind = F->doesNotThrow();