mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
Allow targets to add custom asm operand matching logic.
For example, ARM has several instructions with a literal '#0' immediate in the syntax that's not represented as an actual operand. The asm matcher is expected a token operand, but the parser will have created an immediate operand. This is currently handled by dedicated per-instruction C++ munging of the ParsedAsmOperand list, but will be better handled by this hook. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2878,6 +2878,15 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
|
||||
OS << "(MatchClassKind)it->Classes[i]);\n";
|
||||
OS << " if (Diag == Match_Success)\n";
|
||||
OS << " continue;\n";
|
||||
OS << " // If the generic handler indicates an invalid operand\n";
|
||||
OS << " // failure, check for a special case.\n";
|
||||
OS << " if (Diag == Match_InvalidOperand) {\n";
|
||||
OS << " Diag = validateTargetOperandClass(Operands[i+1],\n";
|
||||
OS.indent(43);
|
||||
OS << "(MatchClassKind)it->Classes[i]);\n";
|
||||
OS << " if (Diag == Match_Success)\n";
|
||||
OS << " continue;\n";
|
||||
OS << " }\n";
|
||||
OS << " // If this operand is broken for all of the instances of this\n";
|
||||
OS << " // mnemonic, keep track of it so we can report loc info.\n";
|
||||
OS << " // If we already had a match that only failed due to a\n";
|
||||
|
||||
Reference in New Issue
Block a user