Home
last modified time | relevance | path

Searched refs:JT (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp52 int JT = -1; member
58 return GV != nullptr || CP != nullptr || ES != nullptr || JT != -1; in hasSymbolicDisplacement()
81 } else if (JT != -1) in dump()
82 errs() << " JT" << JT << " Align" << Alignment.value() << '\n'; in dump()
156 AM.JT = J->getIndex(); in MatchWrapper()
270 else if (AM.JT != -1) in SelectAddr()
271 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i16, 0/*AM.SymbolFlags*/); in SelectAddr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64CompressJumpTables.cpp115 const MachineJumpTableEntry &JT = JTInfo.getJumpTables()[JTIdx]; in compressJumpTable() local
118 if (JT.MBBs.empty()) in compressJumpTable()
124 for (auto *Block : JT.MBBs) { in compressJumpTable()
H A DAArch64AsmPrinter.cpp814 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in emitJumpTableInfo() local
815 if (JT.empty()) return; in emitJumpTableInfo()
831 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) { in emitJumpTableInfo()
832 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp77 int JT; member
85 MCSym(nullptr), JT(-1), Alignment(), SymbolFlags(M68kII::MO_NO_FLAG) {} in M68kISelAddressMode()
89 MCSym != nullptr || JT != -1 || BlockAddr != nullptr; in hasSymbolicDisplacement()
271 if (AM.JT != -1) { in getSymbolicDisplacement()
273 Sym = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags); in getSymbolicDisplacement()
561 AM.JT = J->getIndex(); in matchWrapper()
598 AM.JT = J->getIndex(); in matchWrapper()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp572 void applyICallBranchFunnel(VTableSlotInfo &SlotInfo, Constant *JT,
1271 Function *JT; in tryICallBranchFunnel() local
1273 JT = Function::Create(FT, Function::ExternalLinkage, in tryICallBranchFunnel()
1276 JT->setVisibility(GlobalValue::HiddenVisibility); in tryICallBranchFunnel()
1278 JT = Function::Create(FT, Function::InternalLinkage, in tryICallBranchFunnel()
1282 JT->addAttribute(1, Attribute::Nest); in tryICallBranchFunnel()
1285 JTArgs.push_back(JT->arg_begin()); in tryICallBranchFunnel()
1291 BasicBlock *BB = BasicBlock::Create(M.getContext(), "", JT, nullptr); in tryICallBranchFunnel()
1300 applyICallBranchFunnel(SlotInfo, JT, IsExported); in tryICallBranchFunnel()
1306 Constant *JT, bool &IsExported) { in applyICallBranchFunnel() argument
[all …]
H A DLowerTypeTests.cpp484 void replaceWeakDeclarationWithJumpTablePtr(Function *F, Constant *JT,
1314 Function *F, Constant *JT, bool IsJumpTableCanonical) { in replaceWeakDeclarationWithJumpTablePtr() argument
1333 JT, Constant::getNullValue(F->getType())); in replaceWeakDeclarationWithJumpTablePtr()
1643 for (ICallBranchFunnel *JT : ICallBranchFunnels) { in buildBitSetsFromDisjointSet()
1646 for (GlobalTypeMember *T : JT->targets()) in buildBitSetsFromDisjointSet()
/netbsd-src/external/bsd/unbound/dist/testdata/09-unbound-control.tdir/
H A Dbad_control.pem17 Ni4wezgLiG+buJ5lXEYr2Rm7HR/cxLRN7CFrpUoavFUvqLKNpXO8MJFx+BkO5/JT
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/65-test_cmp_msg_data/
H A Dnew.key5 SungipsvVsx3i/x8XEnRkMYlqF8uK6udhTJqVo0Icr6Erb5Fp5GA+Wxd+JT+/CGG
/netbsd-src/crypto/external/bsd/openssl/dist/test/certs/
H A Droot-key2.pem5 SungipsvVsx3i/x8XEnRkMYlqF8uK6udhTJqVo0Icr6Erb5Fp5GA+Wxd+JT+/CGG
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/certs/
H A Droot-key2.pem5 SungipsvVsx3i/x8XEnRkMYlqF8uK6udhTJqVo0Icr6Erb5Fp5GA+Wxd+JT+/CGG
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp190 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in printInlineJT() local
191 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in printInlineJT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp746 void IRTranslator::emitJumpTable(SwitchCG::JumpTable &JT, in emitJumpTable() argument
749 assert(JT.Reg != -1U && "Should lower JT Header first!"); in emitJumpTable()
757 auto Table = MIB.buildJumpTable(PtrTy, JT.JTI); in emitJumpTable()
758 MIB.buildBrJT(Table.getReg(0), JT.JTI, JT.Reg); in emitJumpTable()
761 bool IRTranslator::emitJumpTableHeader(SwitchCG::JumpTable &JT, in emitJumpTableHeader() argument
781 JT.Reg = Sub.getReg(0); in emitJumpTableHeader()
784 if (JT.MBB != HeaderBB->getNextNode()) in emitJumpTableHeader()
785 MIB.buildBr(*JT.MBB); in emitJumpTableHeader()
797 auto BrCond = MIB.buildBrCond(Cmp.getReg(0), *JT.Default); in emitJumpTableHeader()
800 if (JT.MBB != HeaderBB->getNextNode()) in emitJumpTableHeader()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp583 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in doInitialJumpTablePlacement() local
625 unsigned Size = JT[JTI].MBBs.size() * sizeof(uint32_t); in doInitialJumpTablePlacement()
2180 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in optimizeThumb2JumpTables() local
2188 assert(JTI < JT.size()); in optimizeThumb2JumpTables()
2193 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in optimizeThumb2JumpTables()
2374 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in reorderThumb2JumpTables() local
2382 assert(JTI < JT.size()); in reorderThumb2JumpTables()
2388 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in reorderThumb2JumpTables()
H A DARMAsmPrinter.cpp972 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in emitJumpTableAddrs() local
973 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableAddrs()
1015 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in emitJumpTableInsts() local
1016 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInsts()
1043 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables(); in emitJumpTableTBInst() local
1044 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableTBInst()
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/example-synacor/
H A Disa.inc50 .macro JT a:req, b:req
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h580 static void mapping(IO &YamlIO, MachineJumpTable &JT) {
581 YamlIO.mapRequired("kind", JT.Kind);
582 YamlIO.mapOptional("entries", JT.Entries,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp254 JumpTable JT(-1U, JTI, JumpTableMBB, nullptr); in buildJumpTable() local
258 JTCases.emplace_back(std::move(JTH), std::move(JT)); in buildJumpTable()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h343 bool emitJumpTableHeader(SwitchCG::JumpTable &JT,
346 void emitJumpTable(SwitchCG::JumpTable &JT, MachineBasicBlock *MBB);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp1282 const std::vector<MachineJumpTableEntry> &JT = JtInfo->getJumpTables(); in NaClAlignIndirectJumpTargets() local
1283 for (unsigned I = 0; I < JT.size(); ++I) { in NaClAlignIndirectJumpTargets()
1284 const std::vector<MachineBasicBlock*> &MBBs = JT[I].MBBs; in NaClAlignIndirectJumpTargets()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp1555 JumpTarget JT = LI->second; in buildCFG() local
1557 JT.scopePosition); in buildCFG()
1559 JT.scopePosition); in buildCFG()
1561 B, I->scopePosition, JT.scopePosition); in buildCFG()
1562 appendScopeBegin(JT.block, VD, G); in buildCFG()
1563 addSuccessor(B, JT.block); in buildCFG()
1573 JumpTarget JT = LI->second; in buildCFG() local
1575 if (JT.block == Successor) in buildCFG()
1577 addSuccessor(B, JT.block); in buildCFG()
3302 JumpTarget JT = I->second; in VisitGotoStmt() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h673 void visitJumpTable(SwitchCG::JumpTable &JT);
674 void visitJumpTableHeader(SwitchCG::JumpTable &JT,
H A DInstrEmitter.cpp416 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { in AddOperand() local
417 MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags()); in AddOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1495 const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); in LowerJumpTable() local
1496 return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(), in LowerJumpTable()
1497 JT->getTargetFlags()); in LowerJumpTable()
1504 const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1)); in LowerBR_JT() local
1506 assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags"); in LowerBR_JT()
1513 const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs; in LowerBR_JT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp1211 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); in LowerJumpTable() local
1216 JT->getIndex(), getPointerTy(DAG.getDataLayout()), LanaiII::MO_NO_FLAG); in LowerJumpTable()
1225 JT->getIndex(), getPointerTy(DAG.getDataLayout()), OpFlagHi); in LowerJumpTable()
1227 JT->getIndex(), getPointerTy(DAG.getDataLayout()), OpFlagLo); in LowerJumpTable()
/netbsd-src/external/gpl3/binutils.old/dist/etc/
H A DMakefile.in79 -[JT]) skip_next=yes;; \

12345678910>>...13