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