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

  /external/llvm/include/llvm/
Attributes.h 69 const Attributes UWTable = 1<<30; ///< Function must be in a unwind
75 /// Note that uwtable is about the ABI or the user mandating an entry in the
83 /// uwtable = Needs an entry because the ABI says so and because
85 /// uwtable + nounwind = Needs an entry because the ABI says so.
95 UWTable | NonLazyBind | ReturnsTwice;
Function.h 253 return hasFnAttr(Attribute::UWTable);
257 addFnAttr(Attribute::UWTable);
259 removeFnAttr(Attribute::UWTable);
  /external/llvm/lib/VMCore/
Attributes.cpp 39 if (Attrs & Attribute::UWTable)
40 Result += "uwtable ";
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 98 | UWTable
680 | Attribute.UWTable -> Int32.shift_left 1l 30
720 checkattr Attribute.UWTable;
    [all...]
llvm.mli 143 | UWTable
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 862 ignore (add_function_attr fn Attribute.UWTable);
863 (* RUN: grep "X7.*uwtable" < %t.ll
865 insist ([Attribute.UWTable] = function_attr fn);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 474 HANDLE_ATTR(UWTable);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 913 case lltok::kw_uwtable: Attrs |= Attribute::UWTable; break;
    [all...]

Completed in 180 milliseconds