Home
last modified time | relevance | path

Searched refs:FnInfoOpts (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h402 enum class FnInfoOpts { enum
409 inline FnInfoOpts operator|(FnInfoOpts A, FnInfoOpts B) {
410 return static_cast<FnInfoOpts>(llvm::to_underlying(A) |
414 inline FnInfoOpts operator&(FnInfoOpts A, FnInfoOpts B) {
415 return static_cast<FnInfoOpts>(llvm::to_underlying(A) &
419 inline FnInfoOpts operator|=(FnInfoOpts A, FnInfoOpts B) {
424 inline FnInfoOpts operator&=(FnInfoOpts A, FnInfoOpts B) {
H A DCGCall.cpp193 FnInfoOpts opts = in arrangeLLVMFunctionInfo()
194 instanceMethod ? FnInfoOpts::IsInstanceMethod : FnInfoOpts::None; in arrangeLLVMFunctionInfo()
618 FnInfoOpts opts = chainCall ? FnInfoOpts::IsChainCall : FnInfoOpts::None; in arrangeFreeFunctionLikeCall()
652 FnInfoOpts::None, argTypes, in arrangeBlockFunctionDeclaration()
735 FnInfoOpts opts = FnInfoOpts::None; in arrangeCall()
737 opts |= FnInfoOpts::IsInstanceMethod; in arrangeCall()
739 opts |= FnInfoOpts::IsChainCall; in arrangeCall()
741 opts |= FnInfoOpts::IsDelegateCall; in arrangeCall()
767 (opts & FnInfoOpts::IsInstanceMethod) == FnInfoOpts::IsInstanceMethod; in arrangeLLVMFunctionInfo()
769 (opts & FnInfoOpts::IsChainCall) == FnInfoOpts::IsChainCall; in arrangeLLVMFunctionInfo()
[all …]
H A DCodeGenABITypes.cpp68 return CGM.getTypes().arrangeLLVMFunctionInfo(returnType, FnInfoOpts::None, in arrangeFreeFunctionCall()
H A DCodeGenTypes.h259 CanQualType returnType, FnInfoOpts opts, ArrayRef<CanQualType> argTypes,
H A DCGDeclCXX.cpp281 getContext().IntTy, FnInfoOpts::None, {getContext().IntTy}, in createTLSAtExitStub()
H A DCGClass.cpp3078 FnInfo.getReturnType(), FnInfoOpts::IsDelegateCall, ArgTypes, in EmitLambdaInAllocaImplFn()