Chromium Code Reviews| Index: src/interpreter/bytecodes.h |
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
| index 36041cb97e5bc59b27a5be846787275ef2844395..b32577e54cd4bad2755771423188dbbf3d1479e1 100644 |
| --- a/src/interpreter/bytecodes.h |
| +++ b/src/interpreter/bytecodes.h |
| @@ -622,6 +622,10 @@ class Bytecodes { |
| // Returns true if |operand_type| represents a register used as an output. |
| static bool IsRegisterOutputOperandType(OperandType operand_type); |
| + // Returns true if the handler should look ahead and inline a |
|
oth
2016/07/15 15:30:51
s/handler/handler for |bytecode|/
klaasb
2016/07/15 18:01:24
Done.
|
| + // dispatch to a Star bytecode |
|
oth
2016/07/15 15:30:51
s/bytecode/bytecode./
klaasb
2016/07/15 18:01:24
Done.
|
| + static bool IsStarLookahead(Bytecode bytecode, OperandScale operand_scale); |
| + |
| // Returns the number of registers represented by a register operand. For |
| // instance, a RegPair represents two registers. |
| static int GetNumberOfRegistersRepresentedBy(OperandType operand_type); |