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

Unified Diff: src/x87/assembler-x87.cc

Issue 986553005: Contribution of PowerPC port (continuation of 422063005) - serialize.cc cleanup (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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
Index: src/x87/assembler-x87.cc
diff --git a/src/x87/assembler-x87.cc b/src/x87/assembler-x87.cc
index 95b65879256890e4399177a1522cba1d10014df8..c03a9f5c95a6aa7e0f18dcab74451f0988682db5 100644
--- a/src/x87/assembler-x87.cc
+++ b/src/x87/assembler-x87.cc
@@ -82,9 +82,11 @@ void Displacement::init(Label* L, Type type) {
// Implementation of RelocInfo
+const int RelocInfo::kInternalReferenceMask = 1
+ << RelocInfo::INTERNAL_REFERENCE;
const int RelocInfo::kApplyMask =
- RelocInfo::kCodeTargetMask | 1 << RelocInfo::RUNTIME_ENTRY |
- 1 << RelocInfo::JS_RETURN | 1 << RelocInfo::INTERNAL_REFERENCE |
+ RelocInfo::kCodeTargetMask | RelocInfo::kInternalReferenceMask |
+ 1 << RelocInfo::RUNTIME_ENTRY | 1 << RelocInfo::JS_RETURN |
1 << RelocInfo::DEBUG_BREAK_SLOT | 1 << RelocInfo::CODE_AGE_SEQUENCE;
« src/serialize.cc ('K') | « src/x64/assembler-x64-inl.h ('k') | src/x87/assembler-x87-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698