search for: poploc

Displaying 4 results from an estimated 4 matches for "poploc".

Did you mean: poplog
2004 May 19
2
indexing question
Hi, I have a problem and a rather poor solution that I would like to improve. There a 2 datasets with different number of cases like this: Dataset 'poploc? Dataset 'siruta? Case no. SIRUTA TYPE Case no. SIRUTA TYPE 1 1017 0 1 1017 3 2 1026 0 2 1020 5 3 427...
2012 Sep 07
5
[LLVMdev] teaching FileCheck to handle variations in order
...quot;); + break; } // If this is a fixed string pattern, just match it now. @@ -447,6 +468,9 @@ struct CheckString { /// IsCheckNext - This is true if this is a CHECK-NEXT: directive (as opposed /// to a CHECK: directive. bool IsCheckNext; + int PushPos; + int PopPos; + SMLoc PopLoc; /// NotStrings - These are all of the strings that are disallowed from /// occurring between this match string and the previous one (or start of @@ -454,7 +478,7 @@ struct CheckString { std::vector<std::pair<SMLoc, Pattern> > NotStrings; CheckString(const Pattern &P...
2012 Sep 07
0
[LLVMdev] teaching FileCheck to handle variations in order
On 9/7/2012 7:20 AM, Matthew Curtis wrote: > > The attached patch implements one possible solution. It introduces a > position stack and a couple of directives: > > * 'CHECK-PUSH:' pushes the current match position onto the stack. > * 'CHECK-POP:' pops the top value off of the stack and uses it to set > the current match position. > > The above
2012 Sep 07
1
[LLVMdev] teaching FileCheck to handle variations in order
...quot;); + break; } // If this is a fixed string pattern, just match it now. @@ -447,6 +468,9 @@ struct CheckString { /// IsCheckNext - This is true if this is a CHECK-NEXT: directive (as opposed /// to a CHECK: directive. bool IsCheckNext; + int PushPos; + int PopPos; + SMLoc PopLoc; /// NotStrings - These are all of the strings that are disallowed from /// occurring between this match string and the previous one (or start of @@ -454,7 +478,7 @@ struct CheckString { std::vector<std::pair<SMLoc, Pattern> > NotStrings; CheckString(const Pattern &P...