Changeset 172801 in webkit for trunk/Source/JavaScriptCore/bytecode
- Timestamp:
- Aug 20, 2014, 11:11:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeOrigin.h
r171946 r172801 161 161 BitVector capturedVars; // Indexed by the machine call frame's variable numbering. 162 162 signed stackOffset : 30; 163 Kind kind : 2;163 unsigned kind : 2; // real type is Kind 164 164 bool isClosureCall : 1; // If false then we know that callee/scope are constants and the DFG won't treat them as variables, i.e. they have to be recovered manually. 165 165 VirtualRegister argumentsRegister; // This is only set if the code uses arguments. The unmodified arguments register follows the unmodifiedArgumentsRegister() convention (see CodeBlock.h). … … 175 175 } 176 176 177 CodeSpecializationKind specializationKind() const { return specializationKindFor( kind); }177 CodeSpecializationKind specializationKind() const { return specializationKindFor(static_cast<Kind>(kind)); } 178 178 179 179 JSFunction* calleeConstant() const
Note:
See TracChangeset
for help on using the changeset viewer.