| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- // M(TagName)
- // ClassName == TagName##Inst
- // MTemplate(TagName, TemplateDeclaration, GenericClassName, SpecializedClassName)
- M(Fail)
- M(Succ)
- M(Jump)
- M(JumpIfNotChar)
- M(MatchCharOrJump)
- M(JumpIfNotSet)
- M(MatchSetOrJump)
- M(Switch10)
- M(Switch20)
- M(SwitchAndConsume10)
- M(SwitchAndConsume20)
- M(BOITest)
- M(EOITest)
- M(BOLTest)
- M(EOLTest)
- M(WordBoundaryTest)
- M(MatchChar)
- M(MatchChar2)
- M(MatchChar3)
- M(MatchChar4)
- MTemplate(MatchSet, template<bool IsNegation>, MatchSetInst, MatchSetInst<false>)
- MTemplate(MatchNegatedSet, template<bool IsNegation>, MatchSetInst, MatchSetInst<true>)
- M(MatchLiteral)
- M(MatchLiteralEquiv)
- M(MatchTrie)
- M(OptMatchChar)
- M(OptMatchSet)
- M(SyncToCharAndContinue)
- M(SyncToChar2SetAndContinue)
- MTemplate(SyncToSetAndContinue, template<bool IsNegation>, SyncToSetAndContinueInst, SyncToSetAndContinueInst<false>)
- MTemplate(SyncToNegatedSetAndContinue, template<bool IsNegation>, SyncToSetAndContinueInst, SyncToSetAndContinueInst<true>)
- M(SyncToChar2LiteralAndContinue)
- M(SyncToLiteralAndContinue)
- M(SyncToLinearLiteralAndContinue)
- M(SyncToLiteralEquivAndContinue)
- M(SyncToLiteralEquivTrivialLastPatCharAndContinue)
- M(SyncToCharAndConsume)
- M(SyncToChar2SetAndConsume)
- MTemplate(SyncToSetAndConsume, template<bool IsNegation>, SyncToSetAndConsumeInst, SyncToSetAndConsumeInst<false>)
- MTemplate(SyncToNegatedSetAndConsume, template<bool IsNegation>, SyncToSetAndConsumeInst, SyncToSetAndConsumeInst<true>)
- M(SyncToChar2LiteralAndConsume)
- M(SyncToLiteralAndConsume)
- M(SyncToLinearLiteralAndConsume)
- M(SyncToLiteralEquivAndConsume)
- M(SyncToLiteralEquivTrivialLastPatCharAndConsume)
- M(SyncToCharAndBackup)
- MTemplate(SyncToSetAndBackup, template<bool IsNegation>, SyncToSetAndBackupInst, SyncToSetAndBackupInst<false>)
- MTemplate(SyncToNegatedSetAndBackup, template<bool IsNegation>, SyncToSetAndBackupInst, SyncToSetAndBackupInst<true>)
- M(SyncToChar2LiteralAndBackup)
- M(SyncToLiteralAndBackup)
- M(SyncToLinearLiteralAndBackup)
- M(SyncToLiteralEquivAndBackup)
- M(SyncToLiteralEquivTrivialLastPatCharAndBackup)
- M(SyncToLiteralsAndBackup)
- M(MatchGroup)
- M(BeginDefineGroup)
- M(EndDefineGroup)
- M(DefineGroupFixed)
- M(BeginLoop)
- M(RepeatLoop)
- M(BeginLoopIfChar)
- M(BeginLoopIfSet)
- M(RepeatLoopIfChar)
- M(RepeatLoopIfSet)
- M(BeginLoopFixed)
- M(RepeatLoopFixed)
- M(LoopSet)
- M(LoopSetWithFollowFirst)
- M(BeginLoopFixedGroupLastIteration)
- M(RepeatLoopFixedGroupLastIteration)
- M(BeginGreedyLoopNoBacktrack)
- M(RepeatGreedyLoopNoBacktrack)
- MTemplate(ChompCharStar, template<ChompMode Mode>, ChompCharInst, ChompCharInst<ChompMode::Star>)
- MTemplate(ChompCharPlus, template<ChompMode Mode>, ChompCharInst, ChompCharInst<ChompMode::Plus>)
- MTemplate(ChompSetStar, template<ChompMode Mode>, ChompSetInst, ChompSetInst<ChompMode::Star>)
- MTemplate(ChompSetPlus, template<ChompMode Mode>, ChompSetInst, ChompSetInst<ChompMode::Plus>)
- MTemplate(ChompCharGroupStar, template<ChompMode Mode>, ChompCharGroupInst, ChompCharGroupInst<ChompMode::Star>)
- MTemplate(ChompCharGroupPlus, template<ChompMode Mode>, ChompCharGroupInst, ChompCharGroupInst<ChompMode::Plus>)
- MTemplate(ChompSetGroupStar, template<ChompMode Mode>, ChompSetGroupInst, ChompSetGroupInst<ChompMode::Star>)
- MTemplate(ChompSetGroupPlus, template<ChompMode Mode>, ChompSetGroupInst, ChompSetGroupInst<ChompMode::Plus>)
- M(ChompCharBounded)
- M(ChompSetBounded)
- M(ChompSetBoundedGroupLastChar)
- M(Try)
- M(TryIfChar)
- M(TryMatchChar)
- M(TryIfSet)
- M(TryMatchSet)
- M(BeginAssertion)
- M(EndAssertion)
|