HomeSort by: relevance | last modified time | path
    Searched defs:isSwiftError (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetCallingConv.h 43 unsigned IsSwiftError : 1; ///< Swift error parameter
65 IsSwiftError(0), IsCFGuardTarget(0), IsHva(0), IsHvaStart(0),
103 bool isSwiftError() const { return IsSwiftError; }
104 void setSwiftError() { IsSwiftError = 1; }
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Value.cpp 973 bool Value::isSwiftError() const {
980 return Alloca->isSwiftError();
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 147 bool isSwiftError() const { return getSubclassData<SwiftErrorField>(); }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 1257 static bool isSwiftError(const Value *V) {
1261 return AI->isSwiftError();
1277 if (CLI->supportSwiftError() && isSwiftError(LI.getPointerOperand())) {
1320 if (CLI->supportSwiftError() && isSwiftError(SI.getPointerOperand())) {
2233 if (CLI->supportSwiftError() && isSwiftError(Arg)) {
2567 if (AI.isSwiftError())

Completed in 35 milliseconds