Lines Matching defs:check_flag

349   bool check_flag(InstructionFlag id) const      { return (_flags & (1 << id)) != 0;    }
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(IsStrictfpFlag); }
1107 virtual bool can_trap() const { return check_flag(CanTrapFlag); /* null-check elimination sets to false */ }
1192 bool target_is_final() const { return check_flag(TargetIsFinalFlag); }
1193 bool target_is_loaded() const { return check_flag(TargetIsLoadedFlag); }
1195 bool target_is_strictfp() const { return check_flag(TargetIsStrictfpFlag); }
1345 bool direct_compare() const { return check_flag(DirectCompareFlag); }
1358 bool should_profile() const { return check_flag(ProfileMDOFlag); }
1374 return check_flag(ThrowIncompatibleClassChangeErrorFlag);
1491 bool preserves_state() const { return check_flag(PreservesStateFlag); }
1511 virtual bool can_trap() const { return check_flag(CanTrapFlag); }
1756 bool is_safepoint() const { return check_flag(IsSafepointFlag); }
1803 bool should_profile() const { return check_flag(ProfileMDOFlag); }
1848 bool unordered_is_true() const { return check_flag(UnorderedIsTrueFlag); }
1854 bool should_profile() const { return check_flag(ProfileMDOFlag); }
1870 set_flag(UnorderedIsTrueFlag, !check_flag(UnorderedIsTrueFlag));