Lines Matching refs:BytecodeArrayWriter
18 BytecodeArrayWriter::kMaxSizeOfPackedBytecode;
20 BytecodeArrayWriter::BytecodeArrayWriter( in BytecodeArrayWriter() function in v8::internal::interpreter::BytecodeArrayWriter
31 BytecodeArrayWriter::~BytecodeArrayWriter() {} in ~BytecodeArrayWriter()
34 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( in ToBytecodeArray()
55 void BytecodeArrayWriter::Write(BytecodeNode* node) { in Write()
62 void BytecodeArrayWriter::WriteJump(BytecodeNode* node, BytecodeLabel* label) { in WriteJump()
69 void BytecodeArrayWriter::BindLabel(BytecodeLabel* label) { in BindLabel()
80 void BytecodeArrayWriter::BindLabel(const BytecodeLabel& target, in BindLabel()
92 void BytecodeArrayWriter::UpdateSourcePositionTable( in UpdateSourcePositionTable()
103 void BytecodeArrayWriter::EmitBytecode(const BytecodeNode* const node) { in EmitBytecode()
172 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand()
197 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand()
224 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand()
242 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump()
274 void BytecodeArrayWriter::EmitJump(BytecodeNode* node, BytecodeLabel* label) { in EmitJump()