Add new loop tests
This commit is contained in:
28
ASTree.cpp
28
ASTree.cpp
@@ -897,7 +897,8 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
|
|||||||
case Pyc::INSTRUMENTED_FOR_ITER_A:
|
case Pyc::INSTRUMENTED_FOR_ITER_A:
|
||||||
{
|
{
|
||||||
PycRef<ASTNode> iter = stack.top(); // Iterable
|
PycRef<ASTNode> iter = stack.top(); // Iterable
|
||||||
stack.pop();
|
if (mod->verCompare(3,12) < 0)
|
||||||
|
stack.pop();
|
||||||
/* Pop it? Don't pop it? */
|
/* Pop it? Don't pop it? */
|
||||||
|
|
||||||
int end;
|
int end;
|
||||||
@@ -1678,11 +1679,34 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
|
|||||||
case Pyc::POP_EXCEPT:
|
case Pyc::POP_EXCEPT:
|
||||||
/* Do nothing. */
|
/* Do nothing. */
|
||||||
break;
|
break;
|
||||||
case Pyc::POP_TOP:
|
|
||||||
case Pyc::END_FOR:
|
case Pyc::END_FOR:
|
||||||
|
{
|
||||||
|
stack.pop();
|
||||||
|
|
||||||
|
if ((opcode == Pyc::END_FOR) && (mod->majorVer() == 3) && (mod->minorVer() == 12)) {
|
||||||
|
// one additional pop for python 3.12
|
||||||
|
stack.pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
// end for loop here
|
||||||
|
if (curblock->blktype() == ASTBlock::BLK_FOR) {
|
||||||
|
PycRef<ASTBlock> prev = blocks.top();
|
||||||
|
blocks.pop();
|
||||||
|
|
||||||
|
curblock = blocks.top();
|
||||||
|
curblock->append(prev.cast<ASTNode>());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fprintf(stderr, "Wrong block type %i for END_FOR\n", curblock->blktype());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Pyc::POP_TOP:
|
||||||
{
|
{
|
||||||
PycRef<ASTNode> value = stack.top();
|
PycRef<ASTNode> value = stack.top();
|
||||||
stack.pop();
|
stack.pop();
|
||||||
|
|
||||||
if (!curblock->inited()) {
|
if (!curblock->inited()) {
|
||||||
if (curblock->blktype() == ASTBlock::BLK_WITH) {
|
if (curblock->blktype() == ASTBlock::BLK_WITH) {
|
||||||
curblock.cast<ASTWithBlock>()->setExpr(value);
|
curblock.cast<ASTWithBlock>()->setExpr(value);
|
||||||
|
|||||||
11
FastStack.h
11
FastStack.h
@@ -30,14 +30,23 @@ public:
|
|||||||
{
|
{
|
||||||
if (m_ptr > -1)
|
if (m_ptr > -1)
|
||||||
m_stack[m_ptr--] = nullptr;
|
m_stack[m_ptr--] = nullptr;
|
||||||
|
else {
|
||||||
|
#ifdef BLOCK_DEBUG
|
||||||
|
fprintf(stderr, "pop from empty stack\n");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PycRef<ASTNode> top() const
|
PycRef<ASTNode> top() const
|
||||||
{
|
{
|
||||||
if (m_ptr > -1)
|
if (m_ptr > -1)
|
||||||
return m_stack[m_ptr];
|
return m_stack[m_ptr];
|
||||||
else
|
else {
|
||||||
|
#ifdef BLOCK_DEBUG
|
||||||
|
fprintf(stderr, "top on empty stack\n");
|
||||||
|
#endif
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const
|
bool empty() const
|
||||||
|
|||||||
BIN
tests/compiled/test_loops3.3.12.pyc
Normal file
BIN
tests/compiled/test_loops3.3.12.pyc
Normal file
Binary file not shown.
34
tests/input/test_loops3.py
Normal file
34
tests/input/test_loops3.py
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
def loop1():
|
||||||
|
iterable = [1, 2, 3]
|
||||||
|
for item in iterable:
|
||||||
|
pass
|
||||||
|
|
||||||
|
loop1()
|
||||||
|
|
||||||
|
def loop2():
|
||||||
|
for i in range(2):
|
||||||
|
print(i)
|
||||||
|
|
||||||
|
loop2()
|
||||||
|
|
||||||
|
def loop3():
|
||||||
|
def loop():
|
||||||
|
x = (1,2,3)
|
||||||
|
l = []
|
||||||
|
for i in x:
|
||||||
|
l.append(i)
|
||||||
|
return l
|
||||||
|
|
||||||
|
return loop()
|
||||||
|
|
||||||
|
loop3()
|
||||||
|
|
||||||
|
def loop4():
|
||||||
|
for i in range(3):
|
||||||
|
for j in range(2):
|
||||||
|
print(i*j)
|
||||||
|
|
||||||
|
loop4()
|
||||||
|
|
||||||
|
for j in [1,2,3][::-1]:
|
||||||
|
print("hi", j)
|
||||||
46
tests/tokenized/test_loops3.txt
Normal file
46
tests/tokenized/test_loops3.txt
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
def loop1 ( ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
iterable = [ 1 , 2 , 3 ] <EOL>
|
||||||
|
for item in iterable : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
pass <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
<OUTDENT>
|
||||||
|
loop1 ( ) <EOL>
|
||||||
|
def loop2 ( ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
for i in range ( 2 ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
print ( i ) <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
<OUTDENT>
|
||||||
|
loop2 ( ) <EOL>
|
||||||
|
def loop3 ( ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
def loop ( ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
x = ( 1 , 2 , 3 ) <EOL>
|
||||||
|
l = [ ] <EOL>
|
||||||
|
for i in x : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
l . append ( i ) <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
return l <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
return loop ( ) <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
loop3 ( ) <EOL>
|
||||||
|
def loop4 ( ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
for i in range ( 3 ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
for j in range ( 2 ) : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
print ( i * j ) <EOL>
|
||||||
|
<OUTDENT>
|
||||||
|
<OUTDENT>
|
||||||
|
<OUTDENT>
|
||||||
|
loop4 ( ) <EOL>
|
||||||
|
for j in [ 1 , 2 , 3 ] [ : : - 1 ] : <EOL>
|
||||||
|
<INDENT>
|
||||||
|
print ( 'hi' , j ) <EOL>
|
||||||
Reference in New Issue
Block a user