Searched refs:nth_bit (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp51 state_limit = nth_bit(number_of_state_bits),
52 count_grain = nth_bit(number_of_state_bits + number_of_carry_bits),
70 count_limit = nth_bit(number_of_count_bits - 1)
H A Drewriter.hpp104 _secondary_entry_tag = nth_bit(30)
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp65 CMS_cms_wants_token = nth_bit(0),
66 CMS_cms_has_token = nth_bit(1),
67 CMS_vm_wants_token = nth_bit(2),
68 CMS_vm_has_token = nth_bit(3)
H A DpromotionInfo.hpp38 displaced_mark = nth_bit(2), // i.e. 0x4
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp100 enum { uninit_bit = (int)(nth_bit(31)),
101 ref_bit = nth_bit(30),
102 val_bit = nth_bit(29),
103 addr_bit = nth_bit(28),
108 enum { top_info_bit = nth_bit(27),
109 not_bottom_info_bit = nth_bit(26),
115 enum { ref_not_lock_bit = nth_bit(25), // 0 if this reference is locked as a monitor
116 ref_slot_bit = nth_bit(24), // 1 if this reference is a "slot" reference,
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp926 #define nth_bit(n) (n >= BitsPerWord ? 0 : OneBit << (n)) macro
927 #define right_n_bits(n) (nth_bit(n) - 1)
938 inline void set_nth_bit(intptr_t& x, int n) { set_bits (x, nth_bit(n)); }
939 inline void clear_nth_bit(intptr_t& x, int n) { clear_bits(x, nth_bit(n)); }
940 inline bool is_set_nth_bit(intptr_t x, int n) { return mask_bits (x, nth_bit(n)) != NoBits; }
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp109 _annotations_present |= nth_bit((int)id);
113 bool has_annotation(ID id) { return (nth_bit((int)id) & _annotations_present) != 0; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp1503 _nonnull_state |= nth_bit(i);
1505 _nonnull_state &= ~(nth_bit(i));
/openjdk7/hotspot/src/share/vm/opto/
H A Dgcm.cpp1322 allowed_reasons |= nth_bit(reason);
H A Dcfgnode.cpp271 jint max_post_shift = nth_bit(BitsPerJavaInteger - left_shift - 1);

Completed in 66 milliseconds