| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 4551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4562 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset) | 4562 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset) |
| 4563 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, | 4563 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, |
| 4564 kHiddenPrototypeBit) | 4564 kHiddenPrototypeBit) |
| 4565 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) | 4565 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) |
| 4566 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, | 4566 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, |
| 4567 kNeedsAccessCheckBit) | 4567 kNeedsAccessCheckBit) |
| 4568 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype, | 4568 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype, |
| 4569 kReadOnlyPrototypeBit) | 4569 kReadOnlyPrototypeBit) |
| 4570 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype, | 4570 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype, |
| 4571 kRemovePrototypeBit) | 4571 kRemovePrototypeBit) |
| 4572 BOOL_ACCESSORS(FunctionTemplateInfo, flag, do_not_cache, |
| 4573 kDoNotCacheBit) |
| 4572 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, | 4574 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, |
| 4573 kIsExpressionBit) | 4575 kIsExpressionBit) |
| 4574 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, | 4576 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, |
| 4575 kIsTopLevelBit) | 4577 kIsTopLevelBit) |
| 4576 | 4578 |
| 4577 BOOL_ACCESSORS(SharedFunctionInfo, | 4579 BOOL_ACCESSORS(SharedFunctionInfo, |
| 4578 compiler_hints, | 4580 compiler_hints, |
| 4579 allows_lazy_compilation, | 4581 allows_lazy_compilation, |
| 4580 kAllowLazyCompilation) | 4582 kAllowLazyCompilation) |
| 4581 BOOL_ACCESSORS(SharedFunctionInfo, | 4583 BOOL_ACCESSORS(SharedFunctionInfo, |
| (...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6298 #undef WRITE_UINT32_FIELD | 6300 #undef WRITE_UINT32_FIELD |
| 6299 #undef READ_SHORT_FIELD | 6301 #undef READ_SHORT_FIELD |
| 6300 #undef WRITE_SHORT_FIELD | 6302 #undef WRITE_SHORT_FIELD |
| 6301 #undef READ_BYTE_FIELD | 6303 #undef READ_BYTE_FIELD |
| 6302 #undef WRITE_BYTE_FIELD | 6304 #undef WRITE_BYTE_FIELD |
| 6303 | 6305 |
| 6304 | 6306 |
| 6305 } } // namespace v8::internal | 6307 } } // namespace v8::internal |
| 6306 | 6308 |
| 6307 #endif // V8_OBJECTS_INL_H_ | 6309 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |