| /external/v8/src/objects/ |
| D | code-inl.h | 28 OBJECT_CONSTRUCTORS_IMPL(BytecodeArray, FixedArrayBase) in OBJECT_CONSTRUCTORS_IMPL() 36 CAST_ACCESSOR(BytecodeArray) in OBJECT_CONSTRUCTORS_IMPL() 118 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray() 119 return BytecodeArray::cast(*this); in GetBytecodeArray() 629 byte BytecodeArray::get(int index) const { in get() 634 void BytecodeArray::set(int index, byte value) { in set() 639 void BytecodeArray::set_frame_size(int32_t frame_size) { in set_frame_size() 645 int32_t BytecodeArray::frame_size() const { in frame_size() 649 int BytecodeArray::register_count() const { in register_count() 653 void BytecodeArray::set_parameter_count(int32_t number_of_parameters) { in set_parameter_count() [all …]
|
| D | debug-objects-inl.h | 45 BytecodeArray DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray() 47 return BytecodeArray::cast(original_bytecode_array()); in OriginalBytecodeArray() 50 BytecodeArray DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray() 53 return BytecodeArray::cast(debug_bytecode_array()); in DebugBytecodeArray()
|
| D | code.h | 24 class BytecodeArray; variable 585 inline BytecodeArray GetBytecodeArray(); 709 class BytecodeArray : public FixedArrayBase { 790 DECL_CAST(BytecodeArray) 801 DECL_PRINTER(BytecodeArray) 802 DECL_VERIFIER(BytecodeArray) 806 void CopyBytecodesTo(BytecodeArray to); 822 STATIC_ASSERT(BytecodeArray::kBytecodeAgeOffset == 832 OBJECT_CONSTRUCTORS(BytecodeArray, FixedArrayBase);
|
| D | shared-function-info.h | 33 class BytecodeArray; variable 158 DECL_ACCESSORS(bytecode_array, BytecodeArray) 318 inline BytecodeArray GetBytecodeArray() const; 319 inline void set_bytecode_array(BytecodeArray bytecode); 324 inline BytecodeArray GetDebugBytecodeArray() const; 325 inline void SetDebugBytecodeArray(BytecodeArray bytecode); 712 MaybeHandle<BytecodeArray> retain_bytecode_;
|
| D | shared-function-info-inl.h | 93 ACCESSORS(InterpreterData, bytecode_array, BytecodeArray, kBytecodeArrayOffset) in TQ_OBJECT_CONSTRUCTORS_IMPL() 432 : MaybeHandle<BytecodeArray>()), in IsCompiledScope() 442 : MaybeHandle<BytecodeArray>()), in IsCompiledScope() 465 BytecodeArray SharedFunctionInfo::GetBytecodeArray() const { in GetBytecodeArray() 473 return BytecodeArray::cast(data); in GetBytecodeArray() 480 BytecodeArray SharedFunctionInfo::GetDebugBytecodeArray() const { in GetDebugBytecodeArray() 485 return BytecodeArray::cast(data); in GetDebugBytecodeArray() 492 void SharedFunctionInfo::SetDebugBytecodeArray(BytecodeArray bytecode) { in SetDebugBytecodeArray() 502 void SharedFunctionInfo::set_bytecode_array(BytecodeArray bytecode) { in set_bytecode_array() 524 BytecodeArray bytecode = BytecodeArray::cast(data); in ShouldFlushBytecode()
|
| D | debug-objects.h | 23 class BytecodeArray; variable 53 inline BytecodeArray OriginalBytecodeArray(); 54 inline BytecodeArray DebugBytecodeArray();
|
| D | debug-objects.tq | 47 original_bytecode_array: Undefined|BytecodeArray; 50 debug_bytecode_array: Undefined|BytecodeArray;
|
| D | code.cc | 814 void BytecodeArray::Disassemble(std::ostream& os) { in Disassemble() 826 BytecodeArray handle_storage = *this; in Disassemble() 827 Handle<BytecodeArray> handle(reinterpret_cast<Address*>(&handle_storage)); in Disassemble() 891 void BytecodeArray::CopyBytecodesTo(BytecodeArray to) { in CopyBytecodesTo() 892 BytecodeArray from = *this; in CopyBytecodesTo() 899 void BytecodeArray::MakeOlder() { in MakeOlder() 914 bool BytecodeArray::IsOld() const { in IsOld()
|
| /external/v8/src/compiler/ |
| D | bytecode-analysis.h | 19 class BytecodeArray; variable 101 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone, 156 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 160 Handle<BytecodeArray> const bytecode_array_;
|
| D | bytecode-graph-builder.h | 20 class BytecodeArray; variable
|
| /external/v8/src/codegen/ |
| D | unoptimized-compilation-info.h | 72 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 73 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) { in SetBytecodeArray() 100 Handle<BytecodeArray> bytecode_array_;
|
| D | optimized-compilation-info.h | 112 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 196 Handle<BytecodeArray> bytecode_array; // Explicit to prevent flushing. 200 Handle<BytecodeArray> inlined_bytecode, 213 Handle<BytecodeArray> inlined_bytecode, 263 Handle<BytecodeArray> bytecode_array_;
|
| D | handler-table.h | 17 class BytecodeArray; variable 62 explicit HandlerTable(BytecodeArray bytecode_array);
|
| D | optimized-compilation-info.cc | 128 bytecode_array_ = Handle<BytecodeArray>(*bytecode_array_, isolate); in ReopenHandlesInNewHandleScope() 228 Handle<BytecodeArray> inlined_bytecode, SourcePosition pos) { in AddInlinedFunction() 246 Handle<BytecodeArray> inlined_bytecode, SourcePosition pos) in InlinedFunctionHolder()
|
| /external/v8/src/runtime/ |
| D | runtime-interpreter.cc | 109 CONVERT_ARG_HANDLE_CHECKED(BytecodeArray, bytecode_array, 0); in RUNTIME_FUNCTION() 113 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION() 143 CONVERT_ARG_HANDLE_CHECKED(BytecodeArray, bytecode_array, 0); in RUNTIME_FUNCTION() 147 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION()
|
| /external/v8/src/interpreter/ |
| D | bytecode-array-writer.h | 16 class BytecodeArray; variable 60 Handle<BytecodeArray> ToBytecodeArray(LocalIsolate* isolate, 70 int CheckBytecodeMatches(BytecodeArray bytecode);
|
| D | interpreter.h | 21 class BytecodeArray; variable 56 Handle<BytecodeArray> existing_bytecode,
|
| D | interpreter.cc | 54 Handle<BytecodeArray> bytecode); 191 Handle<BytecodeArray> bytecode) { in CheckAndPrintBytecodeMismatch() 197 Handle<BytecodeArray> new_bytecode = in CheckAndPrintBytecodeMismatch() 249 Handle<BytecodeArray> bytecodes = compilation_info_.bytecode_array(); in DoFinalizeJobImpl() 295 Handle<BytecodeArray> existing_bytecode, AccountingAllocator* allocator) { in NewSourcePositionCollectionJob()
|
| D | bytecode-array-accessor.h | 22 class BytecodeArray; variable 91 BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
|
| D | bytecode-array-writer.cc | 41 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( in ToBytecodeArray() 50 Handle<BytecodeArray> bytecode_array = isolate->factory()->NewBytecodeArray( in ToBytecodeArray() 58 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( 62 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( 85 int BytecodeArrayWriter::CheckBytecodeMatches(BytecodeArray bytecode) { in CheckBytecodeMatches()
|
| D | bytecode-array-iterator.cc | 18 Handle<BytecodeArray> bytecode_array) in BytecodeArrayIterator()
|
| D | bytecode-array-iterator.h | 21 explicit BytecodeArrayIterator(Handle<BytecodeArray> array);
|
| D | bytecode-array-random-iterator.cc | 20 Handle<BytecodeArray> bytecode_array, Zone* zone) in BytecodeArrayRandomIterator()
|
| /external/v8/src/execution/ |
| D | runtime-profiler.h | 15 class BytecodeArray; variable 47 BytecodeArray bytecode_array);
|
| /external/v8/src/heap/ |
| D | objects-visiting.h | 21 V(BytecodeArray) \ 124 int VisitBytecodeArray(Map map, BytecodeArray object) { in VisitBytecodeArray()
|