Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-code-manager.h157 OwnedVector<trap_handler::ProtectedInstructionData> in WasmCode()
159 OwnedVector<const byte> reloc_info, in WasmCode()
160 OwnedVector<const byte> source_position_table, Kind kind, Tier tier) in WasmCode()
189 OwnedVector<const byte> reloc_info_;
190 OwnedVector<const byte> source_position_table_;
202 OwnedVector<trap_handler::ProtectedInstructionData> protected_instructions_;
223 OwnedVector<trap_handler::ProtectedInstructionData>
225 OwnedVector<const byte> source_position_table,
232 OwnedVector<trap_handler::ProtectedInstructionData>
234 OwnedVector<const byte> reloc_info,
[all …]
Dwasm-code-manager.cc365 OwnedVector<trap_handler::ProtectedInstructionData> protected_instructions, in AddOwnedCode()
366 OwnedVector<const byte> reloc_info, in AddOwnedCode()
367 OwnedVector<const byte> source_position_table, WasmCode::Kind kind, in AddOwnedCode()
462 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(relocation_size); in AddAnonymousCode()
466 OwnedVector<byte> source_pos = in AddAnonymousCode()
467 OwnedVector<byte>::New(source_pos_table->length()); in AddAnonymousCode()
521 OwnedVector<trap_handler::ProtectedInstructionData> protected_instructions, in AddCode()
522 OwnedVector<const byte> source_pos_table, WasmCode::Tier tier) { in AddCode()
523 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(desc.reloc_size); in AddCode()
571 OwnedVector<trap_handler::ProtectedInstructionData> protected_instructions, in AddDeserializedCode()
[all …]
Dwasm-serialization.cc468 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(reloc_size); in ReadCode()
470 OwnedVector<byte> source_pos = OwnedVector<byte>::New(source_position_size); in ReadCode()
473 OwnedVector<trap_handler::ProtectedInstructionData>::New( in ReadCode()
565 OwnedVector<uint8_t> wire_bytes_copy = OwnedVector<uint8_t>::Of(wire_bytes); in DeserializeNativeModule()
Dstreaming-decoder.cc67 OwnedVector<uint8_t> bytes = OwnedVector<uint8_t>::New(total_size_); in Finish()
Dstreaming-decoder.h47 virtual void OnFinishedStream(OwnedVector<uint8_t> bytes) = 0;
Dwasm-objects.h139 OwnedVector<const uint8_t> wire_bytes, Handle<Script> script,
Dmodule-compiler.cc903 OwnedVector<uint8_t> wire_bytes_copy = in CompileToModuleObject()
904 OwnedVector<uint8_t>::Of(wire_bytes.module_bytes()); in CompileToModuleObject()
2178 void OnFinishedStream(OwnedVector<uint8_t> bytes) override;
2740 void AsyncStreamingProcessor::OnFinishedStream(OwnedVector<uint8_t> bytes) { in OnFinishedStream()
Dwasm-objects.cc183 OwnedVector<const uint8_t> wire_bytes, Handle<Script> script, in New()
/external/v8/src/
Dvector.h192 class OwnedVector {
194 MOVE_ONLY_WITH_DEFAULT_CONSTRUCTORS(OwnedVector);
195 OwnedVector(std::unique_ptr<T[]> data, size_t length) in OwnedVector() function
205 OwnedVector(OwnedVector<U>&& other) in OwnedVector() function
228 static OwnedVector<T> New(size_t size) { in New()
230 return OwnedVector<T>(std::unique_ptr<T[]>(new T[size]), size); in New()
239 static OwnedVector<T> Of(const U& collection) { in Of()
242 OwnedVector<T> vec = New(std::distance(begin, end)); in Of()
Dsource-position-table.cc175 OwnedVector<byte> SourcePositionTableBuilder::ToSourcePositionTableVector() { in ToSourcePositionTableVector()
176 if (bytes_.empty()) return OwnedVector<byte>(); in ToSourcePositionTableVector()
179 OwnedVector<byte> table = OwnedVector<byte>::Of(bytes_); in ToSourcePositionTableVector()
Dsource-position-table.h45 OwnedVector<byte> ToSourcePositionTableVector();
/external/v8/src/compiler/
Dcode-generator.h96 OwnedVector<byte> GetSourcePositionTable();
97 OwnedVector<trap_handler::ProtectedInstructionData>
Dcode-generator.cc371 OwnedVector<byte> CodeGenerator::GetSourcePositionTable() { in GetSourcePositionTable()
375 OwnedVector<trap_handler::ProtectedInstructionData>
377 return OwnedVector<trap_handler::ProtectedInstructionData>::Of( in GetProtectedInstructions()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc153 OwnedVector<uint8_t> GetSourcePositionTable() { in GetSourcePositionTable()
157 OwnedVector<trap_handler::ProtectedInstructionData> GetProtectedInstructions() in GetProtectedInstructions()
159 return OwnedVector<trap_handler::ProtectedInstructionData>::Of( in GetProtectedInstructions()
1884 OwnedVector<byte> source_positions = compiler->GetSourcePositionTable(); in ExecuteCompilation()
1885 OwnedVector<trap_handler::ProtectedInstructionData> protected_instructions = in ExecuteCompilation()