| 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 4990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5001 void Disassemble(const char* name, FILE* out = stdout); | 5001 void Disassemble(const char* name, FILE* out = stdout); |
| 5002 #endif // ENABLE_DISASSEMBLER | 5002 #endif // ENABLE_DISASSEMBLER |
| 5003 | 5003 |
| 5004 // [instruction_size]: Size of the native instructions | 5004 // [instruction_size]: Size of the native instructions |
| 5005 inline int instruction_size(); | 5005 inline int instruction_size(); |
| 5006 inline void set_instruction_size(int value); | 5006 inline void set_instruction_size(int value); |
| 5007 | 5007 |
| 5008 // [relocation_info]: Code relocation information | 5008 // [relocation_info]: Code relocation information |
| 5009 DECL_ACCESSORS(relocation_info, ByteArray) | 5009 DECL_ACCESSORS(relocation_info, ByteArray) |
| 5010 void InvalidateRelocation(); | 5010 void InvalidateRelocation(); |
| 5011 void InvalidateEmbeddedObjects(); |
| 5011 | 5012 |
| 5012 // [handler_table]: Fixed array containing offsets of exception handlers. | 5013 // [handler_table]: Fixed array containing offsets of exception handlers. |
| 5013 DECL_ACCESSORS(handler_table, FixedArray) | 5014 DECL_ACCESSORS(handler_table, FixedArray) |
| 5014 | 5015 |
| 5015 // [deoptimization_data]: Array containing data for deopt. | 5016 // [deoptimization_data]: Array containing data for deopt. |
| 5016 DECL_ACCESSORS(deoptimization_data, FixedArray) | 5017 DECL_ACCESSORS(deoptimization_data, FixedArray) |
| 5017 | 5018 |
| 5018 // [type_feedback_info]: This field stores various things, depending on the | 5019 // [type_feedback_info]: This field stores various things, depending on the |
| 5019 // kind of the code object. | 5020 // kind of the code object. |
| 5020 // FUNCTION => type feedback information. | 5021 // FUNCTION => type feedback information. |
| (...skipping 5419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10440 } else { | 10441 } else { |
| 10441 value &= ~(1 << bit_position); | 10442 value &= ~(1 << bit_position); |
| 10442 } | 10443 } |
| 10443 return value; | 10444 return value; |
| 10444 } | 10445 } |
| 10445 }; | 10446 }; |
| 10446 | 10447 |
| 10447 } } // namespace v8::internal | 10448 } } // namespace v8::internal |
| 10448 | 10449 |
| 10449 #endif // V8_OBJECTS_H_ | 10450 #endif // V8_OBJECTS_H_ |
| OLD | NEW |