/external/v8/src/interpreter/ |
D | bytecode-array-iterator.cc | 14 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()
|
D | bytecode-array-iterator.h | 18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array); 25 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array() function
|
/external/v8/test/cctest/interpreter/ |
D | test-interpreter.cc | 173 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 …]
|
D | test-bytecode-generator.cc | 45 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/ |
D | bytecode-branch-analysis.cc | 49 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()
|
D | bytecode-branch-analysis.h | 30 BytecodeBranchAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone); 64 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() function
|
D | bytecode-graph-builder.cc | 385 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()
|
D | bytecode-graph-builder.h | 185 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array() function
|
/external/v8/src/ |
D | compiler.h | 177 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()
|
D | compiler.cc | 858 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()
|
D | objects-printer.cc | 905 os << "\n - bytecode_array = " << bytecode_array(); in SharedFunctionInfoPrint()
|
D | objects-inl.h | 5962 BytecodeArray* SharedFunctionInfo::bytecode_array() { in bytecode_array() function
|
D | objects.h | 6611 inline BytecodeArray* bytecode_array();
|
/external/v8/src/heap/ |
D | heap.cc | 2358 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()
|