/external/v8/src/interpreter/ |
D | bytecode-array-writer.cc | 46 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 …]
|
D | interpreter.cc | 249 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()
|
D | bytecode-array-writer.h | 110 ZoneVector<uint8_t>* bytecodes() { return &bytecodes_; } in bytecodes() function
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ConcreteMethodImpl.java | 248 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()
|
D | NonConcreteMethodImpl.java | 105 public byte[] bytecodes() { in bytecodes() method in NonConcreteMethodImpl
|
/external/oj-libjdwp/src/share/back/ |
D | MethodImpl.c | 175 bytecodes(PacketInputStream *in, PacketOutputStream *out) in bytecodes() function 237 ,(void *)bytecodes
|
/external/v8/ |
D | Android.bp | 183 "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/ |
D | Method.java | 415 byte[] bytecodes(); in bytecodes() method
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 100 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/ |
D | internal-coverage.tq | 28 // It's quite possible that a function contains IncBlockCounter bytecodes,
|
/external/dexmaker/ |
D | README.version | 9 …proxies. If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.
|
D | README.md | 15 If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.
|
/external/v8/src/ |
D | DEPS | 41 "+src/interpreter/bytecodes.h",
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-05-19-ExceptionResponse.txt | 17 modelled as a subroutine (as java bytecodes do), which is really
|
D | 2000-11-18-EarlyDesignIdeasResp.txt | 28 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
|
D | 2000-12-06-MeetingSummary.txt | 40 packaged with the bytecodes themselves. As a conceptual implementation
|
D | 2007-OriginalClangReadme.txt | 146 platform-specific features (e.g. #ifdef PPC) to allow 'portable bytecodes'.
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2001-05-19-ExceptionResponse.txt | 17 modelled as a subroutine (as java bytecodes do), which is really
|
D | 2000-11-18-EarlyDesignIdeasResp.txt | 28 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
|
D | 2000-12-06-MeetingSummary.txt | 40 packaged with the bytecodes themselves. As a conceptual implementation
|
D | 2007-OriginalClangReadme.txt | 146 platform-specific features (e.g. #ifdef PPC) to allow 'portable bytecodes'.
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 1278 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/ |
D | windows.rst | 52 compiles it into bytecodes, and then executes the bytecodes to run your
|
/external/python/cpython2/Doc/faq/ |
D | windows.rst | 53 compiles it into bytecodes, and then executes the bytecodes to run your
|
/external/v8/src/execution/ |
D | frames.cc | 2030 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()
|