src/cpu/x86/vm/c1_FpuStackSim_x86.hpp

changeset 435
a61af66fc99e
child 1907
c18cbe5936b8
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/cpu/x86/vm/c1_FpuStackSim_x86.hpp	Sat Dec 01 00:00:00 2007 +0000
     1.3 @@ -0,0 +1,67 @@
     1.4 +/*
     1.5 + * Copyright 2005 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.23 + * CA 95054 USA or visit www.sun.com if you need additional information or
    1.24 + * have any questions.
    1.25 + *
    1.26 + */
    1.27 +
    1.28 +//  Simulates the FPU stack and maintains mapping [fpu-register -> stack offset]
    1.29 +//  FPU registers are described as numbers from 0..nof_fpu_regs-1
    1.30 +
    1.31 +class Compilation;
    1.32 +
    1.33 +class FpuStackSim VALUE_OBJ_CLASS_SPEC {
    1.34 + private:
    1.35 +  Compilation* _compilation;
    1.36 +  int          _stack_size;
    1.37 +  int          _regs[FrameMap::nof_fpu_regs];
    1.38 +
    1.39 +  int tos_index() const                        { return _stack_size - 1; }
    1.40 +
    1.41 +  int regs_at(int i) const;
    1.42 +  void set_regs_at(int i, int val);
    1.43 +  void dec_stack_size();
    1.44 +  void inc_stack_size();
    1.45 +
    1.46 +  // unified bailout support
    1.47 +  Compilation*  compilation() const              { return _compilation; }
    1.48 +  void          bailout(const char* msg) const   { compilation()->bailout(msg); }
    1.49 +  bool          bailed_out() const               { return compilation()->bailed_out(); }
    1.50 +
    1.51 + public:
    1.52 +  FpuStackSim(Compilation* compilation);
    1.53 +  void pop ();
    1.54 +  void pop (int rnr);                          // rnr must be on tos
    1.55 +  void push(int rnr);
    1.56 +  void swap(int offset);                       // exchange tos with tos + offset
    1.57 +  int offset_from_tos(int rnr) const;          // return the offset of the topmost instance of rnr from TOS
    1.58 +  int  get_slot(int tos_offset) const;         // return the entry at the given offset from TOS
    1.59 +  void set_slot(int tos_offset, int rnr);      // set the entry at the given offset from TOS
    1.60 +  void rename(int old_rnr, int new_rnr);       // rename all instances of old_rnr to new_rnr
    1.61 +  bool contains(int rnr);                      // debugging support only
    1.62 +  bool is_empty();
    1.63 +  bool slot_is_empty(int tos_offset);
    1.64 +  int stack_size() const                       { return _stack_size; }
    1.65 +  void clear();
    1.66 +  intArray* write_state();
    1.67 +  void read_state(intArray* fpu_stack_state);
    1.68 +
    1.69 +  void print() PRODUCT_RETURN;
    1.70 +};

mercurial