OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stack_effect
(Results
1 - 4
of
4
) sorted by null
/external/python/cpython3/Lib/test/
test__opcode.py
10
self.assertEqual(_opcode.
stack_effect
(dis.opmap['POP_TOP']), -1)
11
self.assertEqual(_opcode.
stack_effect
(dis.opmap['DUP_TOP_TWO']), 2)
12
self.assertEqual(_opcode.
stack_effect
(dis.opmap['BUILD_SLICE'], 0), -1)
13
self.assertEqual(_opcode.
stack_effect
(dis.opmap['BUILD_SLICE'], 1), -1)
14
self.assertEqual(_opcode.
stack_effect
(dis.opmap['BUILD_SLICE'], 3), -2)
15
self.assertRaises(ValueError, _opcode.
stack_effect
, 30000)
16
self.assertRaises(ValueError, _opcode.
stack_effect
, dis.opmap['BUILD_SLICE'])
17
self.assertRaises(ValueError, _opcode.
stack_effect
, dis.opmap['POP_TOP'], 0)
/external/python/cpython3/Lib/
opcode.py
14
# (
stack_effect
is not needed)
19
from _opcode import
stack_effect
20
__all__.append('
stack_effect
')
/external/v8/src/wasm/
wasm-interpreter.cc
780
auto
stack_effect
=
local
783
WasmOpcodes::OpcodeName(opcode), stack_height,
stack_effect
.first,
784
stack_effect
.second);
785
DCHECK_GE(stack_height,
stack_effect
.first);
787
stack_effect
.first +
stack_effect
.second);
788
stack_height = stack_height -
stack_effect
.first +
stack_effect
.second;
2138
std::pair<uint32_t, uint32_t>
stack_effect
=
local
[
all
...]
/external/python/cpython3/Python/
compile.c
876
stack_effect
(int opcode, int oparg, int jump)
function
[
all
...]
Completed in 455 milliseconds