V8 Project
v8::internal::InlineSmiCheckInfo Class Reference

#include <macro-assembler-arm64.h>

+ Collaboration diagram for v8::internal::InlineSmiCheckInfo:

Classes

class  DeltaBits
 
class  RegisterBits
 

Public Member Functions

 InlineSmiCheckInfo (Address info)
 
bool HasSmiCheck () const
 
const RegisterSmiRegister () const
 
InstructionSmiCheck () const
 

Static Public Member Functions

static void Emit (MacroAssembler *masm, const Register &reg, const Label *smi_check)
 
static void EmitNotInlined (MacroAssembler *masm)
 

Private Attributes

Register reg_
 
Instructionsmi_check_
 

Detailed Description

Definition at line 2279 of file macro-assembler-arm64.h.

Constructor & Destructor Documentation

◆ InlineSmiCheckInfo()

v8::internal::InlineSmiCheckInfo::InlineSmiCheckInfo ( Address  info)
explicit

Member Function Documentation

◆ Emit()

static void v8::internal::InlineSmiCheckInfo::Emit ( MacroAssembler masm,
const Register reg,
const Label *  smi_check 
)
static

Referenced by EmitNotInlined().

+ Here is the caller graph for this function:

◆ EmitNotInlined()

static void v8::internal::InlineSmiCheckInfo::EmitNotInlined ( MacroAssembler masm)
inlinestatic

Definition at line 2305 of file macro-assembler-arm64.h.

2305  {
2306  Label unbound;
2307  Emit(masm, NoReg, &unbound);
2308  }
static void Emit(MacroAssembler *masm, const Register &reg, const Label *smi_check)

References Emit().

Referenced by v8::internal::LCodeGen::CallCodeGeneric().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ HasSmiCheck()

bool v8::internal::InlineSmiCheckInfo::HasSmiCheck ( ) const
inline

Definition at line 2283 of file macro-assembler-arm64.h.

2283  {
2284  return smi_check_ != NULL;
2285  }
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL

References NULL, and smi_check_.

◆ SmiCheck()

Instruction* v8::internal::InlineSmiCheckInfo::SmiCheck ( ) const
inline

Definition at line 2291 of file macro-assembler-arm64.h.

2291  {
2292  return smi_check_;
2293  }

References smi_check_.

◆ SmiRegister()

const Register& v8::internal::InlineSmiCheckInfo::SmiRegister ( ) const
inline

Definition at line 2287 of file macro-assembler-arm64.h.

2287  {
2288  return reg_;
2289  }

References reg_.

Member Data Documentation

◆ reg_

Register v8::internal::InlineSmiCheckInfo::reg_
private

Definition at line 2311 of file macro-assembler-arm64.h.

Referenced by SmiRegister().

◆ smi_check_

Instruction* v8::internal::InlineSmiCheckInfo::smi_check_
private

Definition at line 2312 of file macro-assembler-arm64.h.

Referenced by HasSmiCheck(), and SmiCheck().


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