Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/assembler.cc

Issue 1899133004: [Interpreter] Add Ignition statistics JavaScript extension. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | src/bootstrapper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
2081 2081
2082 2082
2083 void Assembler::DataAlign(int m) { 2083 void Assembler::DataAlign(int m) {
2084 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); 2084 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m));
2085 while ((pc_offset() & (m - 1)) != 0) { 2085 while ((pc_offset() & (m - 1)) != 0) {
2086 db(0); 2086 db(0);
2087 } 2087 }
2088 } 2088 }
2089 } // namespace internal 2089 } // namespace internal
2090 } // namespace v8 2090 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/bootstrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698