| 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 3062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3073 | 3073 |
| 3074 | 3074 |
| 3075 void Code::set_allow_osr_at_loop_nesting_level(int level) { | 3075 void Code::set_allow_osr_at_loop_nesting_level(int level) { |
| 3076 ASSERT_EQ(FUNCTION, kind()); | 3076 ASSERT_EQ(FUNCTION, kind()); |
| 3077 ASSERT(level >= 0 && level <= kMaxLoopNestingMarker); | 3077 ASSERT(level >= 0 && level <= kMaxLoopNestingMarker); |
| 3078 WRITE_BYTE_FIELD(this, kAllowOSRAtLoopNestingLevelOffset, level); | 3078 WRITE_BYTE_FIELD(this, kAllowOSRAtLoopNestingLevelOffset, level); |
| 3079 } | 3079 } |
| 3080 | 3080 |
| 3081 | 3081 |
| 3082 int Code::profiler_ticks() { | 3082 int Code::profiler_ticks() { |
| 3083 if (kind() == OPTIMIZED_FUNCTION) return 0; |
| 3083 ASSERT_EQ(FUNCTION, kind()); | 3084 ASSERT_EQ(FUNCTION, kind()); |
| 3084 return READ_BYTE_FIELD(this, kProfilerTicksOffset); | 3085 return READ_BYTE_FIELD(this, kProfilerTicksOffset); |
| 3085 } | 3086 } |
| 3086 | 3087 |
| 3087 | 3088 |
| 3088 void Code::set_profiler_ticks(int ticks) { | 3089 void Code::set_profiler_ticks(int ticks) { |
| 3089 ASSERT_EQ(FUNCTION, kind()); | 3090 ASSERT_EQ(FUNCTION, kind()); |
| 3090 ASSERT(ticks < 256); | 3091 ASSERT(ticks < 256); |
| 3091 WRITE_BYTE_FIELD(this, kProfilerTicksOffset, ticks); | 3092 WRITE_BYTE_FIELD(this, kProfilerTicksOffset, ticks); |
| 3092 } | 3093 } |
| (...skipping 1849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4942 #undef WRITE_UINT32_FIELD | 4943 #undef WRITE_UINT32_FIELD |
| 4943 #undef READ_SHORT_FIELD | 4944 #undef READ_SHORT_FIELD |
| 4944 #undef WRITE_SHORT_FIELD | 4945 #undef WRITE_SHORT_FIELD |
| 4945 #undef READ_BYTE_FIELD | 4946 #undef READ_BYTE_FIELD |
| 4946 #undef WRITE_BYTE_FIELD | 4947 #undef WRITE_BYTE_FIELD |
| 4947 | 4948 |
| 4948 | 4949 |
| 4949 } } // namespace v8::internal | 4950 } } // namespace v8::internal |
| 4950 | 4951 |
| 4951 #endif // V8_OBJECTS_INL_H_ | 4952 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |