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