Lines Matching refs:BytecodeArrayWriter
23 BytecodeArrayWriter::kMaxSizeOfPackedBytecode;
25 BytecodeArrayWriter::BytecodeArrayWriter( in BytecodeArrayWriter() function in v8::internal::interpreter::BytecodeArrayWriter
41 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( in ToBytecodeArray()
58 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray(
62 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray(
67 Handle<ByteArray> BytecodeArrayWriter::ToSourcePositionTable( in ToSourcePositionTable()
78 Handle<ByteArray> BytecodeArrayWriter::ToSourcePositionTable(
81 Handle<ByteArray> BytecodeArrayWriter::ToSourcePositionTable(
85 int BytecodeArrayWriter::CheckBytecodeMatches(BytecodeArray bytecode) { in CheckBytecodeMatches()
109 void BytecodeArrayWriter::Write(BytecodeNode* node) { in Write()
120 void BytecodeArrayWriter::WriteJump(BytecodeNode* node, BytecodeLabel* label) { in WriteJump()
131 void BytecodeArrayWriter::WriteJumpLoop(BytecodeNode* node, in WriteJumpLoop()
143 void BytecodeArrayWriter::WriteSwitch(BytecodeNode* node, in WriteSwitch()
155 void BytecodeArrayWriter::BindLabel(BytecodeLabel* label) { in BindLabel()
164 void BytecodeArrayWriter::BindLoopHeader(BytecodeLoopHeader* loop_header) { in BindLoopHeader()
170 void BytecodeArrayWriter::BindJumpTableEntry(BytecodeJumpTable* jump_table, in BindJumpTableEntry()
185 void BytecodeArrayWriter::BindHandlerTarget( in BindHandlerTarget()
192 void BytecodeArrayWriter::BindTryRegionStart( in BindTryRegionStart()
201 void BytecodeArrayWriter::BindTryRegionEnd( in BindTryRegionEnd()
210 void BytecodeArrayWriter::SetFunctionEntrySourcePosition(int position) { in SetFunctionEntrySourcePosition()
216 void BytecodeArrayWriter::StartBasicBlock() { in StartBasicBlock()
221 void BytecodeArrayWriter::UpdateSourcePositionTable( in UpdateSourcePositionTable()
232 void BytecodeArrayWriter::UpdateExitSeenInBlock(Bytecode bytecode) { in UpdateExitSeenInBlock()
248 void BytecodeArrayWriter::MaybeElideLastBytecode(Bytecode next_bytecode, in MaybeElideLastBytecode()
269 void BytecodeArrayWriter::InvalidateLastBytecode() { in InvalidateLastBytecode()
273 void BytecodeArrayWriter::EmitBytecode(const BytecodeNode* const node) { in EmitBytecode()
347 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand()
375 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand()
407 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand()
426 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump()
458 void BytecodeArrayWriter::EmitJumpLoop(BytecodeNode* node, in EmitJumpLoop()
479 void BytecodeArrayWriter::EmitJump(BytecodeNode* node, BytecodeLabel* label) { in EmitJump()
512 void BytecodeArrayWriter::EmitSwitch(BytecodeNode* node, in EmitSwitch()