| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 return pc_and_deoptimization_indexes_ + | 144 return pc_and_deoptimization_indexes_ + |
| 145 (index * kPcAndDeoptimizationIndexSize); | 145 (index * kPcAndDeoptimizationIndexSize); |
| 146 } | 146 } |
| 147 | 147 |
| 148 Address GetInfoLocation(unsigned index) const { | 148 Address GetInfoLocation(unsigned index) const { |
| 149 return GetPcOffsetLocation(index) + kPcSize; | 149 return GetPcOffsetLocation(index) + kPcSize; |
| 150 } | 150 } |
| 151 | 151 |
| 152 static void PrintBits(uint8_t byte, int digits); | 152 static void PrintBits(uint8_t byte, int digits); |
| 153 | 153 |
| 154 AssertNoAllocation no_allocation_; | 154 DisallowHeapAllocation no_allocation_; |
| 155 Code* code_; | 155 Code* code_; |
| 156 unsigned length_; | 156 unsigned length_; |
| 157 unsigned entry_size_; | 157 unsigned entry_size_; |
| 158 | 158 |
| 159 Address pc_and_deoptimization_indexes_; | 159 Address pc_and_deoptimization_indexes_; |
| 160 Address entries_; | 160 Address entries_; |
| 161 | 161 |
| 162 friend class SafepointTableBuilder; | 162 friend class SafepointTableBuilder; |
| 163 friend class SafepointEntry; | 163 friend class SafepointEntry; |
| 164 | 164 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 int last_lazy_safepoint_; | 244 int last_lazy_safepoint_; |
| 245 | 245 |
| 246 Zone* zone_; | 246 Zone* zone_; |
| 247 | 247 |
| 248 DISALLOW_COPY_AND_ASSIGN(SafepointTableBuilder); | 248 DISALLOW_COPY_AND_ASSIGN(SafepointTableBuilder); |
| 249 }; | 249 }; |
| 250 | 250 |
| 251 } } // namespace v8::internal | 251 } } // namespace v8::internal |
| 252 | 252 |
| 253 #endif // V8_SAFEPOINT_TABLE_H_ | 253 #endif // V8_SAFEPOINT_TABLE_H_ |
| OLD | NEW |