Searched defs:bytecode_array (Results 1 - 18 of 18) sorted by relevance

/external/v8/src/compiler/
H A Dbytecode-branch-analysis.cc15 Handle<BytecodeArray> bytecode_array, Zone* zone)
16 : bytecode_array_(bytecode_array),
17 is_backward_target_(bytecode_array->length(), zone),
18 is_forward_target_(bytecode_array->length(), zone),
22 interpreter::BytecodeArrayIterator iterator(bytecode_array());
14 BytecodeBranchAnalysis( Handle<BytecodeArray> bytecode_array, Zone* zone) argument
H A Dbytecode-branch-analysis.h27 BytecodeBranchAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone);
50 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } function in class:v8::internal::compiler::BASE_EMBEDDED
H A Dbytecode-loop-analysis.h22 BytecodeLoopAnalysis(Handle<BytecodeArray> bytecode_array,
43 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } function in class:v8::internal::compiler::BASE_EMBEDDED
H A Dbytecode-loop-analysis.cc16 Handle<BytecodeArray> bytecode_array,
18 : bytecode_array_(bytecode_array),
29 interpreter::BytecodeArrayIterator iterator(bytecode_array());
15 BytecodeLoopAnalysis( Handle<BytecodeArray> bytecode_array, const BytecodeBranchAnalysis* branch_analysis, Zone* zone) argument
H A Dbytecode-graph-builder.h228 const Handle<BytecodeArray>& bytecode_array() const { function in class:v8::internal::compiler::BytecodeGraphBuilder
/external/v8/src/interpreter/
H A Dbytecode-array-iterator.h21 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
30 const Handle<BytecodeArray>& bytecode_array() const { function in class:v8::internal::interpreter::BytecodeArrayIterator
H A Dbytecode-array-iterator.cc16 Handle<BytecodeArray> bytecode_array)
17 : bytecode_array_(bytecode_array),
31 uint8_t current_byte = bytecode_array()->get(bytecode_offset_);
45 return bytecode_offset_ >= bytecode_array()->length();
51 bytecode_array()->get(bytecode_offset_ + current_prefix_offset());
70 bytecode_array()->GetFirstBytecodeAddress() + bytecode_offset_ +
86 bytecode_array()->GetFirstBytecodeAddress() + bytecode_offset_ +
131 bytecode_array()->GetFirstBytecodeAddress() + bytecode_offset_ +
173 return FixedArray::get(bytecode_array()->constant_pool(),
175 bytecode_array()
15 BytecodeArrayIterator( Handle<BytecodeArray> bytecode_array) argument
[all...]
H A Dbytecode-register.cc75 Register Register::bytecode_array() { function in class:v8::internal::interpreter::Register
H A Dbytecode-array-writer.cc43 Handle<BytecodeArray> bytecode_array = isolate->factory()->NewBytecodeArray( local
46 bytecode_array->set_handler_table(*handler_table);
49 isolate, Handle<AbstractCode>::cast(bytecode_array));
50 bytecode_array->set_source_position_table(*source_position_table);
51 return bytecode_array;
H A Dinterpreter-assembler.cc160 return LoadRegister(Register::bytecode_array());
1262 Node* bytecode_array = LoadRegister(Register::bytecode_array()); local
1264 bytecode_array, BytecodeArray::kFrameSizeOffset, MachineType::Int32());
/external/v8/src/profiler/
H A Dtick-sample.cc257 // bytecode_array might be garbage, so don't dereference it.
258 i::Address bytecode_array = local
261 frames[i++] = bytecode_array + i::BytecodeArray::kHeaderSize +
/external/v8/src/
H A Dcompilation-info.h90 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } function in class:v8::internal::final
192 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) { argument
193 bytecode_array_ = bytecode_array;
H A Dframes.cc1227 abstract_code = AbstractCode::cast(shared_info->bytecode_array());
1372 BytecodeArray* bytecode = function()->shared()->bytecode_array();
1414 void InterpretedFrame::PatchBytecodeArray(BytecodeArray* bytecode_array) { argument
1419 SetExpression(index, bytecode_array);
1443 AbstractCode::cast(function()->shared()->bytecode_array());
H A Ddeoptimizer.cc648 BytecodeArray* bytecode = function->shared()->bytecode_array();
1218 Object* bytecode_array = shared->HasDebugInfo() local
1220 : shared->bytecode_array();
1221 WriteValueToOutput(bytecode_array, 0, frame_index, output_offset,
2769 return AbstractCode::cast(shared->bytecode_array())
H A Dfactory.cc1639 Handle<BytecodeArray> bytecode_array) {
1641 isolate()->heap()->CopyBytecodeArray(*bytecode_array),
2425 Handle<BytecodeArray> original(shared->bytecode_array());
1638 CopyBytecodeArray( Handle<BytecodeArray> bytecode_array) argument
/external/v8/src/runtime/
H A Druntime-debug.cc57 BytecodeArray* bytecode_array = shared->bytecode_array(); local
60 interpreter::Bytecodes::FromByte(bytecode_array->get(bytecode_offset));
/external/v8/src/debug/
H A Ddebug.cc318 BytecodeArray* bytecode_array = debug_info_->OriginalBytecodeArray(); local
320 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
349 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
351 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
355 bytecode_array->set(code_offset(),
363 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
365 bytecode_array->set(code_offset(), original->get(code_offset()));
372 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); local
374 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset()));
/external/v8/src/heap/
H A Dheap.cc2309 ALLOCATE_VARSIZE_MAP(BYTECODE_ARRAY_TYPE, bytecode_array)
3390 AllocationResult Heap::CopyBytecodeArray(BytecodeArray* bytecode_array) { argument
3391 int size = BytecodeArray::SizeFor(bytecode_array->length());
3400 copy->set_length(bytecode_array->length());
3401 copy->set_frame_size(bytecode_array->frame_size());
3402 copy->set_parameter_count(bytecode_array->parameter_count());
3403 copy->set_constant_pool(bytecode_array->constant_pool());
3404 copy->set_handler_table(bytecode_array->handler_table());
3405 copy->set_source_position_table(bytecode_array->source_position_table());
3406 copy->set_interrupt_budget(bytecode_array
[all...]

Completed in 1747 milliseconds