OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 2462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2473 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, | 2473 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, |
2474 kHiddenPrototypeBit) | 2474 kHiddenPrototypeBit) |
2475 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) | 2475 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) |
2476 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, | 2476 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, |
2477 kNeedsAccessCheckBit) | 2477 kNeedsAccessCheckBit) |
2478 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, | 2478 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, |
2479 kIsExpressionBit) | 2479 kIsExpressionBit) |
2480 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, | 2480 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, |
2481 kIsTopLevelBit) | 2481 kIsTopLevelBit) |
2482 BOOL_GETTER(SharedFunctionInfo, compiler_hints, | 2482 BOOL_GETTER(SharedFunctionInfo, compiler_hints, |
2483 has_only_this_property_assignments, | |
2484 kHasOnlyThisPropertyAssignments) | |
2485 BOOL_GETTER(SharedFunctionInfo, compiler_hints, | |
2486 has_only_simple_this_property_assignments, | 2483 has_only_simple_this_property_assignments, |
2487 kHasOnlySimpleThisPropertyAssignments) | 2484 kHasOnlySimpleThisPropertyAssignments) |
2488 BOOL_ACCESSORS(SharedFunctionInfo, | 2485 BOOL_ACCESSORS(SharedFunctionInfo, |
2489 compiler_hints, | 2486 compiler_hints, |
2490 try_fast_codegen, | 2487 try_fast_codegen, |
2491 kTryFastCodegen) | 2488 kTryFastCodegen) |
2492 | 2489 |
2493 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) | 2490 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) |
2494 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count, | 2491 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count, |
2495 kFormalParameterCountOffset) | 2492 kFormalParameterCountOffset) |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3102 #undef WRITE_INT_FIELD | 3099 #undef WRITE_INT_FIELD |
3103 #undef READ_SHORT_FIELD | 3100 #undef READ_SHORT_FIELD |
3104 #undef WRITE_SHORT_FIELD | 3101 #undef WRITE_SHORT_FIELD |
3105 #undef READ_BYTE_FIELD | 3102 #undef READ_BYTE_FIELD |
3106 #undef WRITE_BYTE_FIELD | 3103 #undef WRITE_BYTE_FIELD |
3107 | 3104 |
3108 | 3105 |
3109 } } // namespace v8::internal | 3106 } } // namespace v8::internal |
3110 | 3107 |
3111 #endif // V8_OBJECTS_INL_H_ | 3108 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |