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()
172 void BytecodeArrayWriter::BindJumpTableEntry(BytecodeJumpTable* jump_table, in BindJumpTableEntry()
187 void BytecodeArrayWriter::BindHandlerTarget( in BindHandlerTarget()
194 void BytecodeArrayWriter::BindTryRegionStart( in BindTryRegionStart()
203 void BytecodeArrayWriter::BindTryRegionEnd( in BindTryRegionEnd()
212 void BytecodeArrayWriter::SetFunctionEntrySourcePosition(int position) { in SetFunctionEntrySourcePosition()
218 void BytecodeArrayWriter::StartBasicBlock() { in StartBasicBlock()
223 void BytecodeArrayWriter::UpdateSourcePositionTable( in UpdateSourcePositionTable()
234 void BytecodeArrayWriter::UpdateExitSeenInBlock(Bytecode bytecode) { in UpdateExitSeenInBlock()
251 void BytecodeArrayWriter::MaybeElideLastBytecode(Bytecode next_bytecode, in MaybeElideLastBytecode()
273 void BytecodeArrayWriter::InvalidateLastBytecode() { in InvalidateLastBytecode()
277 void BytecodeArrayWriter::EmitBytecode(const BytecodeNode* const node) { in EmitBytecode()
350 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand()
378 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand()
410 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand()
429 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump()
461 void BytecodeArrayWriter::EmitJumpLoop(BytecodeNode* node, in EmitJumpLoop()
482 void BytecodeArrayWriter::EmitJump(BytecodeNode* node, BytecodeLabel* label) { in EmitJump()
515 void BytecodeArrayWriter::EmitSwitch(BytecodeNode* node, in EmitSwitch()