source: doc/papers/general/evaluation/cpp-vstack.cpp@ 84832d87

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since 84832d87 was 860f19f, checked in by Aaron Moss <a3moss@…>, 8 years ago

Clean up code edits

  • Property mode set to 100644
File size: 979 bytes
RevLine 
[604e76d]1#include "cpp-vstack.hpp"
2#include <utility>
3
[81e8ab0]4stack::node::node( const object & v, node * n ) : value( v.new_copy() ), next( n ) {}
[604e76d]5
[81e8ab0]6void stack::clear() {
7 for ( node * next = head; next; ) {
8 node * crnt = next;
9 next = crnt->next;
10 delete crnt;
11 }
12 head = nullptr;
13}
14
[8b001bd]15void stack::copy( const stack & o ) {
16 node ** crnt = &head;
17 for ( node * next = o.head; next; next = next->next ) {
[fb2ce27]18 *crnt = new node{ *next->value }; /***/
[604e76d]19 crnt = &(*crnt)->next;
20 }
21 *crnt = nullptr;
22}
23
[81e8ab0]24stack::stack() : head( nullptr ) {}
25stack::stack( const stack & o ) { copy( o ); }
[604e76d]26stack::~stack() { clear(); }
27
[81e8ab0]28stack & stack::operator=( const stack & o ) {
[604e76d]29 if ( this == &o ) return *this;
30 clear();
[81e8ab0]31 copy( o );
[604e76d]32 return *this;
33}
34
35bool stack::empty() const { return head == nullptr; }
36
[81e8ab0]37void stack::push( const object & value ) { head = new node{ value, head }; /***/ }
[604e76d]38
39ptr<object> stack::pop() {
[81e8ab0]40 node * n = head;
[604e76d]41 head = n->next;
[81e8ab0]42 ptr<object> v = std::move( n->value );
[604e76d]43 delete n;
[81e8ab0]44 return v;
[604e76d]45}
Note: See TracBrowser for help on using the repository browser.