Home
last modified time | relevance | path

Searched refs:_bc_can_trap (Results 1 – 25 of 30) sorted by relevance

12

/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
398 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
H A Dbytecodes.cpp167 if (can_trap) bc_flags |= _bc_can_trap; in def()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
398 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
H A Dbytecodes.cpp167 if (can_trap) bc_flags |= _bc_can_trap; in def()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
398 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
H A Dbytecodes.cpp167 if (can_trap) bc_flags |= _bc_can_trap; in def()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
398 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
398 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
399 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
H A Dbytecodes.cpp167 if (can_trap) bc_flags |= _bc_can_trap; in def()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
399 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
H A Dbytecodes.cpp167 if (can_trap) bc_flags |= _bc_can_trap; in def()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/interpreter/
H A Dbytecodes.hpp312 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
399 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp318 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
406 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp318 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator
406 …an_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in can_trap()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java283 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
379 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
845 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java283 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
379 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
845 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java289 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
385 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
857 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java289 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
385 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
857 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java291 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
387 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
859 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java291 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
387 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
859 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java291 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
387 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
859 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java289 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
385 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
857 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java289 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
385 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
857 if (can_trap) bc_flags |= _bc_can_trap;
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java289 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in Bytecodes
385 …an canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); } in canTrap()
857 if (can_trap) bc_flags |= _bc_can_trap;

12