Lines Matching defs:Slot
1187 /// the function incorporation state that affects get*Slot/Create*Slot. Function
2597 int Slot;
2602 Slot = Machine->getGlobalSlot(GV);
2605 Slot = Machine->getLocalSlot(V);
2610 if (Slot == -1)
2612 Slot = Machine->getLocalSlot(V);
2619 Slot = Machine->getGlobalSlot(GV);
2622 Slot = Machine->getLocalSlot(V);
2627 Slot = -1;
2630 if (Slot != -1)
2631 Out << Prefix << Slot;
2657 int Slot = WriterCtx.Machine->getMetadataSlot(N);
2658 if (Slot == -1) {
2667 Out << '!' << Slot;
2739 void writeMDNode(unsigned Slot, const MDNode *Node);
2764 void printSummaryInfo(unsigned Slot, const ValueInfo &VI);
3492 auto Slot = Machine.getTypeIdSlot(It->second.first);
3493 assert(Slot != -1);
3494 Out << "^" << Slot;
3534 auto Slot = Machine.getTypeIdSlot(It->second.first);
3535 assert(Slot != -1);
3536 Out << "^" << Slot;
3613 void AssemblyWriter::printSummaryInfo(unsigned Slot, const ValueInfo &VI) {
3614 Out << "^" << Slot << " = gv: (";
3671 int Slot = Machine.getMetadataSlot(Op);
3672 if (Slot == -1)
3675 Out << '!' << Slot;
4115 int Slot = Machine.getLocalSlot(Arg);
4116 assert(Slot != -1 && "expect argument in function here");
4117 Out << " %" << Slot;
4130 int Slot = Machine.getLocalSlot(BB);
4131 if (Slot != -1)
4132 Out << Slot << ":";
4753 void AssemblyWriter::writeMDNode(unsigned Slot, const MDNode *Node) {
4754 Out << '!' << Slot << " = ";