Searched refs:new_value (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Datomic.cpp104 jlong new_value = old + add_value; local
105 while (old != cmpxchg(new_value, dest, old)) {
107 new_value = old + add_value;
H A Dglobals.cpp479 char* new_value = NULL; local
481 new_value = NEW_C_HEAP_ARRAY(char, strlen(*value)+1, mtInternal);
482 strcpy(new_value, *value);
484 result->set_ccstr(new_value);
501 char* new_value = NEW_C_HEAP_ARRAY(char, strlen(value)+1, mtInternal); local
502 strcpy(new_value, value);
503 faddr->set_ccstr(new_value);
H A Darguments.cpp639 static bool append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) { argument
643 size_t new_len = strlen(new_value);
647 value = new_value;
653 sprintf(buf, "%s\n%s", old_value, new_value);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp745 Value new_value, existing_value; local
764 for_each_local_value(new_state, index, new_value) {
765 if (!liveness.at(index) || new_value->type()->is_illegal()) {
775 for_each_stack_value(new_state, index, new_value) {
782 for_each_local_value(new_state, index, new_value) {
783 bool requires_phi = requires_phi_function.at(index) || (new_value->type()->is_double_word() && requires_phi_function.at(index + 1));
810 Value new_value = new_state->local_at(index); local
811 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
833 Value new_value local
844 Value new_value = new_state->local_at(index); local
[all...]
H A Dc1_LIR.cpp1465 void LIR_List::cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1467 append(new LIR_OpCompareAndSwap(lir_cas_long, addr, cmp_value, new_value, t1, t2, result));
1470 void LIR_List::cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1472 append(new LIR_OpCompareAndSwap(lir_cas_obj, addr, cmp_value, new_value, t1, t2, result));
1475 void LIR_List::cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1477 append(new LIR_OpCompareAndSwap(lir_cas_int, addr, cmp_value, new_value, t1, t2, result));
1796 new_value()->print(out); out->print(" ");
H A Dc1_LIR.hpp1804 LIR_OpCompareAndSwap(LIR_Code code, LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1809 , _new_value(new_value)
1815 LIR_Opr new_value() const { return _new_value; } function in class:LIR_OpCompareAndSwap
2048 void cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
2050 void cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
2052 void cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.cpp186 void SharkState::replace_all(SharkValue* old_value, SharkValue* new_value) { argument
190 set_local(i, new_value);
196 set_stack(i, new_value);
H A DsharkState.hpp159 void replace_all(SharkValue* old_value, SharkValue* new_value);
/openjdk7/jdk/src/share/back/
H A DeventHelper.c326 evinfo->u.field_modification.new_value);
805 if ( evinfo->u.field_modification.new_value.l != NULL ) {
806 pobject = &(evinfo->u.field_modification.new_value.l);
858 if ( evinfo->u.field_modification.new_value.l != NULL ) {
859 tossGlobalRef(env, &(evinfo->u.field_modification.new_value.l));
H A Dutil.h228 jvalue new_value; member in struct:__anon515::__anon516::__anon518
H A DeventHandler.c962 char signature_type, jvalue new_value)
979 info.u.field_modification.new_value = new_value;
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
/openjdk7/hotspot/src/share/vm/services/
H A Djmm.h309 jvalue new_value);
H A Dmanagement.cpp1768 JVM_ENTRY(void, jmm_SetVMGlobal(JNIEnv *env, jstring flag_name, jvalue new_value))
1789 bool bvalue = (new_value.z == JNI_TRUE ? true : false);
1792 intx ivalue = (intx)new_value.j;
1795 uintx uvalue = (uintx)new_value.j;
1798 uint64_t uvalue = (uint64_t)new_value.j;
1801 oop str = JNIHandles::resolve_external_guard(new_value.l);
/openjdk7/jdk/src/share/javavm/export/
H A Djmm.h309 jvalue new_value);
H A Djvmti.h812 jvalue new_value);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2823 Register new_value_lo = op->new_value()->as_register_lo();
2824 Register new_value_hi = op->new_value()->as_register_hi();
2855 Register new_value = op->new_value()->as_register(); local
2859 __ mov(new_value, t2);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp1921 assert(op->new_value()->as_register_lo() == rbx, "wrong register");
1922 assert(op->new_value()->as_register_hi() == rcx, "wrong register");
1932 Register newval = op->new_value()->as_register();
1969 Register newval = op->new_value()->as_register_lo();

Completed in 176 milliseconds