Home
last modified time | relevance | path

Searched refs:bytecodes (Results 1 – 25 of 47) sorted by relevance

12

/external/v8/src/interpreter/
Dbytecode-array-writer.cc46 int bytecode_size = static_cast<int>(bytecodes()->size()); in ToBytecodeArray()
51 bytecode_size, &bytecodes()->front(), frame_size, parameter_count, in ToBytecodeArray()
87 int bytecode_size = static_cast<int>(bytecodes()->size()); in CheckBytecodeMatches()
88 const byte* bytecode_ptr = &bytecodes()->front(); in CheckBytecodeMatches()
157 size_t current_offset = bytecodes()->size(); in BindLabel()
165 size_t current_offset = bytecodes()->size(); in BindLoopHeader()
174 size_t current_offset = bytecodes()->size(); in BindJumpTableEntry()
187 size_t current_offset = bytecodes()->size(); in BindHandlerTarget()
194 size_t current_offset = bytecodes()->size(); in BindTryRegionStart()
206 size_t current_offset = bytecodes()->size(); in BindTryRegionEnd()
[all …]
Dinterpreter.cc249 Handle<BytecodeArray> bytecodes = compilation_info_.bytecode_array(); in DoFinalizeJobImpl() local
250 if (bytecodes.is_null()) { in DoFinalizeJobImpl()
251 bytecodes = generator()->FinalizeBytecode( in DoFinalizeJobImpl()
256 compilation_info()->SetBytecodeArray(bytecodes); in DoFinalizeJobImpl()
263 bytecodes->set_source_position_table(*source_position_table, kReleaseStore); in DoFinalizeJobImpl()
272 bytecodes->Disassemble(os); in DoFinalizeJobImpl()
278 isolate, handle(Script::cast(shared_info->script()), isolate), bytecodes); in DoFinalizeJobImpl()
Dbytecode-array-writer.h110 ZoneVector<uint8_t>* bytecodes() { return &bytecodes_; } in bytecodes() function
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DConcreteMethodImpl.java248 public byte[] bytecodes() { in bytecodes() method in ConcreteMethodImpl
249 byte[] bytecodes = (bytecodesRef == null) ? null : in bytecodes()
251 if (bytecodes == null) { in bytecodes()
253 bytecodes = JDWP.Method.Bytecodes. in bytecodes()
258 bytecodesRef = new SoftReference<byte[]>(bytecodes); in bytecodes()
265 return bytecodes.clone(); in bytecodes()
DNonConcreteMethodImpl.java105 public byte[] bytecodes() { in bytecodes() method in NonConcreteMethodImpl
/external/oj-libjdwp/src/share/back/
DMethodImpl.c175 bytecodes(PacketInputStream *in, PacketOutputStream *out) in bytecodes() function
237 ,(void *)bytecodes
/external/v8/
DAndroid.bp183 "src/builtins/generate-bytecodes-builtins-list.cc",
185 "src/interpreter/bytecodes.cc",
198 "builtins-generated/bytecodes-builtins-list.h"
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DMethod.java415 byte[] bytecodes(); in bytecodes() method
/external/python/cpython2/Doc/library/
Ddis.rst100 Dictionary mapping operation names to bytecodes.
110 Sequence of bytecodes that have a constant parameter.
115 Sequence of bytecodes that access a free variable.
120 Sequence of bytecodes that access an attribute by name.
125 Sequence of bytecodes that have a relative jump target.
130 Sequence of bytecodes that have an absolute jump target.
135 Sequence of bytecodes that access a local variable.
140 Sequence of bytecodes of Boolean operations.
/external/v8/src/builtins/
Dinternal-coverage.tq28 // It's quite possible that a function contains IncBlockCounter bytecodes,
/external/dexmaker/
DREADME.version9 …proxies. If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.
DREADME.md15 If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.
/external/v8/src/
DDEPS41 "+src/interpreter/bytecodes.h",
/external/llvm/docs/HistoricalNotes/
D2001-05-19-ExceptionResponse.txt17 modelled as a subroutine (as java bytecodes do), which is really
D2000-11-18-EarlyDesignIdeasResp.txt28 user chooses to execute Java bytecodes directly (ie, not
78 VM). This is the point that disallows java style bytecodes, where all
114 mentioned above was the example of loading java bytecodes, but we want
D2000-12-06-MeetingSummary.txt40 packaged with the bytecodes themselves. As a conceptual implementation
D2007-OriginalClangReadme.txt146 platform-specific features (e.g. #ifdef PPC) to allow 'portable bytecodes'.
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/
D2001-05-19-ExceptionResponse.txt17 modelled as a subroutine (as java bytecodes do), which is really
D2000-11-18-EarlyDesignIdeasResp.txt28 user chooses to execute Java bytecodes directly (ie, not
78 VM). This is the point that disallows java style bytecodes, where all
114 mentioned above was the example of loading java bytecodes, but we want
D2000-12-06-MeetingSummary.txt40 packaged with the bytecodes themselves. As a conceptual implementation
D2007-OriginalClangReadme.txt146 platform-specific features (e.g. #ifdef PPC) to allow 'portable bytecodes'.
/external/python/cpython3/Doc/library/
Ddis.rst1278 Dictionary mapping operation names to bytecodes.
1288 Sequence of bytecodes that access a constant.
1293 Sequence of bytecodes that access a free variable (note that 'free' in this
1301 Sequence of bytecodes that access an attribute by name.
1306 Sequence of bytecodes that have a relative jump target.
1311 Sequence of bytecodes that have an absolute jump target.
1316 Sequence of bytecodes that access a local variable.
1321 Sequence of bytecodes of Boolean operations.
/external/python/cpython3/Doc/faq/
Dwindows.rst52 compiles it into bytecodes, and then executes the bytecodes to run your
/external/python/cpython2/Doc/faq/
Dwindows.rst53 compiles it into bytecodes, and then executes the bytecodes to run your
/external/v8/src/execution/
Dframes.cc2030 BytecodeArray bytecodes = iframe->GetBytecodeArray(); in Print() local
2032 int source_pos = AbstractCode::cast(bytecodes).SourcePosition(offset); in Print()
2035 reinterpret_cast<void*>(bytecodes.ptr()), offset); in Print()

12