#include <deopt_id.h>
|
static constexpr intptr_t | kNone = -1 |
|
Definition at line 25 of file deopt_id.h.
◆ IsDeoptAfter()
static bool dart::DeoptId::IsDeoptAfter |
( |
intptr_t |
deopt_id | ) |
|
|
inlinestatic |
Definition at line 40 of file deopt_id.h.
40 {
41 return (deopt_id % kStep) == kAfterOffset;
42 }
◆ IsDeoptBefore()
static bool dart::DeoptId::IsDeoptBefore |
( |
intptr_t |
deopt_id | ) |
|
|
inlinestatic |
Definition at line 36 of file deopt_id.h.
36 {
37 return (deopt_id % kStep) == kBeforeOffset;
38 }
◆ Next()
static intptr_t dart::DeoptId::Next |
( |
intptr_t |
deopt_id | ) |
|
|
inlinestatic |
Definition at line 29 of file deopt_id.h.
29{ return deopt_id + kStep; }
◆ ToDeoptAfter()
static intptr_t dart::DeoptId::ToDeoptAfter |
( |
intptr_t |
deopt_id | ) |
|
|
inlinestatic |
Definition at line 31 of file deopt_id.h.
31 {
33 return deopt_id + kAfterOffset;
34 }
static bool IsDeoptBefore(intptr_t deopt_id)
◆ kNone
constexpr intptr_t dart::DeoptId::kNone = -1 |
|
staticconstexpr |
The documentation for this class was generated from the following file:
- third_party/dart-lang/sdk/runtime/vm/compiler/api/deopt_id.h