Home
last modified time | relevance | path

Searched refs:bytecode_array (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-iterator.cc14 Handle<BytecodeArray> bytecode_array) in BytecodeArrayIterator() argument
15 : bytecode_array_(bytecode_array), bytecode_offset_(0) {} in BytecodeArrayIterator()
24 return bytecode_offset_ >= bytecode_array()->length(); in done()
30 uint8_t current_byte = bytecode_array()->get(bytecode_offset_); in current_bytecode()
47 bytecode_array()->GetFirstBytecodeAddress() + bytecode_offset_ + in GetRawOperand()
101 Handle<FixedArray> constants = handle(bytecode_array()->constant_pool()); in GetConstantForIndexOperand()
Dbytecode-array-iterator.h18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
25 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array() function
/external/v8/test/cctest/interpreter/
Dtest-interpreter.cc173 Handle<BytecodeArray> bytecode_array = builder.ToBytecodeArray(); in TEST() local
175 InterpreterTester tester(handles.main_isolate(), bytecode_array); in TEST()
192 Handle<BytecodeArray> bytecode_array = builder.ToBytecodeArray(); in TEST() local
194 InterpreterTester tester(handles.main_isolate(), bytecode_array); in TEST()
210 Handle<BytecodeArray> bytecode_array = builder.ToBytecodeArray(); in TEST() local
212 InterpreterTester tester(handles.main_isolate(), bytecode_array); in TEST()
229 Handle<BytecodeArray> bytecode_array = builder.ToBytecodeArray(); in TEST() local
231 InterpreterTester tester(handles.main_isolate(), bytecode_array); in TEST()
247 Handle<BytecodeArray> bytecode_array = builder.ToBytecodeArray(); in TEST() local
249 InterpreterTester tester(handles.main_isolate(), bytecode_array); in TEST()
[all …]
Dtest-bytecode-generator.cc45 return handle(js_function->shared()->bytecode_array(), CcTest::i_isolate()); in MakeTopLevelBytecode()
57 return handle(js_function->shared()->bytecode_array(), CcTest::i_isolate()); in MakeBytecode()
275 Handle<BytecodeArray> bytecode_array = in TEST() local
277 CheckBytecodeArrayEqual(snippets[i], bytecode_array); in TEST()
427 Handle<BytecodeArray> bytecode_array = in TEST() local
429 CheckBytecodeArrayEqual(snippets[i], bytecode_array); in TEST()
643 Handle<BytecodeArray> bytecode_array = in TEST() local
645 CheckBytecodeArrayEqual(snippets[i], bytecode_array); in TEST()
706 Handle<BytecodeArray> bytecode_array = in TEST() local
708 CheckBytecodeArrayEqual(snippets[i], bytecode_array); in TEST()
[all …]
/external/v8/src/compiler/
Dbytecode-branch-analysis.cc49 Handle<BytecodeArray> bytecode_array, Zone* zone) in BytecodeBranchAnalysis() argument
51 bytecode_array_(bytecode_array), in BytecodeBranchAnalysis()
52 reachable_(bytecode_array->length(), zone), in BytecodeBranchAnalysis()
57 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in Analyze()
Dbytecode-branch-analysis.h30 BytecodeBranchAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone);
64 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() function
Dbytecode-graph-builder.cc385 bytecode_array_(handle(info()->shared_info()->bytecode_array())), in BytecodeGraphBuilder()
388 bytecode_array()->parameter_count(), in BytecodeGraphBuilder()
389 bytecode_array()->register_count(), info()->shared_info(), in BytecodeGraphBuilder()
400 int params = bytecode_array()->parameter_count(); in GetNewTarget()
412 int params = bytecode_array()->parameter_count(); in GetFunctionContext()
487 int actual_parameter_count = bytecode_array()->parameter_count() + 4; in CreateGraph()
490 Environment env(this, bytecode_array()->register_count(), in CreateGraph()
491 bytecode_array()->parameter_count(), graph()->start(), in CreateGraph()
522 BytecodeBranchAnalysis analysis(bytecode_array(), local_zone()); in VisitBytecodes()
525 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in VisitBytecodes()
Dbytecode-graph-builder.h185 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array() function
/external/v8/src/
Dcompiler.h177 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() function
285 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) { in SetBytecodeArray() argument
286 bytecode_array_ = bytecode_array; in SetBytecodeArray()
Dcompiler.cc858 shared->set_function_data(*info->bytecode_array()); in GetUnoptimizedCodeCommon()
1318 result->set_function_data(*info->bytecode_array()); in CompileToplevel()
1672 result->set_function_data(*info.bytecode_array()); in GetSharedFunctionInfo()
Dobjects-printer.cc905 os << "\n - bytecode_array = " << bytecode_array(); in SharedFunctionInfoPrint()
Dobjects-inl.h5962 BytecodeArray* SharedFunctionInfo::bytecode_array() { in bytecode_array() function
Dobjects.h6611 inline BytecodeArray* bytecode_array();
/external/v8/src/heap/
Dheap.cc2358 ALLOCATE_VARSIZE_MAP(BYTECODE_ARRAY_TYPE, bytecode_array) in CreateInitialMaps()
2419 BytecodeArray* bytecode_array = nullptr; in CreateInitialMaps() local
2422 if (!allocation.To(&bytecode_array)) { in CreateInitialMaps()
2425 set_empty_bytecode_array(bytecode_array); in CreateInitialMaps()