Searched refs:stackSize (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodType.java85 public int stackSize() { method in class:MethodType
88 n += argTypes[i].stackSize();
H A DType.java365 public int stackSize() { method in class:Type
383 throw new CompilerError("stackSize " + toString());
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java103 private int stackSize = 0; // Number of pending runs on stack field in class:ComparableTimSort
192 assert ts.stackSize == 1;
352 this.runBase[stackSize] = runBase;
353 this.runLen[stackSize] = runLen;
354 stackSize++;
365 * so the invariants are guaranteed to hold for i < stackSize upon
369 while (stackSize > 1) {
370 int n = stackSize - 2;
388 while (stackSize > 1) {
389 int n = stackSize
[all...]
H A DTimSort.java128 private int stackSize = 0; // Number of pending runs on stack field in class:TimSort
224 assert ts.stackSize == 1;
386 this.runBase[stackSize] = runBase;
387 this.runLen[stackSize] = runLen;
388 stackSize++;
399 * so the invariants are guaranteed to hold for i < stackSize upon
403 while (stackSize > 1) {
404 int n = stackSize - 2;
422 while (stackSize > 1) {
423 int n = stackSize
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java296 int stackSize;
297 if (elementStack == null || (stackSize = elementStack.size()) == 0) {
316 if (stackSize == 1) {
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFieldUpdater.java190 codeDup(asm, field.getType().stackSize(), depth);
205 codeDup(asm, field.getType().stackSize(), depth);
237 codeDup(asm, field.getType().stackSize(), depth);
H A DIncDecExpression.java174 codeDup(env, ctx, asm, type.stackSize(), depth);
178 codeDup(env, ctx, asm, type.stackSize(), depth);
H A DAssignAddExpression.java96 codeDup(env, ctx, asm, Type.tString.stackSize(), depth);
H A DAssignExpression.java130 codeDup(env, ctx, asm, right.type.stackSize(), depth);
H A DAssignOpExpression.java251 codeDup(env, ctx, asm, type.stackSize(), depth);
H A DContext.java151 varNumber += local.getType().stackSize();
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java313 final int stackSize = stackTrace.length;
314 log.debug("getJvmThreadInstStackTrace", "Stack size : " + stackSize);
315 for(int i = 0; i < stackSize; i++) {
320 if(i < stackSize)
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java483 return ((MemberDefinition)value).getType().stackSize() - 1;
486 return -1 - ((MemberDefinition)value).getType().stackSize();
489 return ((MemberDefinition)value).getType().stackSize();
492 return -((MemberDefinition)value).getType().stackSize();
497 return ((MemberDefinition)value).getType().getReturnType().stackSize() -
498 (((MemberDefinition)value).getType().stackSize() + 1);
501 return ((MemberDefinition)value).getType().getReturnType().stackSize() -
502 (((MemberDefinition)value).getType().stackSize());
727 out.writeByte(((MemberDefinition)value).getType().stackSize() + 1);
H A DAssembler.java389 sum += f.getType().stackSize();
858 reg += f.getType().stackSize();
875 reg += f.getType().stackSize();
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java195 private long stackSize; field in class:Thread
349 * @param stackSize the desired stack size for the new thread, or
353 long stackSize) {
406 this.stackSize = stackSize;
589 * {@code stackSize} parameter, if any, is highly platform dependent.</b>
592 * {@code stackSize} parameter may allow a thread to achieve greater
597 * the relationship between the value of the <tt>stackSize</tt> parameter
600 * {@code stackSize} parameter may have no effect whatsoever.</b>
602 * <p>The virtual machine is free to treat the {@code stackSize}
352 init(ThreadGroup g, Runnable target, String name, long stackSize) argument
652 Thread(ThreadGroup group, Runnable target, String name, long stackSize) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java409 * plus <tt>stackSize</tt>.
411 private int stackSize; field in class:MethodWriter
418 * block plus <tt>stackSize</tt>.
674 int size = stackSize + Frame.SIZE[opcode];
678 stackSize = size;
697 int size = stackSize + 1;
701 stackSize = size;
722 // save 'stackSize' here for future use
724 currentBlock.inputStackTop = stackSize;
727 int size = stackSize
[all...]
/openjdk7/jdk/src/share/classes/sun/launcher/
H A DLauncherHelper.java109 * stackSize: in bytes, as set by the launcher, a zero-value indicates
114 long initialHeapSize, long maxHeapSize, long stackSize,
125 stackSize, isServer);
135 stackSize, isServer);
147 long stackSize, boolean isServer) {
150 if (stackSize != 0L) {
152 SizePrefix.scaleValue(stackSize));
113 showSettings(boolean printToStderr, String optionFlag, long initialHeapSize, long maxHeapSize, long stackSize, boolean isServer) argument
145 printVmSettings(PrintStream ostream, long initialHeapSize, long maxHeapSize, long stackSize, boolean isServer) argument
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java65 int stackSize(int currentSize); method in interface:Inject.TrackerInjector
71 public int stackSize(int currentSize) { method in class:Inject.SimpleInjector
90 public int stackSize(int currentSize) { method in class:Inject.ObjectInjector
112 public int stackSize(int currentSize) { method in class:Inject.IndexedInjector
405 defaultInjector.stackSize(maxStack)); // big enough for injected code
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp332 static jlong stackSize(oop java_thread);
H A DjavaClasses.cpp797 // Note: The stackSize field is only present starting in 1.4.
826 // The stackSize field is only present starting in 1.4, so don't go fatal.
911 jlong java_lang_Thread::stackSize(oop java_thread) { function in class:java_lang_Thread
912 // The stackSize field is only present starting in 1.4
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp2734 java_lang_Thread::stackSize(JNIHandles::resolve_non_null(jthread));

Completed in 3805 milliseconds