Changeset 174296 in webkit for trunk/Source/JavaScriptCore/bytecode/OperandsInlines.h
- Timestamp:
- Oct 3, 2014, 3:05:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/OperandsInlines.h
r174275 r174296 48 48 } 49 49 50 template<typename T, typename Traits>51 void Operands<T, Traits>::dump(PrintStream& out) const52 {53 CommaPrinter comma(" ");54 for (size_t argumentIndex = numberOfArguments(); argumentIndex--;) {55 if (Traits::isEmptyForDump(argument(argumentIndex)))56 continue;57 out.print(comma, "arg", argumentIndex, ":", argument(argumentIndex));58 }59 for (size_t localIndex = 0; localIndex < numberOfLocals(); ++localIndex) {60 if (Traits::isEmptyForDump(local(localIndex)))61 continue;62 out.print(comma, "loc", localIndex, ":", local(localIndex));63 }64 }65 66 50 } // namespace JSC 67 51
Note:
See TracChangeset
for help on using the changeset viewer.