Home
last modified time | relevance | path

Searched refs:FunctionOptions (Results 1 – 10 of 10) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp176 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor()
177 FunctionOptions::None; in hasConstructor()
187 FunctionOptions::ConstructorWithVirtualBases) != in isConstructorVirtualBase()
188 FunctionOptions::None; in isConstructorVirtualBase()
192 FunctionOptions Options = in isCxxReturnUdt()
194 return (Options & FunctionOptions::CxxReturnUdt) != FunctionOptions::None; in isCxxReturnUdt()
/netbsd/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp67 LLVM_YAML_DECLARE_BITSET_TRAITS(FunctionOptions)
352 void ScalarBitSetTraits<FunctionOptions>::bitset(IO &IO, in bitset()
353 FunctionOptions &Options) { in bitset()
354 IO.bitSetCase(Options, "None", FunctionOptions::None); in bitset()
355 IO.bitSetCase(Options, "CxxReturnUdt", FunctionOptions::CxxReturnUdt); in bitset()
356 IO.bitSetCase(Options, "Constructor", FunctionOptions::Constructor); in bitset()
358 FunctionOptions::ConstructorWithVirtualBases); in bitset()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h150 FunctionOptions Options, uint16_t ParameterCount, in ProcedureRecord()
158 FunctionOptions getOptions() const { return Options; } in getOptions()
164 FunctionOptions Options;
177 FunctionOptions Options, uint16_t ParameterCount, in MemberFunctionRecord()
189 FunctionOptions getOptions() const { return Options; } in getOptions()
198 FunctionOptions Options;
H A DCodeView.h244 enum class FunctionOptions : uint8_t { enum
250 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(FunctionOptions)
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp209 static std::string formatFunctionOptions(FunctionOptions Options) { in formatFunctionOptions()
212 PUSH_FLAG(FunctionOptions, CxxReturnUdt, Options, "returns cxx udt"); in formatFunctionOptions()
213 PUSH_FLAG(FunctionOptions, ConstructorWithVirtualBases, Options, in formatFunctionOptions()
215 PUSH_FLAG(FunctionOptions, Constructor, Options, "constructor"); in formatFunctionOptions()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h414 codeview::FunctionOptions FO = codeview::FunctionOptions::None);
H A DCodeViewDebug.cpp417 static FunctionOptions
421 FunctionOptions FO = FunctionOptions::None; in getFunctionOptions()
432 FO |= FunctionOptions::CxxReturnUdt; in getFunctionOptions()
436 FO |= FunctionOptions::Constructor; in getFunctionOptions()
464 FunctionOptions FO = getFunctionOptions(SP->getType(), Class, SP->getName()); in getMemberFunctionType()
1931 FunctionOptions FO = getFunctionOptions(Ty); in lowerTypeFunction()
1941 FunctionOptions FO) { in lowerTypeMemberFunction()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp423 CV_ENUM_CLASS_ENT(FunctionOptions, CxxReturnUdt),
424 CV_ENUM_CLASS_ENT(FunctionOptions, Constructor),
425 CV_ENUM_CLASS_ENT(FunctionOptions, ConstructorWithVirtualBases),
H A DTypeDumpVisitor.cpp138 ENUM_ENTRY(FunctionOptions, CxxReturnUdt),
139 ENUM_ENTRY(FunctionOptions, Constructor),
140 ENUM_ENTRY(FunctionOptions, ConstructorWithVirtualBases),
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp399 struct FunctionOptions { struct
412 explicit FunctionOptions(const CapturedStmt *S, bool UIntPtrCastRequired, in FunctionOptions() function
427 llvm::Value *&CXXThisValue, const FunctionOptions &FO) { in emitOutlinedFunctionPrologue()
614 FunctionOptions FO(&S, !NeedWrapperFunction, /*RegisterCastedArgsOnly=*/false, in GenerateOpenMPCapturedStmtFunction()
636 FunctionOptions WrapperFO(&S, /*UIntPtrCastRequired=*/true, in GenerateOpenMPCapturedStmtFunction()