Searched refs:getTarget (Results 126 - 150 of 197) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp64 : CodeGenTypeCache(cgm), CGM(cgm), Target(cgm.getTarget()),
973 getTarget().getMCountName());
H A DCodeGenAction.cpp1170 CI.getTarget().getDataLayout(), TheModule.get(), BA,
H A DCodeGenModule.h686 const TargetInfo &getTarget() const { return Target; } function in class:clang::CodeGen::CodeGenModule
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);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp536 return TailDupPlacement && !F->getTarget().requiresStructuredCFG();
3101 bool EnableTailMerge = !MF.getTarget().requiresStructuredCFG() &&
H A DMachineOperand.cpp400 IntrinsicInfo = MF->getTarget().getIntrinsicInfo();
H A DMachineBasicBlock.cpp1116 if (MF->getTarget().requiresStructuredCFG())
H A DTwoAddressInstructionPass.cpp1668 const TargetMachine &TM = MF->getTarget();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp203 LLVMTargetMachine &TM = const_cast<LLVMTargetMachine&>(MF->getTarget());
1639 if (static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit()) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp466 static const Target *getTarget(const ObjectFile *Obj) { function
1534 const Target *TheTarget = getTarget(Obj);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DDriver.cpp504 target = getTarget();
1933 target = getTarget();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3965 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
5300 if (MF.getTarget().getCodeModel() != CodeModel::Small &&
5301 MF.getTarget().getCodeModel() != CodeModel::Kernel)
5306 if (MF.getTarget().isPositionIndependent()) {
6019 MF->getTarget().getCodeModel() == CodeModel::Medium ||
6020 MF->getTarget().getCodeModel() == CodeModel::Large) &&
7555 return Inst.getParent()->getParent()->getTarget().Options.UnsafeFPMath;
7811 static_cast<const X86TargetMachine *>(&MF.getTarget());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp570 m_compiler->getTarget().adjust(m_compiler->getLangOpts());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h84 Symbol &getTarget() const { return *Target; } function in class:llvm::jitlink::Edge
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp341 TM.getTarget().createMCSubtargetInfo(TT.str(), "", ""));
H A DAArch64InstrInfo.cpp79 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
1505 const TargetMachine &TM = MBB.getParent()->getTarget();
1958 const MCAsmInfo *MAI = MI.getMF()->getTarget().getMCAsmInfo();
3653 TargetOptions Options = Inst.getParent()->getParent()->getTarget().Options;
3731 return Inst.getParent()->getParent()->getTarget().Options.UnsafeFPMath;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFrameLowering.cpp1145 MF.getTarget().Options.DisableFramePointerElim(MF);
H A DAMDGPULegalizerInfo.cpp1271 = static_cast<const AMDGPUTargetMachine &>(MF.getTarget());
1951 MF.getTarget().Options.UnsafeFPMath || MI.getFlag(MachineInstr::FmArcp);
1953 if (!MF.getTarget().Options.UnsafeFPMath && ResTy == S64)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1073 if (auto *E = dyn_cast<AddrLabelExpr>(getTarget()->IgnoreParenImpCasts()))
H A DStmtPrinter.cpp386 PrintExpr(Node->getTarget());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp850 if (MF.getTarget().getTargetTriple().isOSDarwin())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEInstrInfo.cpp887 const TargetMachine &TM = MBB.getParent()->getTarget();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2973 if (!DAG.getTarget().Options.TrapUnreachable)
2977 if (DAG.getTarget().Options.NoTrapAfterNoreturn) {
5854 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5873 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5890 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5910 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5928 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
5945 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget());
6825 const auto &Triple = DAG.getTarget().getTargetTriple();
6856 const auto &Triple = DAG.getTarget()
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp4624 return addStmt(I->getTarget());
5281 if (Stmt *T = I->getTarget())
5966 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp534 if (!TM->getTarget().hasJIT()) {

Completed in 853 milliseconds

12345678