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

/openjdk7/hotspot/src/share/vm/opto/
H A Dparse3.cpp79 void Parse::do_field_access(bool is_get, bool is_field) { argument
104 if (!is_get && field->is_call_site_target()) {
118 int obj_depth = is_get ? 0 : field->type()->size();
128 if (is_get) {
138 if (is_get) {
H A Dparse.hpp506 void do_field_access(bool is_get, bool is_field);
H A DgraphKit.cpp1030 bool is_get = (depth >= 0), is_static = (depth & 1); local
1032 if (is_get) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInliner.cpp134 bool do_field_access(bool is_get, bool is_field);
695 bool SharkInlinerHelper::do_field_access(bool is_get, bool is_field) { argument
696 assert(is_get || is_field, "can't inline putstatic");
713 if (!is_get) {
726 if (is_get) {
H A DsharkBlock.hpp241 void do_field_access(bool is_get, bool is_field);
H A DsharkBlock.cpp1015 void SharkBlock::do_field_access(bool is_get, bool is_field) { argument
1023 if (!is_get)
1033 if (is_get && field->is_constant()) {
1038 if (!is_get || value == NULL) {
1052 if (is_get) {
1081 if (is_get)
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp405 void do_field (int is_get, int is_static, int idx, int bci);
H A DgenerateOopMap.cpp1899 void GenerateOopMap::do_field(int is_get, int is_static, int idx, int bci) { argument
1917 if (is_get) {
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp4121 JNIEXPORT jboolean JNICALL JVM_AccessVMBooleanFlag(const char* name, jboolean* value, jboolean is_get);
4122 JNIEXPORT jboolean JNICALL JVM_AccessVMIntFlag(const char* name, jint* value, jboolean is_get);
4126 JVM_LEAF(jboolean, JVM_AccessVMBooleanFlag(const char* name, jboolean* value, jboolean is_get))
4128 return is_get ? CommandLineFlags::boolAt((char*) name, (bool*) value) : CommandLineFlags::boolAtPut((char*) name, (bool*) value, INTERNAL);
4131 JVM_LEAF(jboolean, JVM_AccessVMIntFlag(const char* name, jint* value, jboolean is_get))
4134 jboolean result = is_get ? CommandLineFlags::intxAt((char*) name, &v) : CommandLineFlags::intxAtPut((char*) name, &v, INTERNAL);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1692 void doField (boolean is_get, boolean is_static, int idx, int bci) { argument
1714 if (is_get) {

Completed in 105 milliseconds