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

  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 38 Attribute::NoUnwind);
59 AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
80 Attribute::NoUnwind);
104 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
122 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
141 AWI = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
164 AWI = AttributeWithIndex::get(~0u, Attribute::ReadOnly | Attribute::NoUnwind);
188 Attribute::NoUnwind);
260 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
279 AWI[1] = AttributeWithIndex::get(~0u, Attribute::NoUnwind);
    [all...]
  /external/llvm/include/llvm/
Attributes.h 42 const Attributes NoUnwind = 1<<5; ///< Function doesn't unwind stack
76 /// unwind table. The nounwind attribute is about an exception passing by the
82 /// nounwind = No need for an entry
85 /// uwtable + nounwind = Needs an entry because the ABI says so.
92 const Attributes FunctionOnly = NoReturn | NoUnwind | ReadNone | ReadOnly |
Function.h 243 return hasFnAttr(Attribute::NoUnwind);
246 if (DoesNotThrow) addFnAttr(Attribute::NoUnwind);
247 else removeFnAttr(Attribute::NoUnwind);
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 12 // throw an exception, and marking functions 'nounwind' if they cannot throw.
144 NewAttributes |= Attribute::NoUnwind;
  /external/llvm/lib/VMCore/
Attributes.cpp 37 if (Attrs & Attribute::NoUnwind)
38 Result += "nounwind ";
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 426 /// safe to mark with the nounwind attribute..
428 // objc_retainBlock is not nounwind because it calls user copy constructors
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 735 FuncAttrs |= llvm::Attribute::NoUnwind;
739 FuncAttrs |= llvm::Attribute::NoUnwind;
748 // 'const' and 'pure' attribute functions are also nounwind.
751 FuncAttrs |= llvm::Attribute::NoUnwind;
754 FuncAttrs |= llvm::Attribute::NoUnwind;
    [all...]
CGStmt.cpp     [all...]
CodeGenModule.cpp 498 F->addFnAttr(llvm::Attribute::NoUnwind);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 457 HANDLE_ATTR(NoUnwind);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 912 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 488 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 463 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]

Completed in 529 milliseconds