Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::compiler::UnresolvedPcRelativeCall Class Reference

#include <stub_code_compiler.h>

Inheritance diagram for dart::compiler::UnresolvedPcRelativeCall:
dart::ZoneAllocated

Public Member Functions

 UnresolvedPcRelativeCall (intptr_t offset, const dart::Code &target, bool is_tail_call)
 
intptr_t offset () const
 
const dart::Codetarget () const
 
bool is_tail_call () const
 
- Public Member Functions inherited from dart::ZoneAllocated
 ZoneAllocated ()
 
void * operator new (size_t size)
 
void * operator new (size_t size, Zone *zone)
 
void operator delete (void *pointer)
 

Detailed Description

Definition at line 34 of file stub_code_compiler.h.

Constructor & Destructor Documentation

◆ UnresolvedPcRelativeCall()

dart::compiler::UnresolvedPcRelativeCall::UnresolvedPcRelativeCall ( intptr_t  offset,
const dart::Code target,
bool  is_tail_call 
)
inline

Definition at line 36 of file stub_code_compiler.h.

39 : offset_(offset), target_(target), is_tail_call_(is_tail_call) {}

Member Function Documentation

◆ is_tail_call()

bool dart::compiler::UnresolvedPcRelativeCall::is_tail_call ( ) const
inline

Definition at line 43 of file stub_code_compiler.h.

43{ return is_tail_call_; }

◆ offset()

intptr_t dart::compiler::UnresolvedPcRelativeCall::offset ( ) const
inline

Definition at line 41 of file stub_code_compiler.h.

41{ return offset_; }

◆ target()

const dart::Code & dart::compiler::UnresolvedPcRelativeCall::target ( ) const
inline

Definition at line 42 of file stub_code_compiler.h.

42{ return target_; }

The documentation for this class was generated from the following file: