Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp177 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor()
178 FunctionOptions::None; in hasConstructor()
188 FunctionOptions::ConstructorWithVirtualBases) != in isConstructorVirtualBase()
189 FunctionOptions::None; in isConstructorVirtualBase()
193 FunctionOptions Options = in isCxxReturnUdt()
195 return (Options & FunctionOptions::CxxReturnUdt) != FunctionOptions::None; in isCxxReturnUdt()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp68 LLVM_YAML_DECLARE_BITSET_TRAITS(FunctionOptions)
348 void ScalarBitSetTraits<FunctionOptions>::bitset(IO &IO, in bitset()
349 FunctionOptions &Options) { in bitset()
350 IO.bitSetCase(Options, "None", FunctionOptions::None); in bitset()
351 IO.bitSetCase(Options, "CxxReturnUdt", FunctionOptions::CxxReturnUdt); in bitset()
352 IO.bitSetCase(Options, "Constructor", FunctionOptions::Constructor); in bitset()
354 FunctionOptions::ConstructorWithVirtualBases); in bitset()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h157 FunctionOptions Options, uint16_t ParameterCount, in ProcedureRecord()
165 FunctionOptions getOptions() const { return Options; } in getOptions()
171 FunctionOptions Options;
184 FunctionOptions Options, uint16_t ParameterCount, in MemberFunctionRecord()
196 FunctionOptions getOptions() const { return Options; } in getOptions()
205 FunctionOptions Options;
H A DCodeView.h244 enum class FunctionOptions : uint8_t { enum
250 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(FunctionOptions)
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp208 static std::string formatFunctionOptions(FunctionOptions Options) { in formatFunctionOptions()
211 PUSH_FLAG(FunctionOptions, CxxReturnUdt, Options, "returns cxx udt"); in formatFunctionOptions()
212 PUSH_FLAG(FunctionOptions, ConstructorWithVirtualBases, Options, in formatFunctionOptions()
214 PUSH_FLAG(FunctionOptions, Constructor, Options, "constructor"); in formatFunctionOptions()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h412 codeview::FunctionOptions FO = codeview::FunctionOptions::None);
H A DCodeViewDebug.cpp371 static FunctionOptions
375 FunctionOptions FO = FunctionOptions::None; in getFunctionOptions()
384 FO |= FunctionOptions::CxxReturnUdt; in getFunctionOptions()
389 FO |= FunctionOptions::Constructor; in getFunctionOptions()
417 FunctionOptions FO = getFunctionOptions(SP->getType(), Class, SP->getName()); in getMemberFunctionType()
1821 FunctionOptions FO = getFunctionOptions(Ty); in lowerTypeFunction()
1831 FunctionOptions FO) { in lowerTypeMemberFunction()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp139 ENUM_ENTRY(FunctionOptions, CxxReturnUdt),
140 ENUM_ENTRY(FunctionOptions, Constructor),
141 ENUM_ENTRY(FunctionOptions, ConstructorWithVirtualBases),
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp343 struct FunctionOptions { struct
354 explicit FunctionOptions(const CapturedStmt *S, bool UIntPtrCastRequired, in FunctionOptions() function
369 llvm::Value *&CXXThisValue, const FunctionOptions &FO) { in emitOutlinedFunctionPrologue()
567 FunctionOptions FO(&S, !NeedWrapperFunction, /*RegisterCastedArgsOnly=*/false, in GenerateOpenMPCapturedStmtFunction()
585 FunctionOptions WrapperFO(&S, /*UIntPtrCastRequired=*/true, in GenerateOpenMPCapturedStmtFunction()