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

1 2

  /external/swiftshader/third_party/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 257 return hasFnAttr(Attribute::UWTable);
261 addFnAttr(Attribute::UWTable);
263 removeFnAttr(Attribute::UWTable);
  /external/llvm/lib/Transforms/IPO/
ForceFunctionAttrs.cpp 60 .Case("uwtable", Attribute::UWTable)
  /external/llvm/include/llvm/IR/
Function.h 381 return hasFnAttribute(Attribute::UWTable);
384 addFnAttr(Attribute::UWTable);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Function.h 404 return hasFnAttribute(Attribute::UWTable);
407 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Function.h 426 return hasFnAttribute(Attribute::UWTable);
429 addFnAttr(Attribute::UWTable);
  /external/llvm/unittests/IR/
VerifierTest.cpp 56 Attribute::UWTable));
62 "Attribute 'uwtable' only applies to functions!"));
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 39 if (Attrs & Attribute::UWTable)
40 Result += "uwtable ";
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 497 if (MF.getFunction()->hasFnAttribute(Attribute::UWTable))
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm.ml 98 | UWTable
680 | Attribute.UWTable -> Int32.shift_left 1l 30
720 checkattr Attribute.UWTable;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 110 | UWTable
795 | Attribute.UWTable -> Int32.shift_left 1l 30
835 checkattr Attribute.UWTable;
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 317 if (hasAttribute(Attribute::UWTable))
318 return "uwtable";
498 case Attribute::UWTable: return 1 << 30;
    [all...]
  /external/llvm/test/Bindings/OCaml/
core.ml 963 ignore (add_function_attr fn Attribute.UWTable);
965 * #0 is uwtable, defined at EOF.
    [all...]
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPBackend.cpp 474 HANDLE_ATTR(UWTable);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 913 case lltok::kw_uwtable: Attrs |= Attribute::UWTable; break;
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CodeGenModule.cpp 854 B.addAttribute(llvm::Attribute::UWTable);
    [all...]

Completed in 1815 milliseconds

1 2