Lines Matching refs:BytecodeNode
14 BytecodeNode::BytecodeNode(Bytecode bytecode) { in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
19 BytecodeNode::BytecodeNode(Bytecode bytecode, uint32_t operand0) { in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
25 BytecodeNode::BytecodeNode(Bytecode bytecode, uint32_t operand0, in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
33 BytecodeNode::BytecodeNode(Bytecode bytecode, uint32_t operand0, in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
42 BytecodeNode::BytecodeNode(Bytecode bytecode, uint32_t operand0, in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
53 BytecodeNode::BytecodeNode(const BytecodeNode& other) { in BytecodeNode() function in v8::internal::interpreter::BytecodeNode
57 BytecodeNode& BytecodeNode::operator=(const BytecodeNode& other) { in operator =()
62 void BytecodeNode::set_bytecode(Bytecode bytecode) { in set_bytecode()
67 void BytecodeNode::set_bytecode(Bytecode bytecode, uint32_t operand0) { in set_bytecode()
73 void BytecodeNode::Clone(const BytecodeNode* const other) { in Clone()
77 void BytecodeNode::Print(std::ostream& os) const { in Print()
97 void BytecodeNode::Transform(Bytecode new_bytecode, uint32_t extra_operand) { in Transform()
114 bool BytecodeNode::operator==(const BytecodeNode& other) const { in operator ==()
138 std::ostream& operator<<(std::ostream& os, const BytecodeNode& node) { in operator <<()