Print this page


Split Close
Expand all
Collapse all
          --- old/src/cpu/zero/vm/frame_zero.cpp
          +++ new/src/cpu/zero/vm/frame_zero.cpp
   1    1  /*
   2    2   * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
   3      - * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
        3 + * Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
   4    4   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5    5   *
   6    6   * This code is free software; you can redistribute it and/or modify it
   7    7   * under the terms of the GNU General Public License version 2 only, as
   8    8   * published by the Free Software Foundation.
   9    9   *
  10   10   * This code is distributed in the hope that it will be useful, but WITHOUT
  11   11   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12   12   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13   13   * version 2 for more details (a copy is included in the LICENSE file that
↓ open down ↓ 396 lines elided ↑ open up ↑
 410  410    }
 411  411  
 412  412    // Expression stack
 413  413    if (addr < stack_base) {
 414  414      snprintf(fieldbuf, buflen, "%s[%d]",
 415  415               frame_index == 0 ? "stack_word" : "local",
 416  416               (int) (stack_base - addr - 1));
 417  417      return;
 418  418    }
 419  419  }
      420 +
      421 +#ifdef ASSERT
      422 +
      423 +void frame::describe_pd(FrameValues& values, int frame_no) {
      424 +
      425 +}
      426 +
      427 +#endif
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX