Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp894 IAPrinter IAP(CGA.Result->getAsString(), FlatAliasAsmString, NumMIOps); in EmitPrintAliasInstruction() local
917 while (IAP.getCondCount() < MIOpNum) in EmitPrintAliasInstruction()
918 IAP.addCond("AliasPatternCond::K_Ignore, 0"); in EmitPrintAliasInstruction()
950 if (!IAP.isOpMapped(ROName)) { in EmitPrintAliasInstruction()
951 IAP.addOperand(ROName, MIOpNum, PrintMethodIdx); in EmitPrintAliasInstruction()
955 IAP.addCond(std::string( in EmitPrintAliasInstruction()
959 IAP.addCond(std::string(formatv("AliasPatternCond::K_TiedReg, {}", in EmitPrintAliasInstruction()
960 IAP.getOpIndex(ROName)))); in EmitPrintAliasInstruction()
965 IAP.addOperand(ROName, MIOpNum, PrintMethodIdx); in EmitPrintAliasInstruction()
977 IAP.addCond( in EmitPrintAliasInstruction()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp2418 ImplicitAllocationParameters IAP = { in BuildCXXNew() local
2434 AllocType, ArraySize.has_value(), IAP, in BuildCXXNew()
2443 *this, StartLoc, IAP.PassTypeIdentity, AllocType); in BuildCXXNew()
2457 if (isTypeAwareAllocation(IAP.PassTypeIdentity)) { in BuildCXXNew()
2461 if (isAlignedAllocation(IAP.PassAlignment)) in BuildCXXNew()
2527 if (isAlignedAllocation(IAP.PassAlignment)) in BuildCXXNew()
2538 if (PlacementArgs.empty() && !isAlignedAllocation(IAP.PassAlignment) && in BuildCXXNew()
2625 IAP, UsualArrayDeleteWantsSize, PlacementArgs, in BuildCXXNew()
2863 ImplicitAllocationParameters &IAP, FunctionDecl *&Operator, in resolveAllocationOverload() argument
2866 if (isTypeAwareAllocation(IAP.PassTypeIdentity)) { in resolveAllocationOverload()
[all …]
H A DSemaCoroutine.cpp1447 ImplicitAllocationParameters IAP( in makeNewAndDeleteExpr() local
1465 IAP = ImplicitAllocationParameters( in makeNewAndDeleteExpr()
1472 /*isArray=*/false, IAP, in makeNewAndDeleteExpr()
1500 !isAlignedAllocation(IAP.PassAlignment))) in makeNewAndDeleteExpr()
1525 if (!OperatorNew || !isAlignedAllocation(IAP.PassAlignment)) { in makeNewAndDeleteExpr()
1631 isAlignedAllocation(IAP.PassAlignment)) in makeNewAndDeleteExpr()
H A DSemaTemplateDeduction.cpp1890 const auto *IAP = S.Context.getAsIncompleteArrayType(P); in DeduceTemplateArgumentsByTypeMatch() local
1891 assert(IAP && "Template parameter not of incomplete array type"); in DeduceTemplateArgumentsByTypeMatch()
1894 S, TemplateParams, IAP->getElementType(), IAA->getElementType(), Info, in DeduceTemplateArgumentsByTypeMatch()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1467 const ImplicitAllocationParameters &IAP, in CallDeleteDuringNew() argument
1471 isAlignedAllocation(IAP.PassAlignment)), in CallDeleteDuringNew()
1664 ImplicitAllocationParameters IAP = E->implicitAllocationParameters(); in EmitCXXNewExpr() local
1666 if (isTypeAwareAllocation(IAP.PassTypeIdentity)) { in EmitCXXNewExpr()
1686 if (isAlignedAllocation(IAP.PassAlignment)) { in EmitCXXNewExpr()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp230 const ImplicitAllocationParameters &IAP, in CXXNewExpr() argument
249 CXXNewExprBits.ShouldPassAlignment = isAlignedAllocation(IAP.PassAlignment); in CXXNewExpr()
251 isTypeAwareAllocation(IAP.PassTypeIdentity); in CXXNewExpr()
295 FunctionDecl *OperatorDelete, const ImplicitAllocationParameters &IAP, in Create() argument
310 IsGlobalNew, OperatorNew, OperatorDelete, IAP, UsualArrayDeleteWantsSize, in Create()
/freebsd/sys/sys/
H A Dpmc.h147 __PMC_CLASS(IAP, 0x07, "Intel Core...Atom, programmable") \
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp1936 ImplicitAllocationParameters IAP = E->implicitAllocationParameters(); in VisitCXXNewExpr() local
1937 Record.push_back(isAlignedAllocation(IAP.PassAlignment)); in VisitCXXNewExpr()
1938 Record.push_back(isTypeAwareAllocation(IAP.PassTypeIdentity)); in VisitCXXNewExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h2387 const ImplicitAllocationParameters &IAP,
2402 FunctionDecl *OperatorDelete, const ImplicitAllocationParameters &IAP,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8502 QualType AllocType, bool IsArray, ImplicitAllocationParameters &IAP,