Home
last modified time | relevance | path

Searched refs:JumpTableEntryInfo (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h326 return JumpTableEntryInfo[Idx].first; in getJumpTableEntrySize()
329 return JumpTableEntryInfo[Idx].second; in getJumpTableEntryPCRelSymbol()
332 if ((unsigned)Idx >= JumpTableEntryInfo.size()) in setJumpTableEntryInfo()
333 JumpTableEntryInfo.resize(Idx+1); in setJumpTableEntryInfo()
334 JumpTableEntryInfo[Idx] = std::make_pair(Size, PCRelSym); in setJumpTableEntryInfo()
416 SmallVector<std::pair<unsigned, MCSymbol *>, 2> JumpTableEntryInfo; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1965 auto JumpTableEntryInfo = PFS.JumpTableSlots.find(ID); in parseJumpTableIndexOperand() local
1966 if (JumpTableEntryInfo == PFS.JumpTableSlots.end()) in parseJumpTableIndexOperand()
1969 Dest = MachineOperand::CreateJTI(JumpTableEntryInfo->second); in parseJumpTableIndexOperand()