Searched refs:TT (Results 226 - 250 of 324) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp330 const Triple &TT) {
345 return TT.isOSBinFormatMachO() ? AccelTableKind::Apple
355 const Triple &TT = Asm->TM.getTargetTriple();
363 else if (TT.isPS4CPU())
365 else if (TT.isOSAIX())
371 UseInlineStrings = TT.isNVPTX() || tuneForDBX();
375 UseLocSection = !TT.isNVPTX();
393 TT.isNVPTX() ? 2 : (DwarfVersion ? DwarfVersion : dwarf::DWARF_VERSION);
396 TT.isArch64Bit(); // DWARF64 requires 64-bit relocations.
405 TT
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DARMTargetParser.h277 StringRef computeDefaultTargetABI(const Triple &TT, StringRef CPU);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h106 HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCTargetDesc.h34 MCAsmBackend *createWebAssemblyAsmBackend(const Triple &TT);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.h179 PPCSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsSubtarget.h238 MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, bool little,
/netbsd-current/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp139 Triple TT; member in class:SpeculativeJIT
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAvailability.cpp72 if (const auto *TT = TD->getUnderlyingType()->getAs<TagType>()) {
73 D = TT->getDecl();
863 if (const auto *TT = dyn_cast<TagType>(TyPtr)) {
864 TagDecl *TD = TT->getDecl();
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenTypes.cpp213 const TagType *TT = Ty->getAs<TagType>(); local
214 if (!TT) return true;
217 if (TT->isIncompleteType())
221 const RecordType *RT = dyn_cast<RecordType>(TT);
/netbsd-current/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
H A DLLJITWithObjectLinkingLayerPlugin.cpp209 [&](ExecutionSession &ES, const Triple &TT) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1279 Triple TT; member in class:__anon2691::DarwinX86AsmBackend
1422 : X86AsmBackend(T, STI), MRI(MRI), TT(STI.getTargetTriple()),
1423 Is64Bit(TT.isArch64Bit()) {
1432 uint32_t CPUType = cantFail(MachO::getCPUType(TT));
1433 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT));
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DJSONNodeDumper.cpp291 if (const auto *TT = QT->getAs<TypedefType>())
292 Ret["typeAliasDeclId"] = createPointerRepresentation(TT->getDecl());
500 void JSONNodeDumper::VisitTypedefType(const TypedefType *TT) { argument
501 JOS.attribute("decl", createBareDeclRef(TT->getDecl()));
640 void JSONNodeDumper::VisitTagType(const TagType *TT) { argument
641 JOS.attribute("decl", createBareDeclRef(TT->getDecl()));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp49 const object::MachOObjectFile &Obj, Triple TT,
53 std::string(Obj.getFileName()), std::move(TT), getPointerSize(Obj),
48 MachOLinkGraphBuilder( const object::MachOObjectFile &Obj, Triple TT, LinkGraph::GetEdgeKindNameFunction GetEdgeKindName) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp534 [=](ExecutionSession &ES, const Triple &TT) {
535 auto TTStr = TT.str();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp553 Triple TT(M.getTargetTriple());
554 if (TT.getArch() == Triple::r600)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h83 Triple TT; member in class:llvm::MCContext
406 const Triple &getTargetTriple() const { return TT; }
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp485 const Triple &TT = TM.getTargetTriple(); local
490 if (TT.isOSBinFormatELF())
496 if (!M.getModuleInlineAsm().empty() && TT.isThumb())
525 const Triple &TT = TM.getTargetTriple(); local
526 if (TT.isOSBinFormatMachO()) {
621 const Triple &TT = TM.getTargetTriple();
624 std::string ArchFS = ARM_MC::ParseARMTriple(TT, CPU);
633 const ARMSubtarget STI(TT, std::string(CPU), ArchFS, ATM,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp387 const Triple &TT = STI.getTargetTriple(); local
388 bool isPPC64 = TT.isPPC64();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp504 Triple TT(M.getTargetTriple());
505 if (TT.supportsCOMDAT()) {
/netbsd-current/crypto/external/bsd/openssl/lib/libdes/
H A Doread_pwd.c236 $DESCRIPTOR(terminal,"TT");
323 tty_new[1] = tty_orig[1] | TT$M_NOECHO;
/netbsd-current/external/bsd/openldap/dist/libraries/liblunicode/ucdata/
H A DMUTTUCData.txt280 E94F;DEVANAGARI TT-TTA LIGATURE;Lo;0;L;091F 094D 091F;;;;N;;;;;
281 E950;DEVANAGARI TT-TTHA LIGATURE;Lo;0;L;091F 094D 0920;;;;N;;;;;
/netbsd-current/crypto/external/bsd/openssl.old/lib/libdes/
H A Doread_pwd.c236 $DESCRIPTOR(terminal,"TT");
323 tty_new[1] = tty_orig[1] | TT$M_NOECHO;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp809 const Triple &TT = MF.getTarget().getTargetTriple(); local
811 (!TT.isOSWindows() || TT.isOSBinFormatELF() ||
812 TT.isOSBinFormatMachO())) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp1152 Triple TT(M.getTargetTriple());
1153 if (TT.supportsCOMDAT()) {
1168 Triple TT(M.getTargetTriple());
1169 if (TT.supportsCOMDAT()) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTargetMachine.h388 const Triple &TT, StringRef CPU, StringRef FS,

Completed in 495 milliseconds

1234567891011>>