mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-06 07:11:42 +00:00
MS asm: Attempt to parse variables followed by a bracketed displacement
This is required to include MSVC's <atomic> header, which we do now in LLVM. Tests forthcoming in Clang, since that's where we test semantic inline asm changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202865 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86e85c1115
commit
a9a43d01f2
@ -1307,6 +1307,7 @@ X86Operand *X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp, SMLoc Start,
|
|||||||
// Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
|
// Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
|
||||||
if (getLexer().is(AsmToken::LBrac))
|
if (getLexer().is(AsmToken::LBrac))
|
||||||
return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
|
return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
|
||||||
|
assert(ImmDisp == 0);
|
||||||
|
|
||||||
const MCExpr *Val;
|
const MCExpr *Val;
|
||||||
if (!isParsingInlineAsm()) {
|
if (!isParsingInlineAsm()) {
|
||||||
@ -1321,8 +1322,39 @@ X86Operand *X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp, SMLoc Start,
|
|||||||
if (ParseIntelIdentifier(Val, Identifier, Info,
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
||||||
/*Unevaluated=*/false, End))
|
/*Unevaluated=*/false, End))
|
||||||
return 0;
|
return 0;
|
||||||
return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
|
|
||||||
/*Scale=*/1, Start, End, Size, Identifier, Info);
|
if (!getLexer().is(AsmToken::LBrac))
|
||||||
|
return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
|
||||||
|
/*Scale=*/1, Start, End, Size, Identifier, Info);
|
||||||
|
|
||||||
|
Parser.Lex(); // Eat '['
|
||||||
|
|
||||||
|
// Parse Identifier [ ImmDisp ]
|
||||||
|
IntelExprStateMachine SM(/*ImmDisp=*/0, /*StopOnLBrac=*/true,
|
||||||
|
/*AddImmPrefix=*/false);
|
||||||
|
if (ParseIntelExpression(SM, End))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (SM.getSym()) {
|
||||||
|
Error(Start, "cannot use more than one symbol in memory operand");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (SM.getBaseReg()) {
|
||||||
|
Error(Start, "cannot use base register with variable reference");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (SM.getIndexReg()) {
|
||||||
|
Error(Start, "cannot use index register with variable reference");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
const MCExpr *Disp = MCConstantExpr::Create(SM.getImm(), getContext());
|
||||||
|
// BaseReg is non-zero to avoid assertions. In the context of inline asm,
|
||||||
|
// we're pointing to a local variable in memory, so the base register is
|
||||||
|
// really the frame or stack pointer.
|
||||||
|
return X86Operand::CreateMem(/*SegReg=*/0, Disp, /*BaseReg=*/1, /*IndexReg=*/0,
|
||||||
|
/*Scale=*/1, Start, End, Size, Identifier,
|
||||||
|
Info.OpDecl);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse the '.' operator.
|
/// Parse the '.' operator.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user