Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h361 return JumpTableEntryInfo[Idx].first; in getJumpTableEntrySize()
364 return JumpTableEntryInfo[Idx].second; in getJumpTableEntryPCRelSymbol()
367 if ((unsigned)Idx >= JumpTableEntryInfo.size()) in setJumpTableEntryInfo()
368 JumpTableEntryInfo.resize(Idx+1); in setJumpTableEntryInfo()
369 JumpTableEntryInfo[Idx] = std::make_pair(Size, PCRelSym); in setJumpTableEntryInfo()
455 SmallVector<std::pair<unsigned, MCSymbol *>, 2> JumpTableEntryInfo; variable
/openbsd/gnu/llvm/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2192 auto JumpTableEntryInfo = PFS.JumpTableSlots.find(ID); in parseJumpTableIndexOperand() local
2193 if (JumpTableEntryInfo == PFS.JumpTableSlots.end()) in parseJumpTableIndexOperand()
2196 Dest = MachineOperand::CreateJTI(JumpTableEntryInfo->second); in parseJumpTableIndexOperand()