Home
last modified time | relevance | path

Searched refs:IsWindows (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMScheduleM4.td23 HasV8_3a, HasTrustZone, HasDFB, IsWindows];
H A DARMPredicates.td171 def IsWindows : Predicate<"Subtarget->isTargetWindows()">;
H A DARMScheduleM55.td95 IsWindows];
H A DARMInstrThumb.td1443 Requires<[IsThumb, IsWindows]> {
1560 Requires<[IsThumb,IsWindows]>;
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp2951 bool IsWindows = isTargetWindows(MF); in computeCalleeSaveRegisterPairs() local
3015 !invalidateRegisterPairing(RPI.Reg1, NextReg, IsWindows, in computeCalleeSaveRegisterPairs()
3088 ((!IsWindows && RPI.Reg2 == AArch64::FP) || in computeCalleeSaveRegisterPairs()
3089 (IsWindows && RPI.Reg2 == AArch64::LR))) in computeCalleeSaveRegisterPairs()
3115 ((!IsWindows && RPI.Reg2 == AArch64::FP) || in computeCalleeSaveRegisterPairs()
3116 (IsWindows && RPI.Reg2 == AArch64::LR))) in computeCalleeSaveRegisterPairs()
3128 ((!IsWindows && RPI.Reg1 == AArch64::LR && RPI.Reg2 == AArch64::FP) || in computeCalleeSaveRegisterPairs()
3129 (IsWindows && RPI.Reg1 == AArch64::FP && RPI.Reg2 == AArch64::LR))) in computeCalleeSaveRegisterPairs()
H A DAArch64InstrInfo.td317 def IsWindows : Predicate<"Subtarget->isTargetWindows()">;
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp1303 bool IsWindows = CGM.getTarget().getTriple().isOSWindows(); in buildGlobalBlock() local
1306 if (IsWindows) in buildGlobalBlock()
1346 /*constant*/ !IsWindows, llvm::GlobalVariable::InternalLinkage, AddrSpace); in buildGlobalBlock()
1352 if (IsWindows) { in buildGlobalBlock()
H A DCGCall.cpp213 bool IsWindows) { in getCallingConventionForDecl() argument
249 return IsWindows ? CC_C : CC_Win64; in getCallingConventionForDecl()
252 return IsWindows ? CC_X86_64SysV : CC_C; in getCallingConventionForDecl()
516 bool IsWindows = getContext().getTargetInfo().getTriple().isOSWindows(); in arrangeObjCMessageSendSignature() local
517 einfo = einfo.withCallingConv(getCallingConventionForDecl(MD, IsWindows)); in arrangeObjCMessageSendSignature()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp581 bool IsWindows = Triple.isOSWindows(); in getArchNameForCompilerRTLib() local
587 return (arm::getARMFloatABI(TC, Args) == arm::FloatABI::Hard && !IsWindows) in getArchNameForCompilerRTLib()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp500 bool IsWindows = TargetTriple.isOSWindows(); in getShadowMapping() local
525 else if (IsWindows) in getShadowMapping()
560 } else if (IsWindows && IsX86_64) { in getShadowMapping()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp4593 bool IsWindows = TT.isOSWindows(); in checkVAStartABI() local
4601 if (CC == CC_X86_64SysV || (!IsWindows && CC != CC_Win64)) in checkVAStartABI()
4609 if ((IsWindows && CC == CC_X86_64SysV) || in checkVAStartABI()
4610 (!IsWindows && CC == CC_Win64)) in checkVAStartABI()
4613 << !IsWindows; in checkVAStartABI()