Home
last modified time | relevance | path

Searched refs:_stackDepth (Results 1 – 9 of 9) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/Interpreter/
H A DBranchLabel.cs36 private int _stackDepth = UnknownDepth; field in System.Linq.Expressions.Interpreter.BranchLabel
49 …Debug.Assert(_targetIndex != UnknownIndex && _stackDepth != UnknownDepth && _continuationStackDept… in ToRuntimeLabel()
50 return new RuntimeLabel(_targetIndex, _continuationStackDepth, _stackDepth); in ToRuntimeLabel()
57 _stackDepth = instructions.CurrentStackDepth; in Mark()
73 Debug.Assert(((_targetIndex == UnknownIndex) == (_stackDepth == UnknownDepth))); in AddBranch()
H A DInstructionList.cs148 private readonly int _stackDepth; field
157 (_stackDepth == 0 ? "" : " S(" + _stackDepth + ")"); in GetName()
175 _stackDepth = stackDepth; in InstructionView()
/dports/lang/solidity/solidity_0.8.11/libsolidity/codegen/
H A DCompilerUtils.h261 void copyToStackTop(unsigned _stackDepth, unsigned _itemSize);
264 void moveToStackTop(unsigned _stackDepth, unsigned _itemSize = 1);
266 void moveIntoStack(unsigned _stackDepth, unsigned _itemSize = 1);
H A DCompilerUtils.cpp1425 void CompilerUtils::copyToStackTop(unsigned _stackDepth, unsigned _itemSize) in copyToStackTop() argument
1428 _stackDepth <= 16, in copyToStackTop()
1433 m_context << dupInstruction(_stackDepth); in copyToStackTop()
1436 void CompilerUtils::moveToStackTop(unsigned _stackDepth, unsigned _itemSize) in moveToStackTop() argument
1438 moveIntoStack(_itemSize, _stackDepth); in moveToStackTop()
1441 void CompilerUtils::moveIntoStack(unsigned _stackDepth, unsigned _itemSize) in moveIntoStack() argument
1443 if (_stackDepth <= _itemSize) in moveIntoStack()
1444 for (unsigned i = 0; i < _stackDepth; ++i) in moveIntoStack()
1445 rotateStackDown(_stackDepth + _itemSize); in moveIntoStack()
1448 rotateStackUp(_stackDepth + _itemSize); in moveIntoStack()
H A DArrayUtils.h93 void retrieveLength(ArrayType const& _arrayType, unsigned _stackDepth = 0) const;
H A DArrayUtils.cpp1017 void ArrayUtils::retrieveLength(ArrayType const& _arrayType, unsigned _stackDepth) const in retrieveLength()
1023 m_context << dupInstruction(1 + _stackDepth); in retrieveLength()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/libcore/vm/
H A DMachine.h262 unsigned int _stackDepth;
275 …log_abc("StackDepth=%u StackTotalSize=%u ScopeStackDepth=%u ScopeTotalSize=%u",_stackDepth,_stackT… in to_debug_string()
H A DMachine.cpp3138 s._stackDepth = _stack.getDownstop(); in saveState()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/
H A DObjectContainerBase.cs45 private int _stackDepth; field in Db4objects.Db4o.Internal.ObjectContainerBase
545 if (_stackDepth == 0) in AsTopLevelStore()
993 return _stackDepth > 0; in OperationIsProcessing()
998 return _stackDepth == 0; in AllOperationsCompleted()
2297 return _stackDepth < _maxStackDepth; in StackIsSmall()
2415 int i = _stackDepth--; in DecStackDepth()
2440 return _stackDepth++; in IncStackDepth()
2558 if (_stackDepth == 0) in GenerateCallIDOnTopLevel()
2566 return _stackDepth; in StackDepth()
2571 _stackDepth = depth; in StackDepth()