Changeset 136372 in webkit for trunk/Source/JavaScriptCore/dfg/DFGNodeFlags.h
- Timestamp:
- Dec 3, 2012, 1:21:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGNodeFlags.h
r134168 r136372 53 53 #define NodeMayNegZero 0x200 54 54 55 #define NodeBackPropMask 0x 3C0056 #define NodeUseBottom 0x00055 #define NodeBackPropMask 0x7C00 56 #define NodeUseBottom 0x0000 57 57 #define NodeUsedAsNumber 0x400 // The result of this computation may be used in a context that observes fractional results. 58 58 #define NodeNeedsNegZero 0x800 // The result of this computation may be used in a context that observes -0. … … 60 60 #define NodeUsedAsValue (NodeUsedAsNumber | NodeNeedsNegZero | NodeUsedAsOther) 61 61 #define NodeUsedAsInt 0x2000 // The result of this computation is known to be used in a context that prefers, but does not require, integer values. 62 #define NodeUsedAsIntLocally 0x4000 // Same as NodeUsedAsInt, but within the same basic block. 62 63 63 #define NodeDoesNotExit 0x 4000 // This flag is negated to make it natural for the default to be that a node does exit.64 #define NodeDoesNotExit 0x8000 // This flag is negated to make it natural for the default to be that a node does exit. 64 65 65 66 typedef uint16_t NodeFlags;
Note:
See TracChangeset
for help on using the changeset viewer.