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

Unified Diff: src/mips/assembler-mips.h

Issue 1025453003: MIPS: Fix 'MIPS: Serializer: serialize internal references via object visitor.' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix nits. 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
« no previous file with comments | « no previous file | src/mips/assembler-mips-inl.h » ('j') | src/serialize.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/assembler-mips.h
diff --git a/src/mips/assembler-mips.h b/src/mips/assembler-mips.h
index a50927f7843930dd56dc5f87cf89983bc713ce33..cc8b6ea9bd4699893b71d0b56b5736db45dc81fb 100644
--- a/src/mips/assembler-mips.h
+++ b/src/mips/assembler-mips.h
@@ -551,6 +551,10 @@ class Assembler : public AssemblerBase {
inline static void deserialization_set_target_internal_reference_at(
Address pc, Address target);
+ // This sets the encoded internal reference at the pc.
+ inline static void deserialization_set_target_internal_reference_encoded_at(
+ Address pc, Address target);
+
// Size of an instruction.
static const int kInstrSize = sizeof(Instr);
@@ -1191,6 +1195,9 @@ class Assembler : public AssemblerBase {
}
private:
+ inline static void set_target_internal_reference_encoded_at(Address pc,
+ Address target);
+
// Buffer size and constant pool distance are checked together at regular
// intervals of kBufferCheckInterval emitted bytes.
static const int kBufferCheckInterval = 1*KB/2;
« no previous file with comments | « no previous file | src/mips/assembler-mips-inl.h » ('j') | src/serialize.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698