Searched refs:stack (Results 101 - 125 of 169) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/security/
H A DProtectionDomain.java70 final AccessControlContext stack,
79 stack.getContext(), context).optimize()
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java362 AccessControlContext stack = AccessController.getContext();
383 }, stack, this.acc);
/openjdk7/hotspot/src/share/vm/opto/
H A Dgcm.cpp124 // Allocate node stack of size C->unique()+8 to avoid frequent realloc
205 // Allocate stack with enough space to avoid frequent realloc
213 // on stack's top.
218 // Get parent node and next input's index from stack's top.
274 // Finished all nodes on stack.
757 Node_Backward_Iterator(Node *root, VectorSet &visited, Node_List &stack, Block_Array &bbs);
769 Node_Backward_Iterator::Node_Backward_Iterator( Node *root, VectorSet &visited, Node_List &stack, Block_Array &bbs ) argument
770 : _visited(visited), _stack(stack), _bbs(bbs) {
771 // The stack should contain exactly the root
772 stack
849 ComputeLatenciesBackwards(VectorSet &visited, Node_List &stack) argument
1118 schedule_late(VectorSet &visited, Node_List &stack) argument
[all...]
H A DgraphKit.hpp130 // Then come JVM stack slots.
193 // Save an exception without blowing stack contents or other JVM state.
208 // Push an exception in the canonical position for handlers (stack(0)).
292 // How many stack inputs does the current BC consume?
293 // And, how does the stack change after the bytecode?
398 Node* pop() { map_not_null(); return _map->stack( _map->_jvms, --_sp ); }
399 Node* peek(int off = 0) { map_not_null(); return _map->stack( _map->_jvms, _sp - off - 1 ); }
444 Node* stack(uint idx) const { map_not_null(); return _map->stack( _map->_jvms, idx); } function in class:GraphKit
607 // callee (with all arguments still on the stack)
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp215 void InstructionPrinter::print_stack(ValueStack* stack) { argument
217 if (stack->stack_is_empty()) {
218 output()->print("empty stack");
220 output()->print("stack [");
221 for (int i = 0; i < stack->stack_size();) {
224 Value value = stack->stack_at_inc(i);
236 if (!stack->no_active_locks()) {
242 for (int i = i = 0; i < stack->locks_size(); i++) {
243 Value t = stack->lock_at(i);
247 // synchronized methods push null on the lock stack
[all...]
H A Dc1_InstructionPrinter.hpp74 void print_stack(ValueStack* stack);
H A Dc1_IR.cpp185 CodeEmitInfo::CodeEmitInfo(ValueStack* stack, XHandlers* exception_handlers) argument
186 : _scope(stack->scope())
189 , _stack(stack)
196 CodeEmitInfo::CodeEmitInfo(CodeEmitInfo* info, ValueStack* stack) argument
201 , _stack(stack == NULL ? info->_stack : stack)
329 // Local instructions and Phis for expression stack values at the
362 // must 'use' the stack only if the method doesn't
363 // terminate, however, in those cases stack is empty
H A Dc1_Optimizer.cpp154 // check if phi function is present at end of successor stack and that
155 // only this phi was pushed on the stack
355 assert(end_state->stack_size() == sux_state->stack_size(), "stack not equal");
361 assert(sux_value == end_state->stack_at(index), "stack not equal");
392 tty->print_cr("%d. merged B%d & B%d (stack size = %d)",
583 void set_state_for (BlockBegin* block, ValueSet* stack) { _block_states[block->block_id()] = stack; } argument
769 ValueStack* stack = block->state(); local
770 IRScope* scope = stack->scope();
773 Local* local0 = stack
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java2426 private final List<String> stack; field in class:ObjectOutputStream.DebugTraceInfoStack
2429 stack = new ArrayList<>();
2436 stack.clear();
2443 stack.remove(stack.size()-1);
2450 stack.add("\t- " + entry);
2458 if (!stack.isEmpty()) {
2459 for(int i = stack.size(); i > 0; i-- ) {
2460 buffer.append(stack.get(i-1) + ((i != 1) ? "\n" : ""));
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java1035 AccessControlContext stack = AccessController.getContext();
1055 }, stack, acc);
1109 final AccessControlContext stack = AccessController.getContext();
1144 }, stack, acc);
1201 AccessControlContext stack = AccessController.getContext();
1220 }, stack, acc);
1238 AccessControlContext stack = AccessController.getContext();
1253 }, stack, acc);
1672 AccessControlContext stack = AccessController.getContext();
1688 }, stack, ac
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DcInterpreter.java48 private static AddressField stackBaseField; // ultimate bottom of stack
49 private static AddressField stackLimitField; // ultimate top of stack
165 public Address stack() { method in class:cInterpreter
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineMulti.sh113 j. to see "abcde" output, users will have to pop the stack, and
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java78 * Frame has exactly the same locals as the previous stack map frame and
79 * number of stack items is zero.
84 * Frame has exactly the same locals as the previous stack map frame and
85 * number of stack items is 1
95 * Frame has exactly the same locals as the previous stack map frame and
96 * number of stack items is 1. Offset is bigger then 63;
108 * Frame has exactly the same locals as the previous stack map frame and
109 * number of stack items is zero. Offset is bigger then 63;
126 * Indicates that the stack map frames must be recomputed from scratch. In
127 * this case the maximum stack siz
570 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp519 // Clear the stack and push the exception onto it
796 Value *result_addr = stack()->CreatePopFrame(type2size[type]);
1266 // Find the receiver in the stack. We do this before
1482 // Pop the object off the stack
1581 // Leave the object on the stack so it's there if we trap
1820 // The dimensions are stack values, so we use their slots for the
1822 // of normal stack order.
1825 Value *dimensions = stack()->slot_addr(
1826 stack()->stack_slots_offset() + max_stack() - xstack_depth(),
1843 // Now we can pop the dimensions off the stack
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java444 // Scan forward from the instruction to find where the stack p
453 //System.out.println(" "+i+" "+jvm.stack+" : "+pops.replace("$", " => "));
490 System.err.println("*** bailout on jvm: "+jvm.stack+" "+i);
625 final List<Object> stack = new ArrayList<>(); field in class:Indify.Logic.JVMState
626 int sp() { return stack.size(); }
627 void push(Object x) { stack.add(x); }
628 void push2(Object x) { stack.add(EMPTY_SLOT); stack.add(x); }
629 void pushAt(int pos, Object x) { stack.add(stack
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java1533 StackImpl stack = (StackImpl)(OAInvocationInfoStack.get()) ;
1534 return (OAInvocationInfo)(stack.peek()) ;
1542 StackImpl stack = (StackImpl)(OAInvocationInfoStack.get()) ;
1543 stack.push( info ) ;
1551 StackImpl stack = (StackImpl)(OAInvocationInfoStack.get()) ;
1552 return (OAInvocationInfo)(stack.pop()) ;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java566 AccessControlContext stack = AccessController.getContext();
574 }, stack, acc);
685 AccessControlContext stack = AccessController.getContext();
694 }, stack, acc);
793 AccessControlContext stack = AccessController.getContext();
840 }, stack, acc);
/openjdk7/hotspot/agent/make/
H A Dsaenv64.bat48 REM For now, only AMD-64, IA-64 stack walking is not working anyway
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp116 throwing_exception, // unwind stack and rethrow
128 intptr_t* _stack; // expression stack
133 intptr_t* _stack_base; // base of expression stack
134 intptr_t* _stack_limit; // limit of expression stack
135 BasicObjectLock* _monitor_base; // base of monitors on the native stack
151 intptr_t* stack,
189 * Generic 32-bit wide stack slot definition.
223 inline intptr_t* stack() { return _stack; } function in class:BytecodeInterpreter
H A DbytecodeInterpreter.cpp244 #define UPDATE_PC_AND_TOS(opsize, stack) \
245 {pc += opsize; MORE_STACK(stack); }
254 #define UPDATE_PC_AND_TOS_AND_CONTINUE(opsize, stack) { \
255 pc += opsize; opcode = *pc; MORE_STACK(stack); \
269 #define UPDATE_PC_AND_TOS_AND_CONTINUE(opsize, stack) { \
270 pc += opsize; opcode = *pc; MORE_STACK(stack); \
283 #define UPDATE_PC_AND_TOS_AND_CONTINUE(opsize, stack) { \
284 pc += opsize; MORE_STACK(stack); \
366 #define CACHE_TOS() topOfStack = (intptr_t *)istate->stack();
467 assert(abs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limi
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java115 /** Specialization of SignatureIterator - in order to set up first stack frame */
271 int _max_locals; // Determines split between vars and stack
272 int _max_stack; // Determines split between stack and monitors
273 CellTypeStateList _state; // State (vars, stack) at entry.
274 int _stack_top; // -1 indicates bottom stack value.
275 int _monitor_top; // -1 indicates bottom monitor stack value.
278 CellTypeStateList stack() { return _state.subList(_max_locals, _state.size()); } method in class:GenerateOopMap.BasicBlock
310 int _max_stack; // Cached value of max. stack depth
311 int _max_monitors; // Cached value of max. monitor stack depth
418 reportMonitorMismatch("monitor stack heigh
525 CellTypeStateList stack () { return _state.subList(_max_locals, _state.size()); } method in class:GenerateOopMap
2313 fillStackmapForOpcodes(BytecodeStream bcs, CellTypeStateList vars, CellTypeStateList stack, int stackTop) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js426 * @param stack flag to tell if allocation site traces are available
431 function readHeapDump(file, stack, refs, debug) {
436 // by default, we assume no stack traces
437 if (!stack) stack = false;
443 var heap = hatPkg.parser.HprofReader.readFile(file, stack, debug);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassWriter.java573 writeVerificationTypeInfo(frame.stack[0], out);
579 writeVerificationTypeInfo(frame.stack[0], out);
605 out.writeShort(frame.stack.length);
606 for (verification_type_info s: frame.stack)
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java651 env.notice("Already at top of stack.");
653 env.notice("Moved up " + delta + " frames to top of stack.");
674 env.notice("Already at bottom of stack.");
676 env.notice("Moved down " + delta + " frames to bottom of stack.");
761 //### Should handle extremely long stack traces sensibly for user.
762 List<StackFrame> stack = null;
764 stack = thread.frames();
770 //### Now, prints all of the stack regardless of current frame.
773 if (stack == null) {
774 env.failure("Thread is not running (no stack)
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp38 // Compute stack layouts for each instruction in method.
53 // For each basic block: store entry state (vars, stack). For instructions
73 // ' ' uninitialized; never occurs on operand stack in Java
90 // a return PC on the stack (a 'p' type in the abstract interpretation).
155 // Specialization of SignatureIterator - in order to set up first stack frame
704 // Merge the variable state for locals and stack from cts into bbts.
720 // Merge the monitor stack state from cts into bbts.
765 // block is reachable the locals and stack must be merged. If the
766 // stack heights don't match then this is a verification error and
788 report_monitor_mismatch("monitor stack heigh
[all...]

Completed in 789 milliseconds

1234567