Home
last modified time | relevance | path

Searched refs:bytecode_size (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-compiler.c138 jmem_heap_free_block (re_ctx.bytecode_start_p, re_ctx.bytecode_size); in re_compile_bytecode()
143 const uint32_t final_size = JERRY_ALIGNUP (re_ctx.bytecode_size, JMEM_ALIGNMENT); in re_compile_bytecode()
145 … re_ctx.bytecode_size, in re_compile_bytecode()
Dre-bytecode.c38 re_ctx_p->bytecode_size = initial_size; in re_initialize_regexp_bytecode()
44 return (uint32_t) re_ctx_p->bytecode_size; in re_bytecode_size()
54 const size_t old_size = re_ctx_p->bytecode_size; in re_bytecode_reserve()
57 re_ctx_p->bytecode_size = new_size; in re_bytecode_reserve()
69 const size_t tail_size = re_ctx_p->bytecode_size - offset; in re_bytecode_insert()
Dre-compiler-context.h43 size_t bytecode_size; /**< size of bytecode */ member
/third_party/node/deps/v8/src/compiler/
Dbytecode-liveness-map.h124 BytecodeLivenessMap(int bytecode_size, Zone* zone) in BytecodeLivenessMap() argument
125 : liveness_(zone->NewArray<BytecodeLiveness>(bytecode_size)) in BytecodeLivenessMap()
128 size_(bytecode_size) in BytecodeLivenessMap()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-decoder.cc112 int bytecode_size = Bytecodes::Size(bytecode, operand_scale); in Decode() local
113 for (int i = 0; i < prefix_offset + bytecode_size; i++) { in Decode()
119 for (int i = prefix_offset + bytecode_size; i < kBytecodeColumnSize; i++) { in Decode()
Dbytecode-array-writer.cc46 int bytecode_size = static_cast<int>(bytecodes()->size()); in ToBytecodeArray() local
51 bytecode_size, &bytecodes()->front(), frame_size, parameter_count, in ToBytecodeArray()
87 int bytecode_size = static_cast<int>(bytecodes()->size()); in CheckBytecodeMatches() local
89 if (bytecode_size != bytecode.length()) mismatches = true; in CheckBytecodeMatches()
93 int first_mismatch = std::min(bytecode_size, bytecode.length()); in CheckBytecodeMatches()
Dbytecodes.cc138 int bytecode_size = Size(bytecode, OperandScale::kSingle); in GetDebugBreak() local
140 if (bytecode_size == Size(Bytecode::k##Name, OperandScale::kSingle)) { \ in GetDebugBreak()
/third_party/node/deps/v8/src/execution/
Dtiering-manager.cc258 bool ShouldOptimizeAsSmallFunction(int bytecode_size, bool any_ic_changed) { in ShouldOptimizeAsSmallFunction() argument
260 bytecode_size < FLAG_max_bytecode_size_for_early_opt; in ShouldOptimizeAsSmallFunction()