OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 DCHECK(!recorded_ast_id_.IsNone()); | 1009 DCHECK(!recorded_ast_id_.IsNone()); |
1010 return recorded_ast_id_; | 1010 return recorded_ast_id_; |
1011 } | 1011 } |
1012 | 1012 |
1013 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } | 1013 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } |
1014 | 1014 |
1015 // Record a comment relocation entry that can be used by a disassembler. | 1015 // Record a comment relocation entry that can be used by a disassembler. |
1016 // Use --code-comments to enable. | 1016 // Use --code-comments to enable. |
1017 void RecordComment(const char* msg); | 1017 void RecordComment(const char* msg); |
1018 | 1018 |
| 1019 void RecordDeoptReason(const int reason, const int raw_position); |
| 1020 |
| 1021 |
1019 static int RelocateInternalReference(byte* pc, intptr_t pc_delta); | 1022 static int RelocateInternalReference(byte* pc, intptr_t pc_delta); |
1020 | 1023 |
1021 // Writes a single byte or word of data in the code stream. Used for | 1024 // Writes a single byte or word of data in the code stream. Used for |
1022 // inline tables, e.g., jump-tables. | 1025 // inline tables, e.g., jump-tables. |
1023 void db(uint8_t data); | 1026 void db(uint8_t data); |
1024 void dd(uint32_t data); | 1027 void dd(uint32_t data); |
1025 | 1028 |
1026 // Emits the address of the code stub's first instruction. | 1029 // Emits the address of the code stub's first instruction. |
1027 void emit_code_stub_address(Code* stub); | 1030 void emit_code_stub_address(Code* stub); |
1028 | 1031 |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1374 class EnsureSpace BASE_EMBEDDED { | 1377 class EnsureSpace BASE_EMBEDDED { |
1375 public: | 1378 public: |
1376 explicit EnsureSpace(Assembler* assembler) { | 1379 explicit EnsureSpace(Assembler* assembler) { |
1377 assembler->CheckBuffer(); | 1380 assembler->CheckBuffer(); |
1378 } | 1381 } |
1379 }; | 1382 }; |
1380 | 1383 |
1381 } } // namespace v8::internal | 1384 } } // namespace v8::internal |
1382 | 1385 |
1383 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 1386 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |