Searched refs:calleeType (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/mlir/lib/Target/LLVMIR/ |
D | ModuleTranslation.cpp | 594 auto *calleeType = in convertOperation() local 596 return builder.CreateCall(calleeType, operandsRef.front(), in convertOperation() 658 auto *calleeType = in convertOperation() local 661 calleeType, operandsRef.front(), blockMapping[invOp.getSuccessor(0)], in convertOperation()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | inline_pass.cpp | 570 analysis::Type* calleeType = context()->get_type_mgr()->GetType(calleeTypeId); in GenInlineCode() local 571 if (calleeType->AsVoid() == nullptr) { in GenInlineCode()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | inline_pass.cpp | 570 analysis::Type* calleeType = context()->get_type_mgr()->GetType(calleeTypeId); in GenInlineCode() local 571 if (calleeType->AsVoid() == nullptr) { in GenInlineCode()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | inline_pass.cpp | 570 analysis::Type* calleeType = context()->get_type_mgr()->GetType(calleeTypeId); in GenInlineCode() local 571 if (calleeType->AsVoid() == nullptr) { in GenInlineCode()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 1840 QualType calleeType = C->getCallee()->getType(); in VisitCallExpr() local 1841 if (calleeType == Context->BoundMemberTy) { in VisitCallExpr() 1846 if (!boundType.isNull()) calleeType = boundType; in VisitCallExpr() 1850 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); in VisitCallExpr()
|
/external/llvm-project/flang/include/flang/Optimizer/Dialect/ |
D | FIROps.td | 2144 mlir::FunctionType calleeType; 2159 parser.parseColonType(calleeType) || 2160 parser.addTypesToList(calleeType.getResults(), result.types) || 2162 operands, calleeType.getInputs(), calleeLoc, result.operands)) 2164 result.addAttribute("fn_type", mlir::TypeAttr::get(calleeType));
|
/external/llvm-project/clang/lib/Analysis/ |
D | CFG.cpp | 2595 QualType calleeType = C->getCallee()->getType(); in VisitCallExpr() local 2596 if (calleeType == Context->BoundMemberTy) { in VisitCallExpr() 2601 if (!boundType.isNull()) calleeType = boundType; in VisitCallExpr() 2605 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); in VisitCallExpr()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 419 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; in DiagnoseSentinelCalls() local 423 calleeType = CT_Method; in DiagnoseSentinelCalls() 426 calleeType = CT_Function; in DiagnoseSentinelCalls() 433 calleeType = CT_Function; in DiagnoseSentinelCalls() 436 calleeType = CT_Block; in DiagnoseSentinelCalls() 465 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls() 482 if (calleeType == CT_Method && PP.isMacroDefined("nil")) in DiagnoseSentinelCalls() 492 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); in DiagnoseSentinelCalls() 495 << int(calleeType) in DiagnoseSentinelCalls() 497 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExpr.cpp | 414 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; in DiagnoseSentinelCalls() local 418 calleeType = CT_Method; in DiagnoseSentinelCalls() 421 calleeType = CT_Function; in DiagnoseSentinelCalls() 428 calleeType = CT_Function; in DiagnoseSentinelCalls() 431 calleeType = CT_Block; in DiagnoseSentinelCalls() 460 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls() 476 if (calleeType == CT_Method && PP.isMacroDefined("nil")) in DiagnoseSentinelCalls() 486 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); in DiagnoseSentinelCalls() 489 << int(calleeType) in DiagnoseSentinelCalls() 491 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()
|