| Index: src/codegen.h
|
| ===================================================================
|
| --- src/codegen.h (revision 4215)
|
| +++ src/codegen.h (working copy)
|
| @@ -58,7 +58,7 @@
|
| // ProcessDeferred
|
| // Generate
|
| // ComputeLazyCompile
|
| -// BuildBoilerplate
|
| +// BuildFunctionInfo
|
| // ComputeCallInitialize
|
| // ComputeCallInitializeInLoop
|
| // ProcessDeclarations
|
| @@ -361,6 +361,11 @@
|
| // stubs.
|
| bool never_nan_nan_;
|
|
|
| + // Encoding of the minor key CCCCCCCCCCCCCCNS.
|
| + class StrictField: public BitField<bool, 0, 1> {};
|
| + class NeverNanNanField: public BitField<bool, 1, 1> {};
|
| + class ConditionField: public BitField<int, 2, 14> {};
|
| +
|
| Major MajorKey() { return Compare; }
|
|
|
| int MinorKey();
|
|
|