reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/ModuleSlotTracker.h
   74   int getLocalSlot(const Value *V);

References

lib/CodeGen/MIRParser/MIParser.cpp
 2967     int Slot = MST.getLocalSlot(&BB);
 2999   int Slot = MST.getLocalSlot(V);
lib/CodeGen/MIRPrinter.cpp
  615       int Slot = MST.getLocalSlot(BB);
lib/CodeGen/MachineBasicBlock.cpp
  311       int Slot = MST.getLocalSlot(BB);
lib/CodeGen/MachineOperand.cpp
  448       Slot = MST.getLocalSlot(&BB);
  452       Slot = CustomMST.getLocalSlot(&BB);
  479   int Slot = MST.getCurrentFunction() ? MST.getLocalSlot(&V) : -1;
unittests/IR/ValueTest.cpp
  219   EXPECT_EQ(MST.getLocalSlot(I0), 0);
  220   EXPECT_EQ(MST.getLocalSlot(I1), 1);
  221   EXPECT_EQ(MST.getLocalSlot(&EntryBB), -1);
  222   EXPECT_EQ(MST.getLocalSlot(BB2), 2);
  246   EXPECT_DEATH(MST.getLocalSlot(BB2), "No function incorporated");