| /third_party/node/deps/v8/src/objects/ |
| D | code-inl.h | 35 TQ_OBJECT_CONSTRUCTORS_IMPL(BytecodeArray) in OBJECT_CONSTRUCTORS_IMPL() 141 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray() 142 return BytecodeArray::cast(*this); in GetBytecodeArray() 545 BytecodeArray bytecodes) { in GetBytecodeOffsetForBaselinePC() 559 BytecodeArray bytecodes) { in GetBaselinePCForBytecodeOffset() 576 BytecodeArray bytecodes) { in GetBaselineStartPCForBytecodeOffset() 582 BytecodeArray bytecodes) { in GetBaselineEndPCForBytecodeOffset() 588 BytecodeArray bytecodes) { in GetBaselinePCForNextExecutedBytecode() 593 Handle<BytecodeArray> bytecodes_handle( in GetBaselinePCForNextExecutedBytecode() 1134 byte BytecodeArray::get(int index) const { in DEF_PRIMITIVE_FORWARDING_CDC_GETTER() [all …]
|
| D | debug-objects-inl.h | 43 BytecodeArray DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray() 45 return BytecodeArray::cast(original_bytecode_array(kAcquireLoad)); in OriginalBytecodeArray() 48 BytecodeArray DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray() 52 return BytecodeArray::cast(debug_bytecode_array(kAcquireLoad)); in DebugBytecodeArray()
|
| D | code.h | 27 class BytecodeArray; variable 549 BytecodeArray bytecodes); 552 BytecodeArray bytecodes); 560 int bytecode_offset, BytecodeArray bytecodes); 563 BytecodeArray bytecodes); 726 BytecodeArray bytecodes); 839 inline BytecodeArray GetBytecodeArray(); 952 class BytecodeArray in DEFINE_OPERATORS_FOR_FLAGS() 953 : public TorqueGeneratedBytecodeArray<BytecodeArray, FixedArrayBase> { in DEFINE_OPERATORS_FOR_FLAGS() 1059 DECL_PRINTER(BytecodeArray) in DEFINE_OPERATORS_FOR_FLAGS() [all …]
|
| D | debug-objects.h | 23 class BytecodeArray; variable 57 inline BytecodeArray OriginalBytecodeArray(); 58 inline BytecodeArray DebugBytecodeArray();
|
| D | shared-function-info.h | 34 class BytecodeArray; variable 333 inline BytecodeArray GetBytecodeArray(IsolateT* isolate) const; 335 inline void set_bytecode_array(BytecodeArray bytecode); 344 inline BytecodeArray GetActiveBytecodeArray() const; 345 inline void SetActiveBytecodeArray(BytecodeArray bytecode);
|
| D | code.cc | 607 void BytecodeArray::Disassemble(std::ostream& os) { in Disassemble() 621 BytecodeArray handle_storage = *this; in Disassemble() 622 Handle<BytecodeArray> handle(reinterpret_cast<Address*>(&handle_storage)); in Disassemble() 686 void BytecodeArray::CopyBytecodesTo(BytecodeArray to) { in CopyBytecodesTo() 687 BytecodeArray from = *this; in CopyBytecodesTo() 694 void BytecodeArray::MakeOlder() { in MakeOlder() 710 bool BytecodeArray::IsOld() const { in IsOld()
|
| D | shared-function-info-inl.h | 566 BytecodeArray SharedFunctionInfo::GetBytecodeArray(IsolateT* isolate) const { in GetBytecodeArray() 578 BytecodeArray SharedFunctionInfo::GetActiveBytecodeArray() const { in GetActiveBytecodeArray() 585 return BytecodeArray::cast(data); in GetActiveBytecodeArray() 592 void SharedFunctionInfo::SetActiveBytecodeArray(BytecodeArray bytecode) { in SetActiveBytecodeArray() 606 void SharedFunctionInfo::set_bytecode_array(BytecodeArray bytecode) { in set_bytecode_array() 641 BytecodeArray bytecode = BytecodeArray::cast(data); in ShouldFlushCode()
|
| /third_party/node/deps/v8/src/baseline/ |
| D | bytecode-offset-iterator.h | 17 class BytecodeArray; variable 24 Handle<BytecodeArray> bytecodes); 27 BytecodeArray bytecodes); 88 BytecodeArray bytecode_handle_storage_;
|
| D | bytecode-offset-iterator.cc | 14 Handle<BytecodeArray> bytecodes) in BytecodeOffsetIterator() 28 BytecodeArray bytecodes) in BytecodeOffsetIterator() 36 bytecode_iterator_(Handle<BytecodeArray>( in BytecodeOffsetIterator()
|
| D | baseline-compiler.h | 29 class BytecodeArray; variable 57 Handle<BytecodeArray> bytecode); 61 static int EstimateInstructionSize(BytecodeArray bytecode); 165 Handle<BytecodeArray> bytecode_;
|
| /third_party/node/deps/v8/src/runtime/ |
| D | runtime-trace.cc | 125 Handle<BytecodeArray> bytecode_array = args.at<BytecodeArray>(0); in RUNTIME_FUNCTION() 129 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION() 175 Handle<BytecodeArray> bytecode_array = args.at<BytecodeArray>(0); in RUNTIME_FUNCTION() 179 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION()
|
| /third_party/node/deps/v8/src/compiler/ |
| D | bytecode-analysis.h | 19 class BytecodeArray; variable 101 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone, 165 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 177 Handle<BytecodeArray> const bytecode_array_;
|
| /third_party/node/deps/v8/src/interpreter/ |
| D | bytecode-array-iterator.h | 22 class BytecodeArray; variable 72 BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array, 106 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 178 Handle<BytecodeArray> bytecode_array_;
|
| D | bytecode-array-writer.h | 16 class BytecodeArray; variable 60 Handle<BytecodeArray> ToBytecodeArray(IsolateT* isolate, int register_count, 70 int CheckBytecodeMatches(BytecodeArray bytecode);
|
| D | interpreter.cc | 57 Handle<BytecodeArray> bytecode); 215 IsolateT* isolate, Handle<Script> script, Handle<BytecodeArray> bytecode) { in CheckAndPrintBytecodeMismatch() 221 Handle<BytecodeArray> new_bytecode = in CheckAndPrintBytecodeMismatch() 271 Handle<BytecodeArray> bytecodes = compilation_info_.bytecode_array(); in DoFinalizeJobImpl() 320 Handle<BytecodeArray> existing_bytecode, AccountingAllocator* allocator, in NewSourcePositionCollectionJob()
|
| D | interpreter.h | 21 class BytecodeArray; variable 59 Handle<BytecodeArray> existing_bytecode,
|
| 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 | interpreter-assembler.h | 273 BytecodeArray::kHeaderSize - kHeapObjectTag; 291 TNode<BytecodeArray> BytecodeArrayTaggedPointer(); 423 CodeStubAssembler::TVariable<BytecodeArray> bytecode_array_;
|
| D | bytecode-array-random-iterator.cc | 14 Handle<BytecodeArray> bytecode_array, Zone* zone) in BytecodeArrayRandomIterator()
|
| /third_party/node/deps/v8/src/codegen/ |
| D | unoptimized-compilation-info.h | 76 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 77 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) { in SetBytecodeArray() 108 Handle<BytecodeArray> bytecode_array_;
|
| D | optimized-compilation-info.h | 119 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array() 195 Handle<BytecodeArray> bytecode_array; // Explicit to prevent flushing. 199 Handle<BytecodeArray> inlined_bytecode, 212 Handle<BytecodeArray> inlined_bytecode, 260 Handle<BytecodeArray> bytecode_array_;
|
| D | handler-table.h | 17 class BytecodeArray; variable 60 explicit HandlerTable(BytecodeArray bytecode_array);
|
| D | optimized-compilation-info.cc | 117 bytecode_array_ = Handle<BytecodeArray>(*bytecode_array_, isolate); in ReopenHandlesInNewHandleScope() 220 Handle<BytecodeArray> inlined_bytecode, SourcePosition pos) { in AddInlinedFunction() 238 Handle<BytecodeArray> inlined_bytecode, SourcePosition pos) in InlinedFunctionHolder()
|
| /third_party/node/deps/v8/src/execution/ |
| D | tiering-manager.cc | 226 BytecodeArray bytecode = shared.GetBytecodeArray(isolate); in TrySetOsrUrgency() 241 int new_urgency = std::min(old_urgency + 1, BytecodeArray::kMaxOsrUrgency); in TryIncrementOsrUrgency() 246 TrySetOsrUrgency(isolate, function, BytecodeArray::kMaxOsrUrgency); in TryRequestOsrAtNextOpportunity() 251 DCHECK_LE(osr_urgency_for_cached_osr_code, BytecodeArray::kMaxOsrUrgency); in TryRequestOsrForCachedOsrCode() 340 BytecodeArray bytecode = function.shared().GetBytecodeArray(isolate_); in ShouldOptimize()
|
| /third_party/node/deps/v8/src/heap/ |
| D | objects-visiting.h | 20 V(BytecodeArray) \ 139 int VisitBytecodeArray(Map map, BytecodeArray object) { in VisitBytecodeArray()
|