Home
last modified time | relevance | path

Searched refs:InstructionStream (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/
Dinstruction-stream.cc15 bool InstructionStream::PcIsOffHeap(Isolate* isolate, Address pc) { in PcIsOffHeap()
25 Code* InstructionStream::TryLookupCode(Isolate* isolate, Address address) { in TryLookupCode()
49 void InstructionStream::CreateOffHeapInstructionStream(Isolate* isolate, in CreateOffHeapInstructionStream()
73 void InstructionStream::FreeOffHeapInstructionStream(uint8_t* data, in FreeOffHeapInstructionStream()
Dinstruction-stream.h19 class InstructionStream final : public AllStatic {
Ddisassembler.cc367 bool decode_off_heap = isolate && InstructionStream::PcIsOffHeap( in Decode()
Dassembler.h65 class InstructionStream; variable
Dreloc-info.cc514 CHECK_NOT_NULL(InstructionStream::TryLookupCode(isolate, addr)); in Verify()
Disolate.h90 class InstructionStream; variable
Disolate.cc2670 InstructionStream::FreeOffHeapInstructionStream(data, in Throw()
2906 InstructionStream::CreateOffHeapInstructionStream(this, &data, &size); in Throw()
Dobjects-printer.cc2453 !i::InstructionStream::PcIsOffHeap(isolate, address)) { in _v8_internal_Print_Code()
Dobjects.cc14631 if (InstructionStream::PcIsOffHeap(isolate, target_address)) continue; in IsIsolateIndependent()
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas5896 InstructionStream: IList<IRewriteOperation>;
5898 InstructionStream := FPrograms[Name];
5899 if (InstructionStream = nil) then
5900 InstructionStream := InitializeProgram(Name);
5901 Result := InstructionStream;
6134 InstructionStream: IList<IRewriteOperation>;
6136 InstructionStream := FPrograms[ProgramName];
6137 if Assigned(InstructionStream) then
6138 FPrograms[ProgramName] := InstructionStream.GetRange(MIN_TOKEN_INDEX,
/external/v8/src/builtins/
Dbuiltins.cc91 Code* maybe_builtin = InstructionStream::TryLookupCode(isolate_, pc); in Lookup()
/external/v8/src/snapshot/
Dserializer.cc872 InstructionStream::TryLookupCode(serializer_->isolate(), addr)); in VisitOffHeapTarget()
/external/v8/src/heap/
Dheap.cc5821 if (InstructionStream::TryLookupCode(isolate(), addr) == code) return true; in GcSafeCodeContains()
5828 Code* code = InstructionStream::TryLookupCode(isolate(), inner_pointer); in GcSafeFindCodeForInnerPointer()