00001 /* Copyright 1994 - 1996, LongView Technologies L.L.C. $Revision: 1.1 $ */ 00002 /* Copyright (c) 2006, Sun Microsystems, Inc. 00003 All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the 00006 following conditions are met: 00007 00008 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 00009 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following 00010 disclaimer in the documentation and/or other materials provided with the distribution. 00011 * Neither the name of Sun Microsystems nor the names of its contributors may be used to endorse or promote products derived 00012 from this software without specific prior written permission. 00013 00014 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT 00015 NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 00016 THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00017 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00018 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 00019 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE 00020 00021 00022 */ 00023 00024 #ifdef DELTA_COMPILER 00025 00026 class MacroAssembler; 00027 extern MacroAssembler* theMacroAssm; 00028 00029 00030 class CodeBuffer: public PrintableResourceObj { 00031 private: 00032 char* instsStart; 00033 char* instsEnd; 00034 char* instsOverflow; 00035 00036 relocInfo* locsStart; 00037 relocInfo* locsEnd; 00038 relocInfo* locsOverflow; 00039 int last_reloc_offset; 00040 00041 char* _decode_begin; 00042 00043 char* decode_begin(); 00044 00045 public: 00046 CodeBuffer(char* code_start, int code_size); 00047 CodeBuffer(int instsSize, int locsSize); 00048 00049 char* code_begin() const { return instsStart; }; 00050 char* code_end() const { return instsEnd; } 00051 char* code_limit() const { return instsOverflow; }; 00052 00053 int code_size() const { return instsEnd - instsStart; } 00054 int reloc_size() const { return (locsEnd - locsStart) * sizeof(relocInfo); } 00055 00056 void set_code_end(char* end); 00057 void relocate(char* at, relocInfo::relocType rtype); 00058 00059 void decode(); 00060 void decode_all(); 00061 00062 void copyTo(nmethod* nm); 00063 00064 void print(); 00065 }; 00066 00067 #endif