Searched defs:check_flag (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp349 bool check_flag(InstructionFlag id) const { return (_flags & (1 << id)) != 0; } function in class:Instruction
413 bool needs_null_check() const { return check_flag(NeedsNullCheckFlag); }
414 bool is_linked() const { return check_flag(IsLinkedInBlockFlag); }
731 bool is_static() const { return check_flag(IsStaticFlag); }
733 bool needs_patching() const { return check_flag(NeedsPatchingFlag); }
789 bool needs_write_barrier() const { return check_flag(NeedsWriteBarrierFlag); }
916 bool needs_write_barrier() const { return check_flag(NeedsWriteBarrierFlag); }
917 bool needs_store_check() const { return check_flag(NeedsStoreCheckFlag); }
922 bool should_profile() const { return check_flag(ProfileMDOFlag); }
993 bool is_strictfp() const { return check_flag(IsStrictfpFla
[all...]

Completed in 613 milliseconds