src/share/vm/opto/regmask.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/regmask.hpp

src/share/vm/opto/regmask.hpp

Print this page

        

*** 24,34 **** #ifndef SHARE_VM_OPTO_REGMASK_HPP #define SHARE_VM_OPTO_REGMASK_HPP #include "code/vmreg.hpp" - #include "libadt/port.hpp" #include "opto/optoreg.hpp" #ifdef TARGET_ARCH_MODEL_x86_32 # include "adfiles/adGlobals_x86_32.hpp" #endif #ifdef TARGET_ARCH_MODEL_x86_64 --- 24,33 ----
*** 66,78 **** // // numregs in chaitin ==> proper degree in chaitin //-------------Non-zero bit search methods used by RegMask--------------------- // Find lowest 1, or return 32 if empty ! int find_lowest_bit( uint32 mask ); // Find highest 1, or return 32 if empty ! int find_hihghest_bit( uint32 mask ); //------------------------------RegMask---------------------------------------- // The ADL file describes how to print the machine-specific registers, as well // as any notion of register classes. We provide a register mask, which is // just a collection of Register numbers. --- 65,77 ---- // // numregs in chaitin ==> proper degree in chaitin //-------------Non-zero bit search methods used by RegMask--------------------- // Find lowest 1, or return 32 if empty ! int find_lowest_bit( uint32_t mask ); // Find highest 1, or return 32 if empty ! int find_hihghest_bit( uint32_t mask ); //------------------------------RegMask---------------------------------------- // The ADL file describes how to print the machine-specific registers, as well // as any notion of register classes. We provide a register mask, which is // just a collection of Register numbers.
src/share/vm/opto/regmask.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File