Home | History | Annotate | Download | only in dfg

Lines Matching refs:CodeBlock

29 #include "CodeBlock.h"
44 void Graph::dump(NodeIndex nodeIndex, CodeBlock* codeBlock)
70 // $# - the index in the CodeBlock of a constant { for numeric constants the value is displayed | for integers, in both decimal and hex }.
71 // id# - the index in the CodeBlock of an identifier { if codeBlock is passed to dump(), the string representation is displayed }.
87 if (codeBlock)
88 printf("%sid%u{%s}", hasPrinted ? ", " : "", node.identifierNumber(), codeBlock->identifier(node.identifierNumber()).ustring().utf8().data());
96 printf("%sarg%u", hasPrinted ? ", " : "", local - codeBlock->thisRegister());
125 void Graph::dump(CodeBlock* codeBlock)
131 dump(i, codeBlock);