Home
last modified time | relevance | path

Searched refs:getLocInfo (Results 1 – 25 of 39) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLoweringCall.cpp771 if (VA.getLocInfo() == CCValAssign::SExt) in LowerReturn()
773 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerReturn()
775 else if (VA.getLocInfo() == CCValAssign::AExt) { in LowerReturn()
781 else if (VA.getLocInfo() == CCValAssign::BCvt) in LowerReturn()
784 assert(VA.getLocInfo() != CCValAssign::FPExt && in LowerReturn()
1177 if (VA.getLocInfo() == CCValAssign::BCvt) in LowerCallResult()
1387 if (VA.getLocInfo() == CCValAssign::ZExt) { in LowerMemArgument()
1389 } else if (VA.getLocInfo() == CCValAssign::SExt) { in LowerMemArgument()
1775 if (VA.getLocInfo() == CCValAssign::SExt) in LowerFormalArguments()
1804 if (VA.getLocInfo() == CCValAssign::Indirect && in LowerFormalArguments()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp280 if (Loc1.getLocInfo() != Loc2.getLocInfo()) in resultsCompatible()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp370 if (VA.getLocInfo() == CCValAssign::SExt) in LowerFormalArguments()
373 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerFormalArguments()
377 if (VA.getLocInfo() != CCValAssign::Full) in LowerFormalArguments()
458 switch (VA.getLocInfo()) { in LowerCall()
460 report_fatal_error("unhandled location info: " + Twine(VA.getLocInfo())); in LowerCall()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp442 if (VA.getLocInfo() == CCValAssign::Indirect) in LowerMemArgument()
481 if (VA.getLocInfo() == CCValAssign::ZExt) { in LowerMemArgument()
483 } else if (VA.getLocInfo() == CCValAssign::SExt) { in LowerMemArgument()
651 switch (VA.getLocInfo()) { in LowerCall()
959 if (VA.getLocInfo() == CCValAssign::SExt) { in LowerFormalArguments()
979 if (VA.getLocInfo() == CCValAssign::Indirect) in LowerFormalArguments()
1098 if (VA.getLocInfo() == CCValAssign::SExt) in LowerReturn()
1100 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerReturn()
1102 else if (VA.getLocInfo() == CCValAssign::AExt) { in LowerReturn()
1107 } else if (VA.getLocInfo() == CCValAssign::BCvt) in LowerReturn()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMCallLowering.cpp261 if (VA.getLocInfo() == CCValAssign::SExt || in assignValueToAddress()
262 VA.getLocInfo() == CCValAssign::ZExt) { in assignValueToAddress()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp468 if (VA.getLocInfo() == CCValAssign::SExt) in LowerCCCArguments()
471 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerCCCArguments()
475 if (VA.getLocInfo() != CCValAssign::Full) in LowerCCCArguments()
670 switch (VA.getLocInfo()) { in LowerCCCCallTo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp925 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnCXXNestedNameSpecifier()
974 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnCXXNestedNameSpecifier()
H A DSemaTemplate.cpp4323 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnTemplateIdType()
4340 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo()); in ActOnTemplateIdType()
4394 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnTagTemplateIdType()
4438 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo()); in ActOnTagTemplateIdType()
11117 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnTypenameType()
11134 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); in ActOnTypenameType()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h134 LocInfo getLocInfo() const { return HTP; } in getLocInfo() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp661 if (VA.getLocInfo() == CCValAssign::SExt) in LowerCCCArguments()
664 else if (VA.getLocInfo() == CCValAssign::ZExt) in LowerCCCArguments()
668 if (VA.getLocInfo() != CCValAssign::Full) in LowerCCCArguments()
834 switch (VA.getLocInfo()) { in LowerCCCCallTo()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h576 TemplateArgumentLocInfo getLocInfo() const { return LocInfo; }
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.cpp203 switch (VA.getLocInfo()) { in convertValVTToLocVT()
217 switch (VA.getLocInfo()) { in convertLocVTToValVT()
274 switch (VA.getLocInfo()) { in unpackFromMemLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp1402 if (VA.getLocInfo() == CCValAssign::BCvt) in processCallArgs()
1435 switch (VA.getLocInfo()) { in processCallArgs()
1729 PPCMaterializeInt(CI, MVT::i64, VA.getLocInfo() != CCValAssign::ZExt); in SelectRet()
1761 switch (VA.getLocInfo()) { in SelectRet()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp1200 switch (VA.getLocInfo()) { in extendRegister()
1229 switch (VA.getLocInfo()) { in buildExtensionHint()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp188 switch (VA.getLocInfo()) { in assignValueToAddress()
313 if (VA.getLocInfo() != CCValAssign::LocInfo::FPExt) { in assignValueToAddress()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1198 switch (VA.getLocInfo()) { in processCallArgs()
1709 if ((VA.getLocInfo() != CCValAssign::Full) && in selectRet()
1710 (VA.getLocInfo() != CCValAssign::BCvt)) in selectRet()
H A DMipsISelLowering.cpp3302 switch (VA.getLocInfo()) { in LowerCall()
3533 VA.getLocInfo() == CCValAssign::ZExtUpper ? ISD::SRL : ISD::SRA; in LowerCallResult()
3539 switch (VA.getLocInfo()) { in LowerCallResult()
3578 switch (VA.getLocInfo()) { in UnpackFromArgumentSlot()
3587 VA.getLocInfo() == CCValAssign::ZExtUpper ? ISD::SRL : ISD::SRA; in UnpackFromArgumentSlot()
3599 switch (VA.getLocInfo()) { in UnpackFromArgumentSlot()
3845 switch (VA.getLocInfo()) { in LowerReturn()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp370 switch (VA.getLocInfo()) { in LowerReturn_64()
659 switch (VA.getLocInfo()) { in LowerFormalArguments_64()
911 switch (VA.getLocInfo()) { in LowerCall_32()
1217 VA.getLocVT(), VA.getLocInfo()); in fixupVariableFloatArgs()
1278 switch (VA.getLocInfo()) { in LowerCall_64()
1482 switch (VA.getLocInfo()) { in LowerCall_64()
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp53 const TemplateArgumentLocInfo &LocInfo = TALoc.getLocInfo(); in handleTemplateArgumentLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp393 switch (VA.getLocInfo()) { in LowerReturn()
476 switch (VA.getLocInfo()) { in LowerFormalArguments()
691 switch (VA.getLocInfo()) { in LowerCall()
823 switch (VA.getLocInfo()) { in LowerCall()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp3731 switch (VA.getLocInfo()) { in convertLocVTToValVT()
3775 switch (VA.getLocInfo()) { in unpackFromMemLoc()
3793 switch (VA.getLocInfo()) { in convertValVTToLocVT()
3893 if (VA.getLocInfo() == CCValAssign::Indirect) { in LowerFormalArguments()
4034 if (VA.getLocInfo() == CCValAssign::Indirect) in isEligibleForTailCallOptimization()
4144 if (VA.getLocInfo() == CCValAssign::Indirect) { in LowerCall()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp306 switch (VA.getLocInfo()) { in LowerCall()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1458 if (VA.getLocInfo() == CCValAssign::SExt) in convertLocVTToValVT()
1461 else if (VA.getLocInfo() == CCValAssign::ZExt) in convertLocVTToValVT()
1467 else if (VA.getLocInfo() == CCValAssign::BCvt) { in convertLocVTToValVT()
1475 assert(VA.getLocInfo() == CCValAssign::Full && "Unsupported getLocInfo"); in convertLocVTToValVT()
1484 switch (VA.getLocInfo()) { in convertValVTToLocVT()
1669 if (VA.getLocInfo() == CCValAssign::Indirect) { in LowerFormalArguments()
1766 if (VA.getLocInfo() == CCValAssign::Indirect) in canUseSiblingCall()
1914 if (VA.getLocInfo() == CCValAssign::Indirect) { in LowerCall()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp227 switch (VA.getLocInfo()) { in LowerReturn()
476 switch (VA.getLocInfo()) { in LowerCall()
839 if (VA.getLocInfo() == CCValAssign::BCvt) in LowerFormalArguments()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1428 switch (VA.getLocInfo()) { in LowerFormalArguments()
1546 switch (VA.getLocInfo()) { in LowerCall()

12