Searched refs:push (Results 201 - 225 of 378) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.hpp210 ensure_stack(1); // ensure room to push the exception
397 void push(Node* n) { map_not_null(); _map->set_stack(_map->_jvms, _sp++ , n); } function in class:GraphKit
402 push(ldval);
403 push(top()); // the halfword is merely a placeholder
406 // longs are stored in locals in "push" order
407 push( local(i+0) ); // the real value
409 push(top()); // halfword placeholder
427 if (n_size == 1) push( n ); // T_INT, ...
H A Dlcm.cpp603 worklist.push(m);
766 delay.push(m);
772 worklist.push(m); // Then on to worklist!
778 worklist.push(d);
861 worklist.push(m);
1045 out->push(n->fast_out(j1));
H A Dblock.hpp80 void push( Block *b ) { map(_cnt++,b); } function in class:Block_List
257 _nodes.push(headnode);
547 void add_member(CFGElement *s) { _members.push(s); }
H A Dmemnode.cpp259 phase->is_IterGVN()->_worklist.push(this);
271 phase->is_IterGVN()->_worklist.push(this);
284 phase->is_IterGVN()->_worklist.push(this);
344 igvn->_worklist.push(old_mem);
410 dom_list.push(dom);
423 dom_list.push(n);
437 dom_list.push(m);
445 dom_list.push(m);
668 closure.push(adr_phi->in(LoopNode::EntryControl));
672 worklist.push(adr_ph
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp413 sim()->push(fpu_num(to));
427 sim()->push(fpu_num(opr));
940 instrs->instructions_list()->push(move);
942 cur_sim->push(reg);
956 instrs->instructions_list()->push(fxch);
970 instrs->instructions_list()->push(fpop);
H A DstubGenerator_x86_32.cpp473 __ push(rdx);
502 __ push(rax);
540 __ push(rax);
593 __ push(rbx);
594 __ push(rcx);
595 __ push(rsi);
596 __ push(rdi);
597 __ push(rbp);
639 __ push(0); // hole for return address-to-be
640 __ pusha(); // push register
[all...]
H A DstubGenerator_x86_64.cpp330 __ push(rax); // pass parameter
743 __ push(rax);
773 __ push(rax);
774 __ push(c_rarg3);
775 __ push(c_rarg2);
776 __ push(c_rarg1);
810 __ push(rax);
811 __ push(c_rarg3);
812 __ push(c_rarg2);
813 __ push(c_rarg
[all...]
H A Dc1_CodeStubs_x86.cpp57 __ push(rax);
317 __ push(tmp);
318 __ push(tmp2);
430 // push parameters
H A DsharedRuntime_x86_64.cpp107 // 16-byte stack alignment fill word: see MacroAssembler::push/pop_IU_state
165 // We push rpb twice in this sequence because we want the real rbp
729 // push the return address and misalign the stack that youngest frame always sees
731 __ push(rax);
1250 __ push(args[i].first()->as_Register());
1557 arg_order.push(i);
1558 arg_order.push(c_arg);
1568 arg_order.push(i);
1569 arg_order.push(c_arg);
1573 arg_order.push(
[all...]
H A Dc1_LIRAssembler_x86.cpp189 void LIR_Assembler::push(LIR_Opr opr) { function in class:LIR_Assembler
532 __ push (rbx); // result
1162 // push and pop the part at src + wordSize, adding wordSize for the previous push
1759 __ push(klass_RInfo);
1761 __ push(k_RInfo);
1777 __ push(klass_RInfo);
1778 __ push(k_RInfo);
1861 __ push(klass_RInfo);
1862 __ push(k_RInf
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java627 void push(Object x) { stack.add(x); } method in class:Indify.Logic.JVMState
643 case opc_dup: push(top()); break;
685 case opc_ldc: jvm.push(pool.get(i.u1At(1))); break;
686 case opc_ldc_w: jvm.push(pool.get(i.u2At(1))); break;
688 case opc_aconst_null: jvm.push(null); break;
689 case opc_bipush: jvm.push((int)(byte) i.u1At(1)); break;
690 case opc_sipush: jvm.push((int)(short)i.u2At(1)); break;
697 jvm.push(arg);
700 jvm.push(jvm.top()); break;
716 jvm.push("StringBuilde
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp785 _work_list->push(block);
903 push(t, append(x));
911 push(type, x);
959 push(as_ValueType(type), append(new LoadIndexed(array, index, length, type, state_before)));
1084 push(type, res);
1089 push(type, append(new NegateOp(pop(type))));
1130 push(type, append(new ShiftOp(code, x, s)));
1137 push(type, append(new LogicOp(code, x, y)));
1150 push(as_ValueType(to), append(new Convert(op, pop(as_ValueType(from)), as_ValueType(to))));
1267 push(addressTyp
[all...]
H A Dc1_Optimizer.cpp211 goto_state->push(result->type(), result);
811 work_list()->push(next);
835 work_list()->push(next);
843 work_list()->push(block);
1151 blocks.push(ir()->start());
1160 blocks.push(excp);
1171 blocks.push(next);
H A Dc1_GraphBuilder.hpp216 void push(ValueType* type, Value t) const { state()-> push(type, t); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueUtility.java354 createdIDs.push(c, id);
390 void push(Object key, Object value) { method in class:ValueUtility.IdentityKeyValueStack
394 pairs.push(new KeyValuePair(key, value));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java1456 push(elem, index);
1532 // push the path
1537 push(elem, (child.isLeaf() ? index : index+1));
1643 // push the path
1647 push(e, index);
1789 * @param record Whether or not the push should be
1794 void push(Element e, int index, boolean isFracture) { method in class:DefaultStyledDocument.ElementBuffer
1796 path.push(ec);
1799 void push(Element e, int index) { method in class:DefaultStyledDocument.ElementBuffer
1800 push(
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java78 void push(int level) { method in class:Canonicalizer11.XmlAttrStack
277 xmlattrStack.push(ns.getLevel());
422 xmlattrStack.push(-1);
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp146 _changes->push(new ChangeWiden(bci, size, inst_buffer));
273 _changes->push(new ChangeJumpWiden(bci, new_delta));
348 _changes->push(new ChangeSwitchPad(bci, oldPad, (bc != Bytecodes::_tableswitch)));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DTDTDReader.java349 modelGroups.push(new ModelGroup());
364 modelGroups.push(new ModelGroup());
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DRealm.java399 iStack.push(null);
408 iStack.push(tempRealm);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSymbolTable.java277 _excludedURIStack.push(_excludedURI);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDocumentInfo.java182 SchemaNamespaceSupportStack.push(fNamespaceSupport);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLSAXHandler.java545 m_elemContext = m_elemContext.push(elementNamespaceURI, elementLocalName, elementName);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNodeVector.java150 public final void push(int value) method in class:NodeVector
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerReadStream.java335 // to push those fragments onto the front of the
342 fragmentQueue.push((ByteBufferWithInfo)iter.next());

Completed in 118 milliseconds

1234567891011>>