1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <rtl/alloc.h>
21 #include <idlc/aststack.hxx>
22 #include <idlc/astscope.hxx>
24 #define STACKSIZE_INCREMENT 64
27 : m_stack((AstScope
**)rtl_allocateZeroMemory(sizeof(AstScope
*) * STACKSIZE_INCREMENT
))
28 , m_size(STACKSIZE_INCREMENT
)
35 for(sal_uInt32 i
=0; i
< m_top
; i
++)
41 rtl_freeMemory(m_stack
);
44 sal_uInt32
AstStack::depth()
49 AstScope
* AstStack::top()
53 return m_stack
[m_top
- 1];
56 AstScope
* AstStack::bottom()
63 AstScope
* AstStack::nextToTop()
65 AstScope
*tmp
, *retval
;
70 tmp
= top(); // Save top
71 (void) pop(); // Pop it
72 retval
= top(); // Get next one down
73 (void) push(tmp
); // Push top back
74 return retval
; // Return next one down
77 AstScope
* AstStack::topNonNull()
79 for (sal_uInt32 i
= m_top
; i
> 0; i
--)
82 return m_stack
[i
- 1];
87 AstStack
* AstStack::push(AstScope
* pScope
)
90 // AstDeclaration *pDecl = ScopeAsDecl(pScope);
94 // Make sure there's space for one more
98 newSize
+= STACKSIZE_INCREMENT
;
99 tmp
= (AstScope
**)rtl_allocateZeroMemory(sizeof(AstScope
*) * newSize
);
101 for(i
=0; i
< m_size
; i
++)
104 rtl_freeMemory(m_stack
);
109 m_stack
[m_top
++] = pScope
;
121 void AstStack::clear()
126 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */