Home
last modified time | relevance | path

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

12345678910>>...14

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/objects/
H A Dcode-inl.h28 OBJECT_CONSTRUCTORS_IMPL(BytecodeArray, FixedArrayBase) in OBJECT_CONSTRUCTORS_IMPL()
36 CAST_ACCESSOR(BytecodeArray) in OBJECT_CONSTRUCTORS_IMPL()
129 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
130 return BytecodeArray::cast(*this); in GetBytecodeArray()
589 byte BytecodeArray::get(int index) const { in get()
605 int32_t BytecodeArray::frame_size() const { in frame_size()
609 int BytecodeArray::register_count() const { in register_count()
655 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
660 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
679 void BytecodeArray::clear_padding() { in ACCESSORS()
[all …]
H A Ddebug-objects-inl.h43 BytecodeArray DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray()
45 return BytecodeArray::cast(original_bytecode_array()); in OriginalBytecodeArray()
48 BytecodeArray DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray()
51 return BytecodeArray::cast(debug_bytecode_array()); in DebugBytecodeArray()
H A Dcode.h23 class BytecodeArray; variable
598 inline BytecodeArray GetBytecodeArray();
720 class BytecodeArray : public FixedArrayBase {
804 DECL_CAST(BytecodeArray)
815 DECL_PRINTER(BytecodeArray)
816 DECL_VERIFIER(BytecodeArray)
820 void CopyBytecodesTo(BytecodeArray to);
836 STATIC_ASSERT(BytecodeArray::kBytecodeAgeOffset ==
846 OBJECT_CONSTRUCTORS(BytecodeArray, FixedArrayBase);
/dports/www/node10/node-v10.24.1/deps/v8/src/objects/
H A Dcode-inl.h22 TYPE_CHECKER(BytecodeArray, BYTECODE_ARRAY_TYPE) in TYPE_CHECKER() argument
27 CAST_ACCESSOR(BytecodeArray) in TYPE_CHECKER()
135 return BytecodeArray::cast(this); in GetBytecodeArray()
585 byte BytecodeArray::get(int index) { in get()
601 int BytecodeArray::frame_size() const { in frame_size()
605 int BytecodeArray::register_count() const { in register_count()
660 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
665 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
673 int BytecodeArray::parameter_count() const { in parameter_count()
684 void BytecodeArray::clear_padding() { in ACCESSORS()
[all …]
H A Ddebug-objects-inl.h40 BytecodeArray* DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray()
45 BytecodeArray* DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray()
47 return BytecodeArray::cast(debug_bytecode_array()); in DebugBytecodeArray()
/dports/lang/v8/v8-9.6.180.12/test/cctest/interpreter/
H A Dbytecode-expectations-printer.h24 class BytecodeArray; variable
76 i::Handle<i::BytecodeArray> bytecode_array) const;
78 i::Handle<i::BytecodeArray> bytecode_array) const;
83 i::Handle<i::BytecodeArray> bytecode_array) const;
85 i::Handle<i::BytecodeArray> bytecode_array) const;
94 i::Handle<i::BytecodeArray> GetBytecodeArrayForGlobal(
96 i::Handle<v8::internal::BytecodeArray> GetBytecodeArrayForModule(
98 i::Handle<v8::internal::BytecodeArray> GetBytecodeArrayForScript(
100 i::Handle<i::BytecodeArray> GetBytecodeArrayOfCallee(
H A Dsource-position-matcher.h19 bool Match(Handle<BytecodeArray> original, Handle<BytecodeArray> optimized);
31 Handle<BytecodeArray> bytecode_array,
35 bool ExpressionPositionIsNeeded(Handle<BytecodeArray> bytecode_array,
H A Dbytecode-expectations-printer.cc87 i::Handle<v8::internal::BytecodeArray>
97 i::Handle<i::BytecodeArray> bytecodes = i::handle( in GetBytecodeArrayForGlobal()
103 i::Handle<i::BytecodeArray>
113 i::Handle<i::BytecodeArray>
121 i::Handle<i::BytecodeArray>
308 std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { in PrintFrameSize()
317 std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { in PrintBytecodeSequence()
362 std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { in PrintHandlers()
374 std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { in PrintBytecodeArray()
388 i::Handle<i::BytecodeArray> bytecode_array; in PrintExpectation()
H A Dtest-source-positions.cc129 Handle<BytecodeArray> MakeBytecode(int optimization_bitmap,
161 Handle<BytecodeArray> OptimizedBytecodeSourcePositionTester::MakeBytecode( in MakeBytecode()
201 Handle<BytecodeArray> unoptimized_bytecode = in SourcePositionsMatch()
203 Handle<BytecodeArray> optimized_bytecode = MakeBytecode( in SourcePositionsMatch()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/objects/
H A 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()
645 int32_t BytecodeArray::frame_size() const { in frame_size()
649 int BytecodeArray::register_count() const { in register_count()
695 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
700 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
719 void BytecodeArray::clear_padding() { in ACCESSORS()
[all …]
H A 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()
/dports/lang/v8/v8-9.6.180.12/src/objects/
H A Dcode-inl.h38 TQ_OBJECT_CONSTRUCTORS_IMPL(BytecodeArray) in OBJECT_CONSTRUCTORS_IMPL()
136 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
137 return BytecodeArray::cast(*this); in GetBytecodeArray()
504 Handle<BytecodeArray> bytecodes_handle( in GetBaselinePCForNextExecutedBytecode()
884 byte BytecodeArray::get(int index) const { in get()
900 int32_t BytecodeArray::frame_size() const { in frame_size()
904 int BytecodeArray::register_count() const { in register_count()
950 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
955 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
969 void BytecodeArray::clear_padding() { in clear_padding()
[all …]
H A Ddebug-objects-inl.h43 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()
H A Dcode.h27 class BytecodeArray; variable
470 int bytecode_offset, BytecodeArray bytecodes);
473 BytecodeArray bytecodes);
711 inline BytecodeArray GetBytecodeArray();
843 class BytecodeArray
844 : public TorqueGeneratedBytecodeArray<BytecodeArray, FixedArrayBase> {
919 DECL_PRINTER(BytecodeArray)
920 DECL_VERIFIER(BytecodeArray)
924 void CopyBytecodesTo(BytecodeArray to);
936 STATIC_ASSERT(BytecodeArray::kBytecodeAgeOffset ==
[all …]
/dports/lang/v8/v8-9.6.180.12/src/baseline/
H A Dbytecode-offset-iterator.h17 class BytecodeArray; variable
24 Handle<BytecodeArray> bytecodes);
27 BytecodeArray bytecodes);
88 BytecodeArray bytecode_handle_storage_;
H A Dbytecode-offset-iterator.cc14 Handle<BytecodeArray> bytecodes) in BytecodeOffsetIterator()
28 BytecodeArray bytecodes) in BytecodeOffsetIterator()
36 bytecode_iterator_(Handle<BytecodeArray>( in BytecodeOffsetIterator()
/dports/lang/v8/v8-9.6.180.12/test/unittests/compiler/
H A Dbytecode-analysis-unittest.cc61 Handle<BytecodeArray> bytecode, in EnsureLivenessMatches()
99 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
116 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
136 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
173 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
220 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
267 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
316 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
370 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
447 Handle<BytecodeArray> bytecode = builder.ToBytecodeArray(isolate()); in TEST_F()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/interpreter/
H A Dbytecode-array-accessor.h18 class BytecodeArray; variable
68 BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
78 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array()
122 Handle<BytecodeArray> bytecode_array_;
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/
H A Dbytecode-analysis.h19 class BytecodeArray; variable
97 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone,
153 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array()
156 Handle<BytecodeArray> bytecode_array_;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/
H A Dbytecode-analysis.h19 class BytecodeArray; variable
101 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone,
154 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array()
158 Handle<BytecodeArray> const bytecode_array_;
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/
H A 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_;
/dports/lang/v8/v8-9.6.180.12/src/compiler/
H A 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()
168 Handle<BytecodeArray> const bytecode_array_;
/dports/lang/v8/v8-9.6.180.12/src/codegen/
H A 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_;
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/codegen/
H A 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_;
/dports/lang/v8/v8-9.6.180.12/src/interpreter/
H A Dbytecode-array-iterator.h22 class BytecodeArray; variable
72 BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array,
101 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array()
173 Handle<BytecodeArray> bytecode_array_;

12345678910>>...14