Home
last modified time | relevance | path

Searched refs:BytecodeArray (Results 1 – 25 of 86) sorted by relevance

1234

/external/v8/src/objects/
Dcode-inl.h28 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 …]
Ddebug-objects-inl.h45 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()
Dcode.h24 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);
Dshared-function-info.h33 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_;
Dshared-function-info-inl.h93 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()
Ddebug-objects.h23 class BytecodeArray; variable
53 inline BytecodeArray OriginalBytecodeArray();
54 inline BytecodeArray DebugBytecodeArray();
Ddebug-objects.tq47 original_bytecode_array: Undefined|BytecodeArray;
50 debug_bytecode_array: Undefined|BytecodeArray;
Dcode.cc814 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/
Dbytecode-analysis.h19 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_;
Dbytecode-graph-builder.h20 class BytecodeArray; variable
/external/v8/src/codegen/
Dunoptimized-compilation-info.h72 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_;
Doptimized-compilation-info.h112 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_;
Dhandler-table.h17 class BytecodeArray; variable
62 explicit HandlerTable(BytecodeArray bytecode_array);
Doptimized-compilation-info.cc128 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/
Druntime-interpreter.cc109 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/
Dbytecode-array-writer.h16 class BytecodeArray; variable
60 Handle<BytecodeArray> ToBytecodeArray(LocalIsolate* isolate,
70 int CheckBytecodeMatches(BytecodeArray bytecode);
Dinterpreter.h21 class BytecodeArray; variable
56 Handle<BytecodeArray> existing_bytecode,
Dinterpreter.cc54 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()
Dbytecode-array-accessor.h22 class BytecodeArray; variable
91 BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
Dbytecode-array-writer.cc41 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()
Dbytecode-array-iterator.cc18 Handle<BytecodeArray> bytecode_array) in BytecodeArrayIterator()
Dbytecode-array-iterator.h21 explicit BytecodeArrayIterator(Handle<BytecodeArray> array);
Dbytecode-array-random-iterator.cc20 Handle<BytecodeArray> bytecode_array, Zone* zone) in BytecodeArrayRandomIterator()
/external/v8/src/execution/
Druntime-profiler.h15 class BytecodeArray; variable
47 BytecodeArray bytecode_array);
/external/v8/src/heap/
Dobjects-visiting.h21 V(BytecodeArray) \
124 int VisitBytecodeArray(Map map, BytecodeArray object) { in VisitBytecodeArray()

1234