Mercurial > hg > octave-nkf
view src/pt-stmt.cc @ 13985:43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
* configure.ac: New --enable-atomic-refcount argument.
(octave_allocator): Fix USE_OCTAVE_ALLOCATOR variable assignment.
(OCTAVE_CONFIG_INCLUDED): New macro in config.h.
* oct-refcount.h (OCTREFCOUNT_ATOMIC_INCREMENT,
OCTREFCOUNT_ATOMIC_INCREMENT_POST, OCTREFCOUNT_ATOMIC_DECREMENT,
OCTREFCOUNT_ATOMIC_DECREMENT_POST): New macro, defined for MSVC and GCC
when USE_ATOMIC_REFCOUNT is defined.
(octave_refcount:operator++, octave_refcount::operator--): Use them.
(octave_refcount::operator count_type): Cast returned value to volatile.
(octave_refcount::direct): Remove unsafe member.
* Array.h (Array::make_unique): Delete rep if refcount reaches 0.
* Sparse.h (Sparse::make_unique): Delete rep if refcount reaches 0.
* Array.h (Array:~Array, Array::operator=): Delete rep only when refcount is
excatly 0.
* Array.cc (Array::clear): Likewise.
* Sparse.cc (Sparse::~Sparse, Sparse::operator=): Likewise.
* SparseCmplxQR.h (SparseCmplxQR::~SparseCmplxQR, SparseCmplxQR::operator=):
Likewise.
* SparseQR.h (SparseQR::~SparseQR, SparseQR::operator=): Likewise.
* sparse-base-chol.h (sparse_base_chol::~sparse_base_chol,
sparse_base_chol::operator): Likewise.
* dim-vector.h (oct-refcount.h): New included header.
(dim_vector::make_unique, dim_vector::resize): Use OCTREFCOUNT_ATOMIC_DECREMENT
macro and delete rep when refcount reaches 0.
(dim_vector::dim_vector): Use OCTREFCOUNT_ATOMIC_INCREMENT.
(dim_vector::operator=): Use OCTREFCOUNT_ATOMIC_INCREMENT and
OCTREFCOUNT_ATOMIC_DECREMENT.
(dim_vector::~dim_vector): Use OCTREFCOUNT_ATOMIC_DECREMENT.
* oct-mutex.h (oct-refcount.h): New included header.
(octave_base_mutex::count): Use octave_refcount class.
* gl-render.cc (oct-refcount.h): New included header.
* graphics.h.in (oct-refcount.h): Likewise.
(base_property::count, base_graphics_toolkit::count,
base_graphics_object::count, base_graphics_event::count): Use octave_refcount.
(property::~property, property::operator=): Delete rep only when refcountn is
excatly 0.
* oct-map.h (octave_fields::make_unique): Delete rep when refcount reaches 0.
* oct-stream.h (oct-refcount.h): New included header.
(octave_base_stream::count): Use octave_refcount class.
* ov.h (octave_value::make_unique): Delete rep when refcount reaches 0.
* symtab.h (oct-refcount.h): New included header.
(symbol_record_rep::count, fcn_info_rep::count): Use octave_refcount class.
* DLD-FUNCTIONS/urlwrite.cc (oct-refcount.h): New included header.
(curl_handle_rep::count): Use octave_refcount class.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 15:19:42 +0000 |
parents | 12df7854fa7c |
children | 72c96de7a403 |
line wrap: on
line source
/* Copyright (C) 1996-2011 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <typeinfo> #include "quit.h" #include "defun.h" #include "error.h" #include "gripes.h" #include "ov.h" #include "oct-lvalue.h" #include "input.h" #include "pager.h" #include "pt-bp.h" #include "pt-cmd.h" #include "pt-id.h" #include "pt-idx.h" #include "pt-jump.h" #include "pt-pr-code.h" #include "pt-stmt.h" #include "pt-walk.h" #include "unwind-prot.h" #include "utils.h" #include "variables.h" // A list of commands to be executed. tree_statement::~tree_statement (void) { delete cmd; delete expr; delete comm; } void tree_statement::set_print_flag (bool print_flag) { if (expr) expr->set_print_flag (print_flag); } bool tree_statement::print_result (void) { return expr && expr->print_result (); } void tree_statement::set_breakpoint (void) { if (cmd) cmd->set_breakpoint (); else if (expr) expr->set_breakpoint (); } void tree_statement::delete_breakpoint (void) { if (cmd) cmd->delete_breakpoint (); else if (expr) expr->delete_breakpoint (); } bool tree_statement::is_breakpoint (void) const { return cmd ? cmd->is_breakpoint () : (expr ? expr->is_breakpoint () : false); } int tree_statement::line (void) const { return cmd ? cmd->line () : (expr ? expr->line () : -1); } int tree_statement::column (void) const { return cmd ? cmd->column () : (expr ? expr->column () : -1); } void tree_statement::echo_code (void) { tree_print_code tpc (octave_stdout, VPS4); accept (tpc); } bool tree_statement::is_end_of_fcn_or_script (void) const { bool retval = false; if (cmd) { tree_no_op_command *no_op_cmd = dynamic_cast<tree_no_op_command *> (cmd); if (no_op_cmd) retval = no_op_cmd->is_end_of_fcn_or_script (); } return retval; } tree_statement * tree_statement::dup (symbol_table::scope_id scope, symbol_table::context_id context) const { tree_statement *new_stmt = new tree_statement (); new_stmt->cmd = cmd ? cmd->dup (scope, context) : 0; new_stmt->expr = expr ? expr->dup (scope, context) : 0; new_stmt->comm = comm ? comm->dup () : 0; return new_stmt; } void tree_statement::accept (tree_walker& tw) { tw.visit_statement (*this); } int tree_statement_list::set_breakpoint (int line) { tree_breakpoint tbp (line, tree_breakpoint::set); accept (tbp); return tbp.get_line (); } void tree_statement_list::delete_breakpoint (int line) { if (line < 0) { octave_value_list bp_lst = list_breakpoints (); int len = bp_lst.length (); for (int i = 0; i < len; i++) { tree_breakpoint tbp (i, tree_breakpoint::clear); accept (tbp); } } else { tree_breakpoint tbp (line, tree_breakpoint::clear); accept (tbp); } } octave_value_list tree_statement_list::list_breakpoints (void) { tree_breakpoint tbp (0, tree_breakpoint::list); accept (tbp); return tbp.get_list (); } tree_statement_list * tree_statement_list::dup (symbol_table::scope_id scope, symbol_table::context_id context) const { tree_statement_list *new_list = new tree_statement_list (); new_list->function_body = function_body; for (const_iterator p = begin (); p != end (); p++) { const tree_statement *elt = *p; new_list->append (elt ? elt->dup (scope, context) : 0); } return new_list; } void tree_statement_list::accept (tree_walker& tw) { tw.visit_statement_list (*this); }