| 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 4529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4540 ACCESSORS(SharedFunctionInfo, optimized_code_map, Object, | 4540 ACCESSORS(SharedFunctionInfo, optimized_code_map, Object, |
| 4541 kOptimizedCodeMapOffset) | 4541 kOptimizedCodeMapOffset) |
| 4542 ACCESSORS(SharedFunctionInfo, construct_stub, Code, kConstructStubOffset) | 4542 ACCESSORS(SharedFunctionInfo, construct_stub, Code, kConstructStubOffset) |
| 4543 ACCESSORS(SharedFunctionInfo, initial_map, Object, kInitialMapOffset) | 4543 ACCESSORS(SharedFunctionInfo, initial_map, Object, kInitialMapOffset) |
| 4544 ACCESSORS(SharedFunctionInfo, instance_class_name, Object, | 4544 ACCESSORS(SharedFunctionInfo, instance_class_name, Object, |
| 4545 kInstanceClassNameOffset) | 4545 kInstanceClassNameOffset) |
| 4546 ACCESSORS(SharedFunctionInfo, function_data, Object, kFunctionDataOffset) | 4546 ACCESSORS(SharedFunctionInfo, function_data, Object, kFunctionDataOffset) |
| 4547 ACCESSORS(SharedFunctionInfo, script, Object, kScriptOffset) | 4547 ACCESSORS(SharedFunctionInfo, script, Object, kScriptOffset) |
| 4548 ACCESSORS(SharedFunctionInfo, debug_info, Object, kDebugInfoOffset) | 4548 ACCESSORS(SharedFunctionInfo, debug_info, Object, kDebugInfoOffset) |
| 4549 ACCESSORS(SharedFunctionInfo, inferred_name, String, kInferredNameOffset) | 4549 ACCESSORS(SharedFunctionInfo, inferred_name, String, kInferredNameOffset) |
| 4550 ACCESSORS(SharedFunctionInfo, bailout_reason, String, kBailoutReasonOffset) |
| 4550 SMI_ACCESSORS(SharedFunctionInfo, ast_node_count, kAstNodeCountOffset) | 4551 SMI_ACCESSORS(SharedFunctionInfo, ast_node_count, kAstNodeCountOffset) |
| 4551 | 4552 |
| 4552 | 4553 |
| 4553 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset) | 4554 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset) |
| 4554 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, | 4555 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, |
| 4555 kHiddenPrototypeBit) | 4556 kHiddenPrototypeBit) |
| 4556 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) | 4557 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) |
| 4557 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, | 4558 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, |
| 4558 kNeedsAccessCheckBit) | 4559 kNeedsAccessCheckBit) |
| 4559 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype, | 4560 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype, |
| (...skipping 1682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6242 #undef WRITE_UINT32_FIELD | 6243 #undef WRITE_UINT32_FIELD |
| 6243 #undef READ_SHORT_FIELD | 6244 #undef READ_SHORT_FIELD |
| 6244 #undef WRITE_SHORT_FIELD | 6245 #undef WRITE_SHORT_FIELD |
| 6245 #undef READ_BYTE_FIELD | 6246 #undef READ_BYTE_FIELD |
| 6246 #undef WRITE_BYTE_FIELD | 6247 #undef WRITE_BYTE_FIELD |
| 6247 | 6248 |
| 6248 | 6249 |
| 6249 } } // namespace v8::internal | 6250 } } // namespace v8::internal |
| 6250 | 6251 |
| 6251 #endif // V8_OBJECTS_INL_H_ | 6252 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |