Home | History | Annotate | Download | only in MIRParser

Lines Matching defs:Int

82   StringMap<int> Names2TargetIndices;
113 bool parseStandaloneStackObject(int &FI);
141 bool parseStackFrameIndex(int &FI);
143 bool parseFixedStackFrameIndex(int &FI);
153 bool parseCFIOffset(int &Offset);
236 bool getTargetIndex(StringRef Name, int &Index);
715 bool MIParser::parseStandaloneStackObject(int &FI) {
999 const APSInt &Int = Token.integerValue();
1000 if (Int.getMinSignedBits() > 64)
1002 Dest = MachineOperand::CreateImm(Int.getExtValue());
1118 bool MIParser::parseStackFrameIndex(int &FI) {
1140 int FI;
1147 bool MIParser::parseFixedStackFrameIndex(int &FI) {
1162 int FI;
1280 bool MIParser::parseCFIOffset(int &Offset) {
1285 Offset = (int)Token.integerValue().getExtValue();
1298 int DwarfReg = TRI->getDwarfRegNum(LLVMReg, true);
1310 int Offset;
1419 int Index = 0;
1694 int FI;
1702 int FI;
1934 int Slot = MST.getLocalSlot(&BB);
1966 int Slot = MST.getLocalSlot(V);
2005 bool MIParser::getTargetIndex(StringRef Name, int &Index) {
2084 int &FI, StringRef Src,