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

Unified Diff: src/base/cpu.h

Issue 853703002: [x86] Avoid memory form of PUSH/CALL for ATOM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove the CALL change to ia32 Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/base/cpu.cc » ('j') | src/x64/assembler-x64.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/cpu.h
diff --git a/src/base/cpu.h b/src/base/cpu.h
index 8c41f9d77a776739d5643bf317e6c3c6233a5a0e..6a3afaf842ea954f1bc6d1becff4fdec84d6b6e2 100644
--- a/src/base/cpu.h
+++ b/src/base/cpu.h
@@ -40,6 +40,7 @@ class CPU FINAL {
int family() const { return family_; }
int ext_family() const { return ext_family_; }
int type() const { return type_; }
+ bool is_atom() const { return is_atom_; }
// arm implementer/part information
int implementer() const { return implementer_; }
@@ -106,6 +107,7 @@ class CPU FINAL {
bool has_ssse3_;
bool has_sse41_;
bool has_sse42_;
+ bool is_atom_;
bool has_avx_;
bool has_fma3_;
bool has_idiva_;
« no previous file with comments | « no previous file | src/base/cpu.cc » ('j') | src/x64/assembler-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698