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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 | 1065 |
1066 ExternalReference ExternalReference::isolate_address(Isolate* isolate) { | 1066 ExternalReference ExternalReference::isolate_address(Isolate* isolate) { |
1067 return ExternalReference(isolate); | 1067 return ExternalReference(isolate); |
1068 } | 1068 } |
1069 | 1069 |
1070 ExternalReference ExternalReference::interpreter_dispatch_table_address( | 1070 ExternalReference ExternalReference::interpreter_dispatch_table_address( |
1071 Isolate* isolate) { | 1071 Isolate* isolate) { |
1072 return ExternalReference(isolate->interpreter()->dispatch_table_address()); | 1072 return ExternalReference(isolate->interpreter()->dispatch_table_address()); |
1073 } | 1073 } |
1074 | 1074 |
| 1075 ExternalReference ExternalReference::interpreter_dispatch_counters( |
| 1076 Isolate* isolate) { |
| 1077 return ExternalReference( |
| 1078 isolate->interpreter()->bytecode_dispatch_count_table()); |
| 1079 } |
| 1080 |
1075 ExternalReference::ExternalReference(StatsCounter* counter) | 1081 ExternalReference::ExternalReference(StatsCounter* counter) |
1076 : address_(reinterpret_cast<Address>(counter->GetInternalPointer())) {} | 1082 : address_(reinterpret_cast<Address>(counter->GetInternalPointer())) {} |
1077 | 1083 |
1078 | 1084 |
1079 ExternalReference::ExternalReference(Isolate::AddressId id, Isolate* isolate) | 1085 ExternalReference::ExternalReference(Isolate::AddressId id, Isolate* isolate) |
1080 : address_(isolate->get_address_from_id(id)) {} | 1086 : address_(isolate->get_address_from_id(id)) {} |
1081 | 1087 |
1082 | 1088 |
1083 ExternalReference::ExternalReference(const SCTableReference& table_ref) | 1089 ExternalReference::ExternalReference(const SCTableReference& table_ref) |
1084 : address_(table_ref.address()) {} | 1090 : address_(table_ref.address()) {} |
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2077 | 2083 |
2078 | 2084 |
2079 void Assembler::DataAlign(int m) { | 2085 void Assembler::DataAlign(int m) { |
2080 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); | 2086 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); |
2081 while ((pc_offset() & (m - 1)) != 0) { | 2087 while ((pc_offset() & (m - 1)) != 0) { |
2082 db(0); | 2088 db(0); |
2083 } | 2089 } |
2084 } | 2090 } |
2085 } // namespace internal | 2091 } // namespace internal |
2086 } // namespace v8 | 2092 } // namespace v8 |
OLD | NEW |