Searched refs:getTarget (Results 151 - 175 of 197) sorted by relevance

12345678

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp4947 if (!CGM.getTarget().hasFeature("ptx"))
4950 CGM.getTarget().initFeatureMap(Features, CGM.getDiags(),
4951 CGM.getTarget().getTargetOpts().CPU,
4952 CGM.getTarget().getTargetOpts().Features);
H A DCGAtomic.cpp804 unsigned MaxInlineWidthInBits = getTarget().getMaxAtomicInlineWidth();
H A DCGDecl.cpp1496 D.isExceptionVariable() && getTarget().getCXXABI().isMicrosoft();
H A DCGExprAgg.cpp1775 CGF.getTarget().getPointerWidth(0));
H A DCGObjCGNU.cpp985 if ((CGM.getTarget().getPointerWidth(0) == 64) &&
4085 CGF.CGM.getTarget().getTriple().isKnownWindowsMSVCEnvironment())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp130 bool EnableTailMerge = !MF.getTarget().requiresStructuredCFG() &&
H A DMachineInstr.cpp97 IntrinsicInfo = MF->getTarget().getIntrinsicInfo();
H A DRegAllocGreedy.cpp3226 MF->getTarget().getOptLevel());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8310 const TargetOptions &Options = DAG.getTarget().Options;
11526 const TargetOptions &Options = DAG.getTarget().Options;
11744 const TargetOptions &Options = DAG.getTarget().Options;
12049 const TargetOptions &Options = DAG.getTarget().Options;
12139 const TargetOptions &Options = DAG.getTarget().Options;
12318 const TargetOptions &Options = DAG.getTarget().Options;
12410 const TargetOptions &Options = DAG.getTarget().Options;
12545 const TargetOptions &Options = DAG.getTarget().Options;
12672 bool UnsafeMath = DAG.getTarget().Options.UnsafeFPMath;
12742 const TargetOptions &Options = DAG.getTarget()
[all...]
H A DFastISel.cpp1943 TM(FuncInfo.MF->getTarget()), DL(MF->getDataLayout()),
H A DTargetLowering.cpp5492 const TargetOptions &Options = DAG.getTarget().Options;
5641 assert((DAG.getTarget().Options.NoSignedZerosFPMath ||
5690 assert((DAG.getTarget().Options.NoSignedZerosFPMath ||
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp2615 if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
2714 if (IsTailCall && MF.getTarget().Options.GuaranteedTailCallOpt) {
2734 bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
7550 bool Unsafe = DAG.getTarget().Options.UnsafeFPMath || Flags.hasAllowReciprocal();
7808 if (DAG.getTarget().Options.UnsafeFPMath)
9447 const TargetOptions &Options = DAG.getTarget().Options;
9767 const TargetOptions &Options = DAG.getTarget().Options;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3196 CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
3518 MF.getTarget().Options.GuaranteedTailCallOpt))
3662 MF.getTarget().Options.GuaranteedTailCallOpt)) {
3796 bool IsGuaranteeTCO = MF.getTarget().Options.GuaranteedTailCallOpt ||
4000 const TargetOptions &Options = DAG.getTarget().Options;
4167 if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
4291 DAG.getTarget().Options.GuaranteedTailCallOpt))
4488 bool IsGuaranteeTCO = DAG.getTarget().Options.GuaranteedTailCallOpt ||
4642 MF.getTarget().Options.GuaranteedTailCallOpt);
9157 const TargetOptions &Options = DAG.getTarget()
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h424 const TargetMachine &getTarget() const { return TM; } function in class:llvm::SelectionDAG
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp113 const TargetMachine& TM = MF.getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp257 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()),
H A DMipsISelLowering.cpp543 static_cast<const MipsTargetMachine &>(funcInfo.MF->getTarget());
2137 if (DAG.getTarget().useEmulatedTLS())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp98 : FastISel(FuncInfo, LibInfo), TM(FuncInfo.MF->getTarget()),
H A DPPCInstrInfo.cpp276 if (!Root.getParent()->getParent()->getTarget().Options.UnsafeFPMath)
2000 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
H A DPPCISelLowering.cpp2907 if (DAG.getTarget().useEmulatedTLS())
5159 return DAG.getTarget().shouldAssumeDSOLocal(*Mod, GV) &&
5456 Callee, Subtarget, DAG.getTarget());
7585 bool HasNoInfs = DAG.getTarget().Options.NoInfsFPMath;
7586 bool HasNoNaNs = DAG.getTarget().Options.NoNaNsFPMath;
8138 !DAG.getTarget().Options.UnsafeFPMath) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1408 return getInlineAsmLength(AsmStr, *MF->getTarget().getMCAsmInfo());
H A DSystemZISelLowering.cpp2972 CodeModel::Model CM = DAG.getTarget().getCodeModel();
3085 if (DAG.getTarget().useEmulatedTLS())
3090 TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp957 DAG.getTarget(), Params, Results);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp4316 if (MF.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast)
4324 if (MF.getTarget().Options.UnsafeFPMath)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3562 bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
3930 bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
4134 const TargetOptions &Options = DAG.getTarget().Options;
4670 switch (DAG.getTarget().Options.TLSSize) {
4933 if (DAG.getTarget().useEmulatedTLS())
5456 if (DAG.getTarget().Options.UnsafeFPMath) {

Completed in 518 milliseconds

12345678