Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
v8::ScriptCompiler::CachedData Struct Reference

#include <v8-script.h>

Public Types

enum  BufferPolicy { BufferNotOwned , BufferOwned }
 
enum  CompatibilityCheckResult {
  kSuccess = 0 , kMagicNumberMismatch = 1 , kVersionMismatch = 2 , kSourceMismatch = 3 ,
  kFlagsMismatch = 5 , kChecksumMismatch = 6 , kInvalidHeader = 7 , kLengthMismatch = 8 ,
  kReadOnlySnapshotChecksumMismatch = 9 , kLast = kReadOnlySnapshotChecksumMismatch
}
 

Public Member Functions

 CachedData ()
 
 CachedData (const uint8_t *data, int length, BufferPolicy buffer_policy=BufferNotOwned)
 
 ~CachedData ()
 
CompatibilityCheckResult CompatibilityCheck (Isolate *isolate)
 
 CachedData (const CachedData &)=delete
 
CachedDataoperator= (const CachedData &)=delete
 

Public Attributes

const uint8_t * data
 
int length
 
bool rejected
 
BufferPolicy buffer_policy
 

Detailed Description

Compilation data that the embedder can cache and pass back to speed up future compilations. The data is produced if the CompilerOptions passed to the compilation functions in ScriptCompiler contains produce_data_to_cache = true. The data to cache can then can be retrieved from UnboundScript.

Member Enumeration Documentation

◆ BufferPolicy

Enumerator
BufferNotOwned 
BufferOwned 

◆ CompatibilityCheckResult

Enumerator
kSuccess 
kMagicNumberMismatch 
kVersionMismatch 
kSourceMismatch 
kFlagsMismatch 
kChecksumMismatch 
kInvalidHeader 
kLengthMismatch 
kReadOnlySnapshotChecksumMismatch 
kLast 

Constructor & Destructor Documentation

◆ CachedData() [1/3]

v8::ScriptCompiler::CachedData::CachedData ( )
inline

◆ CachedData() [2/3]

v8::ScriptCompiler::CachedData::CachedData ( const uint8_t *  data,
int  length,
BufferPolicy  buffer_policy = BufferNotOwned 
)

◆ ~CachedData()

v8::ScriptCompiler::CachedData::~CachedData ( )

◆ CachedData() [3/3]

v8::ScriptCompiler::CachedData::CachedData ( const CachedData )
delete

Member Function Documentation

◆ CompatibilityCheck()

CompatibilityCheckResult v8::ScriptCompiler::CachedData::CompatibilityCheck ( Isolate isolate)

◆ operator=()

CachedData & v8::ScriptCompiler::CachedData::operator= ( const CachedData )
delete

Member Data Documentation

◆ buffer_policy

BufferPolicy v8::ScriptCompiler::CachedData::buffer_policy

◆ data

const uint8_t* v8::ScriptCompiler::CachedData::data

◆ length

int v8::ScriptCompiler::CachedData::length

◆ rejected

bool v8::ScriptCompiler::CachedData::rejected

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