Searched refs:getTarget (Results 26 - 50 of 197) sorted by relevance

12345678

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp60 getTarget().getCXXABI().isItaniumFamily()) {
63 getTarget().getCXXABI().isMicrosoft()) {
215 const llvm::Triple &T = CGM.getTarget().getTriple();
217 const TargetInfo &Target = CGM.getTarget();
328 const EHPersonality &CXX = getCXXPersonality(getTarget(), LangOpts);
469 if (getTarget().getCXXABI().isMicrosoft())
545 if (getTarget().getCXXABI().isMicrosoft())
1694 if (ParentCGF.getTarget().getTriple().getArch() != llvm::Triple::x86)
1762 CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) {
1770 if (IsFilter && CGM.getTarget()
[all...]
H A DTargetInfo.cpp122 auto ptrWidth = cgt.getTarget().getPointerWidth(0);
203 const TargetInfo &ABIInfo::getTarget() const { function in class:ABIInfo
204 return CGT.getTarget();
211 bool ABIInfo::isAndroid() const { return getTarget().getTriple().isAndroid(); }
1092 IsMCUABI(CGT.getTarget().getTriple().isOSIAMCU()),
1127 if (CGM.getTarget().getTriple().isOSDarwin()) return 5;
2005 if (CGF.CGM.getTarget().getTriple().isOSDarwin()) {
2161 return !getTarget().getTriple().isOSDarwin();
2172 const llvm::Triple &Triple = getTarget().getTriple();
2187 const llvm::Triple &T = getTarget()
[all...]
H A DCodeGenTypes.h118 const TargetInfo &getTarget() const { return Target; } function in class:clang::CodeGen::CodeGenTypes
H A DCGStmt.cpp625 llvm::Value *V = Builder.CreateBitCast(EmitScalarExpr(S.getTarget()),
1910 i + 1, SM, LangOpts, CGF.getTarget(), &StartToken, &ByteOffset);
1981 bool IsValid = getTarget().validateOutputConstraint(Info); (void)IsValid;
1992 getTarget().validateInputConstraint(OutputConstraintInfos, Info);
2029 getTarget(), &OutputConstraintInfos);
2035 getTarget(), CGM, S,
2158 InputConstraint = SimplifyConstraint(InputConstraint.c_str(), getTarget(),
2163 getTarget(), CGM, S, false /* No EarlyClobber */);
2251 Clobber = getTarget().getNormalizedGCCRegisterName(Clobber);
2262 std::string MachineClobbers = getTarget()
[all...]
H A DCGCXXABI.cpp277 if (CGM.getTarget().getCXXABI().hasConstructorVariants())
H A DCGVTables.cpp475 if (CGM.getTarget().getCXXABI().isMicrosoft())
545 bool ABIHasKeyFunctions = CGM.getTarget().getCXXABI().hasKeyFunctions();
906 if (getTarget().getCXXABI().isMicrosoft())
955 if (CGM.getTarget().getCXXABI().isMicrosoft())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64CallLowering.cpp466 MF.getTarget().Options.GuaranteedTailCallOpt)) {
723 const Triple &TT = MF.getTarget().getTargetTriple();
734 if (MF.getTarget().Options.GuaranteedTailCallOpt)
788 bool IsSibCall = !MF.getTarget().Options.GuaranteedTailCallOpt;
1019 MF.getTarget().Options.GuaranteedTailCallOpt)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelect.cpp254 .getTarget()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DXRayInstrumentation.cpp209 switch (MF.getTarget().getTargetTriple().getArch()) {
H A DPrologEpilogInserter.cpp240 if (MF.getTarget().usesPhysRegsForPEI())
1028 if (MF.getTarget().getOptLevel() != CodeGenOpt::None &&
1029 MF.getTarget().Options.StackSymbolOrdering)
1038 MF.getTarget().getOptLevel() != CodeGenOpt::None &&
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp142 << EdgeKindName << " -> " << E.getTarget() << " + " << E.getAddend();
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DParentMap.cpp205 return DirectChild == cast<IndirectGotoStmt>(P)->getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h109 const Target &getTarget() const { return TheTarget; } function in class:llvm::TargetMachine
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb1InstrInfo.cpp136 const TargetMachine &TM = MF.getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRRegisterInfo.cpp137 const AVRTargetMachine &TM = (const AVRTargetMachine &)MF.getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp285 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64();
H A DMipsSERegisterInfo.cpp155 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp157 const Target* target = &(unwrap(T)->getTarget());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFrameLowering.cpp93 auto EHType = MF.getTarget().getMCAsmInfo()->getExceptionHandlingType();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp388 getDiagnostics(), getLangOpts(), &getTarget());
394 getTarget().adjust(getLangOpts());
395 PP->Initialize(getTarget(), getAuxTarget());
487 Context->InitBuiltinTypes(getTarget(), getAuxTarget());
926 TO->HostTriple = getTarget().getTriple().str();
934 getTarget().adjust(getLangOpts());
937 getTarget().adjustTargetOptions(getCodeGenOpts(), getTargetOpts());
940 getTarget().setAuxTarget(Aux);
944 getTarget().noSignedCharForObjCBool();
2002 if (Preprocessor::checkModuleIsAvailable(getLangOpts(), getTarget(),
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp222 auto &TargetSym = E.getTarget();
263 auto &TargetSym = E.getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp148 std::unique_ptr<MCInstrInfo> MII(TM.getTarget().createMCInstrInfo());
149 std::unique_ptr<MCTargetAsmParser> TAP(TM.getTarget().createMCAsmParser(
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp218 const Target *getTarget(const char *ProgName) { function in namespace:__anon5835
308 const Target *TheTarget = getTarget(ProgName);
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
H A DTarget.h195 TargetInfo *getTarget();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp325 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter(

Completed in 326 milliseconds

12345678