Searched refs:has_all_flags (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp402 static bool can_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); }
404 static bool can_rewrite (Code code) { check(code); return has_all_flags(code, _bc_can_rewrite, false); }
406 static bool native_byte_order(Code code) { check(code); return has_all_flags(code, _fmt_has_nbo, false); }
407 static bool uses_cp_cache (Code code) { check(code); return has_all_flags(code, _fmt_has_j, false); }
437 static bool has_all_flags (Code code, int test_flags, bool is_wide) { function in class:Bytecodes
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java377 public static boolean canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); }
379 public static boolean canRewrite (int code) { check(code); return has_all_flags(code, _bc_can_rewrite, false); }
380 public static boolean native_byte_order(int code) { check(code); return has_all_flags(code, _fmt_has_nbo, false); }
381 public static boolean uses_cp_cache (int code) { check(code); return has_all_flags(code, _fmt_has_j, false); }
400 static boolean has_all_flags (int code, int test_flags, boolean is_wide) { method in class:Bytecodes

Completed in 80 milliseconds