view ports/hotspot/src/share/vm/shark/sharkConstantPool.hpp @ 1716:b593d3ef9dce

2009-03-04 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/share/vm/shark/sharkInliner.hpp: New file. * ports/hotspot/src/share/vm/shark/sharkInliner.cpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkBlock.hpp: Moved partly into... * ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.hpp: New file. * ports/hotspot/src/share/vm/shark/sharkBlock.cpp: Likewise into... * ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp: New file. * ports/hotspot/src/share/vm/shark/sharkState.hpp: Merged SharkTrackingState into SharkState, and moved SharkEntryState into sharkFunction.cpp and SharkPHIState into sharkTopLevelBlock.cpp. * ports/hotspot/src/share/vm/shark/sharkState.inline.hpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkState.cpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkConstantPool.hpp: s/SharkBlock/SharkTopLevelBlock/g * ports/hotspot/src/share/vm/shark/sharkMonitor.hpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkMonitor.cpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkFunction.hpp: Likewise. * ports/hotspot/src/share/vm/shark/sharkFunction.cpp: Likewise. * ports/hotspot/src/share/vm/shark/shark_globals.hpp (SharkMaxInlineSize): New parameter. * ports/hotspot/src/share/vm/shark/sharkBuilder.hpp (SharkBuilder::GetBlockInsertionPoint): New method. (SharkBuilder::CreateBlock): Likewise. * ports/hotspot/src/share/vm/includeDB_shark: Updated.
author Gary Benson <gbenson@redhat.com>
date Wed, 04 Mar 2009 10:41:13 -0500
parents 28523a4d7bd6
children 6cb81042d68c
line wrap: on
line source

/*
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
 * Copyright 2008 Red Hat, Inc.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code 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
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 *
 */

class SharkConstantPool : public StackObj {
 public:
  SharkConstantPool(SharkTopLevelBlock* block)
    : _block(block),
      _constants_method(NULL),
      _tags_constants(NULL),
      _cache_constants(NULL) {}

 private:
  SharkTopLevelBlock* _block;

 private:
  SharkTopLevelBlock* block() const
  {
    return _block;
  }
  SharkBuilder* builder() const
  {
    return block()->builder();
  }
  llvm::Value* method() const
  {
    return block()->method();
  }

 private:
  llvm::Value* _constants;        // The constant pool, a constantPoolOop
  llvm::Value* _constants_method; // The method _constants was loaded from

  llvm::Value* _tags;             // The tags array, a typeArrayOop
  llvm::Value* _tags_constants;   // The constantPoolOop _tags is in

  llvm::Value* _cache;            // The cache, a constantPoolCacheOop
  llvm::Value* _cache_constants;  // The constantPoolCacheOop _cache is in

 private:
  llvm::Value* constants();
  llvm::Value* tags();
  llvm::Value* cache();

 public:
  llvm::Value* object_at(int which);
  llvm::Value* tag_at(int which);
  llvm::Value* cache_entry_at(int which);
  llvm::Value* java_mirror();
};