Lines Matching refs:BytecodeArrayWriter
16 BytecodeArrayWriter::BytecodeArrayWriter( in BytecodeArrayWriter() function in v8::internal::interpreter::BytecodeArrayWriter
29 BytecodeArrayWriter::~BytecodeArrayWriter() {} in ~BytecodeArrayWriter()
32 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( in ToBytecodeArray()
60 void BytecodeArrayWriter::Write(BytecodeNode* node) { in Write()
67 void BytecodeArrayWriter::WriteJump(BytecodeNode* node, BytecodeLabel* label) { in WriteJump()
74 void BytecodeArrayWriter::BindLabel(BytecodeLabel* label) { in BindLabel()
85 void BytecodeArrayWriter::BindLabel(const BytecodeLabel& target, in BindLabel()
97 void BytecodeArrayWriter::UpdateSourcePositionTable( in UpdateSourcePositionTable()
162 void BytecodeArrayWriter::EmitBytecode(const BytecodeNode* const node) { in EmitBytecode()
242 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand()
268 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand()
290 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand()
308 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump()
340 void BytecodeArrayWriter::EmitJump(BytecodeNode* node, BytecodeLabel* label) { in EmitJump()