Changeset 155159 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Sep 5, 2013, 4:27:41 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r155023 r155159 1007 1007 void printCallOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op, CacheDumpMode, bool& hasPrintedProfiling); 1008 1008 void printPutByIdOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op); 1009 void printLocationAndOp(PrintStream& out, ExecState*, int location, const Instruction*&, const char* op) 1010 { 1011 out.printf("[%4d] %-17s ", location, op); 1012 } 1013 1014 void printLocationOpAndRegisterOperand(PrintStream& out, ExecState* exec, int location, const Instruction*& it, const char* op, int operand) 1015 { 1016 printLocationAndOp(out, exec, location, it, op); 1017 out.printf("%s", registerName(operand).data()); 1018 } 1019 1009 1020 void beginDumpProfiling(PrintStream&, bool& hasPrintedProfiling); 1010 1021 void dumpValueProfiling(PrintStream&, const Instruction*&, bool& hasPrintedProfiling);
Note:
See TracChangeset
for help on using the changeset viewer.