Searched refs:bytecode_size (Results 1 – 8 of 8) sorted by relevance
| /third_party/jerryscript/jerry-core/parser/regexp/ |
| D | re-compiler.c | 138 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()
|
| D | re-bytecode.c | 38 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()
|
| D | re-compiler-context.h | 43 size_t bytecode_size; /**< size of bytecode */ member
|
| /third_party/node/deps/v8/src/compiler/ |
| D | bytecode-liveness-map.h | 124 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/ |
| D | bytecode-decoder.cc | 112 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()
|
| D | bytecode-array-writer.cc | 46 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()
|
| D | bytecodes.cc | 138 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/ |
| D | tiering-manager.cc | 258 bool ShouldOptimizeAsSmallFunction(int bytecode_size, bool any_ic_changed) { in ShouldOptimizeAsSmallFunction() argument 260 bytecode_size < FLAG_max_bytecode_size_for_early_opt; in ShouldOptimizeAsSmallFunction()
|