summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Dubrov <dubrov.ivan@gmail.com>2014-05-09 08:54:03 -0700
committerIvan Dubrov <dubrov.ivan@gmail.com>2014-05-09 08:54:03 -0700
commit3eeb51a119e27fee97a29dbfc46b1d2aca0c173b (patch)
tree1b486e02aa60467722566c72fe78c2e0bcd4ce05
parentf489c524bf1184f011473e3693d4d300369c6f20 (diff)
parent338c9be8e26e7786a1145c6e6f533d70a3e16906 (diff)
downloaddcevm-3eeb51a119e27fee97a29dbfc46b1d2aca0c173b.tar.gz
dcevm-3eeb51a119e27fee97a29dbfc46b1d2aca0c173b.zip
Merge pull request #24 from ebourg/master
Fixed a typo (Transfered -> Transferred)
-rw-r--r--hotspot/.hg/patches/full-jdk7u51-b13.patch12
-rw-r--r--hotspot/.hg/patches/light-jdk8u5-b13.patch2
2 files changed, 7 insertions, 7 deletions
diff --git a/hotspot/.hg/patches/full-jdk7u51-b13.patch b/hotspot/.hg/patches/full-jdk7u51-b13.patch
index e9abeb8d..74a1b94e 100644
--- a/hotspot/.hg/patches/full-jdk7u51-b13.patch
+++ b/hotspot/.hg/patches/full-jdk7u51-b13.patch
@@ -1822,7 +1822,7 @@ diff -r 6c6a2299029a src/share/vm/interpreter/interpreterRuntime.cpp
+
+ int new_bci = m->calculate_forward_bci(next_bci, forward_method);
+ if (TraceRedefineClasses >= 2) {
-+ tty->print_cr("Transfering execution of %s to new method old_bci=%d new_bci=%d", forward_method->name()->as_C_string(), bci, new_bci);
++ tty->print_cr("Transferring execution of %s to new method old_bci=%d new_bci=%d", forward_method->name()->as_C_string(), bci, new_bci);
+ }
+ RegisterMap reg_map(thread);
+ vframe* vf = vframe::new_vframe(&f, &reg_map, thread);
@@ -7374,7 +7374,7 @@ diff -r 6c6a2299029a src/share/vm/prims/jvmtiRedefineClasses.cpp
+ // We must transfer now and cannot delay until next NOP.
+ int new_bci = m->calculate_forward_bci(bci, new_method);
+ interpretedVFrame* iframe = interpretedVFrame::cast(jvf);
-+ RC_TRACE(0x00000002, ("Transfering execution of %s to new method old_bci=%d new_bci=%d",
++ RC_TRACE(0x00000002, ("Transferring execution of %s to new method old_bci=%d new_bci=%d",
+ new_method->name()->as_C_string(),
+ bci,
+ new_bci));
@@ -10212,7 +10212,7 @@ diff -r 6c6a2299029a src/share/vm/prims/jvmtiRedefineClasses.cpp
+ to->set_is_field_modification_watched(from->is_field_modification_watched());
+ to->set_is_field_access_watched(from->is_field_access_watched());
+ if (from->is_field_modification_watched() || from->is_field_access_watched()) {
-+ RC_TRACE(0x00000002, ("Transfered watch for field %s",
++ RC_TRACE(0x00000002, ("Transferred watch for field %s",
+ from->name()->as_C_string()));
+ }
+ update_klass_field_access_flag(to);
@@ -10344,7 +10344,7 @@ diff -r 6c6a2299029a src/share/vm/prims/jvmtiRedefineClasses.cpp
- !methodOopDesc::native_bind_event_is_interesting);
+ !methodOopDesc::native_bind_event_is_interesting);
+
-+ RC_TRACE(0x00008000, ("Transfering native function for method %s", old_method->name()->as_C_string()));
++ RC_TRACE(0x00008000, ("Transferring native function for method %s", old_method->name()->as_C_string()));
}
}
}
@@ -11488,7 +11488,7 @@ diff -r 6c6a2299029a src/share/vm/prims/jvmtiRedefineClasses.hpp
+ // Method used during garbage collection, the VM operation must iterate over all oops.
+ void oops_do(OopClosure* f);
+
-+ // Utility methods for transfering field access flags
++ // Utility methods for transferring field access flags
+
+ static void transfer_special_access_flags(fieldDescriptor *from, fieldDescriptor *to);
+ static void update_klass_field_access_flag(fieldDescriptor *fd);
@@ -11638,7 +11638,7 @@ diff -r 6c6a2299029a src/share/vm/runtime/deoptimization.cpp
+ if (forward_method != NULL && method->is_in_code_section(bci)) {
+ int new_bci = method->calculate_forward_bci(bci, forward_method);
+ if (TraceRedefineClasses >= 2) {
-+ tty->print_cr("Transfering execution of %s to new method old_bci=%d new_bci=%d", forward_method->name()->as_C_string(), bci, new_bci);
++ tty->print_cr("Transferring execution of %s to new method old_bci=%d new_bci=%d", forward_method->name()->as_C_string(), bci, new_bci);
+ }
+ iframe->set_method(forward_method, new_bci);
+ }
diff --git a/hotspot/.hg/patches/light-jdk8u5-b13.patch b/hotspot/.hg/patches/light-jdk8u5-b13.patch
index 96495483..b6e945e4 100644
--- a/hotspot/.hg/patches/light-jdk8u5-b13.patch
+++ b/hotspot/.hg/patches/light-jdk8u5-b13.patch
@@ -3650,7 +3650,7 @@ new file mode 100644
+ // and redefine implementation
+ static bool is_modifiable_class(oop klass_mirror);
+
-+ // Utility methods for transfering field access flags
++ // Utility methods for transferring field access flags
+
+ static void transfer_special_access_flags(JavaFieldStream *from, JavaFieldStream *to);
+ static void transfer_special_access_flags(fieldDescriptor *from, fieldDescriptor *to);