Home | History | Annotate | Download | only in dfg

Lines Matching refs:OpInfo

130         getNode = addToGraph(GetLocal, OpInfo(operand));
137 m_variables[operand].set = addToGraph(SetLocal, OpInfo(operand), value);
172 getNode = addToGraph(GetLocal, OpInfo(operand));
182 m_arguments[argument].set = addToGraph(SetLocal, OpInfo(operand), value);
286 NodeIndex resultIndex = addToGraph(Int32Constant, OpInfo(constant));
296 NodeIndex resultIndex = addToGraph(DoubleConstant, OpInfo(constant));
307 NodeIndex resultIndex = addToGraph(JSConstant, OpInfo(constant));
441 NodeIndex addToGraph(NodeType op, OpInfo info, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
450 NodeIndex addToGraph(NodeType op, OpInfo info1, OpInfo info2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
550 addToGraph(Jump, OpInfo(m_currentIndex));
835 NodeIndex getById = addToGraph(GetById, OpInfo(identifier), base);
849 NodeIndex putByIdDirect = addToGraph(PutByIdDirect, OpInfo(identifier), base, value);
852 NodeIndex putById = addToGraph(PutById, OpInfo(identifier), base, value);
860 NodeIndex getGlobalVar = addToGraph(GetGlobalVar, OpInfo(currentInstruction[2].u.operand));
867 addToGraph(PutGlobalVar, OpInfo(currentInstruction[1].u.operand), value);
875 addToGraph(Jump, OpInfo(m_currentIndex + relativeOffset));
881 addToGraph(Jump, OpInfo(m_currentIndex + relativeOffset));
888 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_jtrue)), condition);
895 addToGraph(Branch, OpInfo(m_currentIndex + OPCODE_LENGTH(op_jfalse)), OpInfo(m_currentIndex + relativeOffset), condition);
902 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_loop_if_true)), condition);
909 addToGraph(Branch, OpInfo(m_currentIndex + OPCODE_LENGTH(op_loop_if_false)), OpInfo(m_currentIndex + relativeOffset), condition);
917 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_jeq_null)), condition);
925 addToGraph(Branch, OpInfo(m_currentIndex + OPCODE_LENGTH(op_jneq_null)), OpInfo(m_currentIndex + relativeOffset), condition);
934 addToGraph(Branch, OpInfo(m_currentIndex + OPCODE_LENGTH(op_jnless)), OpInfo(m_currentIndex + relativeOffset), condition);
943 addToGraph(Branch, OpInfo(m_currentIndex + OPCODE_LENGTH(op_jnlesseq)), OpInfo(m_currentIndex + relativeOffset), condition);
952 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_jless)), condition);
961 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_jlesseq)), condition);
970 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_loop_if_less)), condition);
979 addToGraph(Branch, OpInfo(m_currentIndex + relativeOffset), OpInfo(m_currentIndex + OPCODE_LENGTH(op_loop_if_lesseq)), condition);