Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:IDVal

1659     const MCExpr *IdVal;
1661 if (parseRelocOperand(IdVal))
1666 Operands.push_back(MipsOperand::CreateImm(IdVal, S, E, *this));
1765 const MCExpr *IdVal;
1784 if (getParser().parseParenExpression(IdVal, EndLoc))
1793 Res = evaluateRelocExpr(IdVal, Str);
1854 const MCExpr *IdVal = nullptr;
1867 if (parseMemOffset(IdVal, isParenExpr))
1876 Operands.push_back(MipsOperand::CreateImm(IdVal, S, E, *this));
1888 MipsOperand::CreateMem(std::move(Base), IdVal, S, E, *this));
1911 if (!IdVal)
1912 IdVal = MCConstantExpr::Create(0, getContext());
1921 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(IdVal)) {
1923 if (IdVal->EvaluateAsAbsolute(Imm))
1924 IdVal = MCConstantExpr::Create(Imm, getContext());
1926 IdVal = MCBinaryExpr::Create(BE->getOpcode(), BE->getRHS(), BE->getLHS(),
1930 Operands.push_back(MipsOperand::CreateMem(std::move(op), IdVal, S, E, *this));
2081 const MCExpr *IdVal;
2083 if (getParser().parseExpression(IdVal))
2087 Operands.push_back(MipsOperand::CreateImm(IdVal, S, E, *this));
2119 const MCExpr *IdVal;
2124 if (getParser().parseExpression(IdVal))
2126 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(IdVal);
2928 StringRef IDVal = DirectiveID.getString();
2930 if (IDVal == ".cpload")
2932 if (IDVal == ".dword") {
2937 if (IDVal == ".ent") {
2943 if (IDVal == ".end") {
2949 if (IDVal == ".frame") {
2955 if (IDVal == ".set") {
2959 if (IDVal == ".fmask") {
2965 if (IDVal == ".mask") {
2971 if (IDVal == ".nan")
2974 if (IDVal == ".gpword") {
2979 if (IDVal == ".gpdword") {
2984 if (IDVal == ".word") {
2989 if (IDVal == ".option")
2992 if (IDVal == ".abicalls") {
3002 if (IDVal == ".cpsetup")
3005 if (IDVal == ".module")