Displaying 1 result from an estimated 1 matches for "match_missingfeatur".
Did you mean:
match_missingfeature
2013 Jul 17
2
[LLVMdev] Help with subtarget features and context-dependent asm parsers
...2: error: instruction requires: distinct-ops
sllk %r2,%r3,1
^
This is because MatchOperandParserImpl() skips custom parsers if the
subtarget feature isn't enabled, so the instruction is parsed using
the default operand parser instead. Then MatchInstructionImpl() only
returns Match_MissingFeature if an otherwise good match is found,
which in my case requires the custom parser to be used.
ARM seems to rely on the current MatchOperandParserImpl() behaviour,
so I'm not going to suggest changing it unconditionally. But on SystemZ
there aren't any cases where the choice of parse routi...