Searched refs:stackDepth (Results 1 – 7 of 7) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 76 int stackDepth = -stack[index]; in visitBytecode() local 81 stack[index] = stackDepth; in visitBytecode() 83 stackDepth = visitInst(op, ci, index, stackDepth); in visitBytecode() 84 if (stackDepth < 1) in visitBytecode() 87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) in visitBytecode() 94 --stackDepth; in visitBytecode() 99 int codeLength, int[] stack, int stackDepth, int[] jsrDepth) in processBranch() argument 105 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 112 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 116 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() [all …]
|
D | Bytecode.java | 123 private int stackDepth; field in Bytecode 143 stackDepth = 0; in Bytecode() 424 setStackDepth(stackDepth + diff); in growStack() 430 public int getStackDepth() { return stackDepth; } in getStackDepth() 440 stackDepth = depth; in setStackDepth() 441 if (stackDepth > maxStack) in setStackDepth() 442 maxStack = stackDepth; in setStackDepth()
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | SyntaxChecker.h | 232 void appendUnaryToken(int& stackDepth, int tok, int) { stackDepth = 1; m_topUnaryToken = tok; } in appendUnaryToken() argument 235 void unaryTokenStackRemoveLast(int& stackDepth) { stackDepth = 0; } in unaryTokenStackRemoveLast() argument
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | SerializedScriptValue.cpp | 1056 if (stackDepth() != 1) in deserialize() 1063 if (length > stackDepth()) in createArray() 1068 const int depth = stackDepth() - length; in createArray() 1096 if (length > stackDepth()) in initializeObject() 1098 for (unsigned i = stackDepth() - length; i < stackDepth(); i += 2) { in initializeObject() 1126 unsigned stackDepth() const { return m_stack.size(); } in stackDepth() function in WebCore::__anoncc1e08680111::Deserializer
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 1133 …or::findScopedProperty(const Identifier& property, int& index, size_t& stackDepth, bool forWriting… in findScopedProperty() argument 1137 stackDepth = 0; in findScopedProperty() 1162 stackDepth = 0; in findScopedProperty() 1168 stackDepth = depth + m_codeBlock->needsFullScopeChain(); in findScopedProperty() 1180 stackDepth = depth + m_codeBlock->needsFullScopeChain(); in findScopedProperty()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-05-24 | 26321 (WebCore::Deserializer::stackDepth): 26946 (WebCore::Deserializer::stackDepth):
|
D | ChangeLog-2010-01-29 | 6395 (WebCore::Deserializer::stackDepth): 10165 (WebCore::Deserializer::stackDepth):
|