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

Unified Diff: src/assembler.h

Issue 61763025: ARM: Merge redundant entries in literal pool. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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
« src/arm/assembler-arm.cc ('K') | « src/arm/assembler-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index 887365808bd3b46d19fe1972b7a4666c1c68dc6c..fbf8a56c6773b8046e436eb6638ff53651c7ac46 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -372,6 +372,11 @@ class RelocInfo BASE_EMBEDDED {
Mode rmode() const { return rmode_; }
intptr_t data() const { return data_; }
double data64() const { return data64_; }
+ uint64_t raw_data64() {
+ uint64_t tmp;
+ memcpy(&tmp, &data64_, sizeof(tmp));
Benedikt Meurer 2013/11/15 08:47:01 Same as above.
Rodolph Perfetta 2013/11/15 11:04:26 Done.
+ return tmp;
+ }
Code* host() const { return host_; }
// Apply a relocation by delta bytes
« src/arm/assembler-arm.cc ('K') | « src/arm/assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698