Searched defs:nj (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp104 NativeJump* nj = nativeJump_at(addr()); local
112 if (nj->jump_destination() == (address) -1) {
115 nj->set_jump_destination(x);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp855 NativeJump* nj; local
878 nj = nativeJump_at( cb.insts_begin() );
879 nj->print();
881 nj = nativeJump_at( nj->next_instruction_address() );
883 nj->set_jump_destination( nj->instruction_address() + offsets[idx] );
884 assert(nj->jump_destination() == (nj->instruction_address() + offsets[idx]), "check unit test");
885 nj
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp649 int nj; // outside the loop for post-loop check local
650 for (nj = ni + 1; nj < n_new_methods; nj++) {
651 methodOop m = (methodOop)k_new_methods->obj_at(nj);
660 k_new_methods->obj_at_put(nj, k_new_method);
667 if (nj >= n_new_methods) {
2999 int nj = 0; local
3003 if (nj >= _new_methods->length()) {
3007 new_method = (methodOop) _new_methods->obj_at(nj);
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp386 Node* nj = b->_nodes[j]; local
388 if (nj->is_Mach()) {
389 MachNode *mach = nj->as_Mach();
420 if (!nj->is_MachBranch()) {
422 nj->dump(3);
428 jmp_size[i] = nj->size(_regalloc);
433 blk_size += nj->size(_regalloc);
435 if (nj->is_MachCall() && !nj->is_MachCallLeaf()) {
439 if (nj
[all...]

Completed in 1120 milliseconds