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

Unified Diff: runtime/vm/instructions_x64.h

Issue 1175523002: Object pool with support for untagged entries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 | « runtime/vm/instructions_mips.cc ('k') | runtime/vm/instructions_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/instructions_x64.h
diff --git a/runtime/vm/instructions_x64.h b/runtime/vm/instructions_x64.h
index 0d6bb0865c3d5dada0144f35dc4cd3222801f82b..8f5cda401c937f11b0772e480893035575398583 100644
--- a/runtime/vm/instructions_x64.h
+++ b/runtime/vm/instructions_x64.h
@@ -60,7 +60,7 @@ class JumpPattern : public InstructionPattern {
public:
JumpPattern(uword pc, const Code& code)
: InstructionPattern(pc),
- object_pool_(Array::Handle(code.ObjectPool())) {}
+ object_pool_(ObjectPool::Handle(code.GetObjectPool())) {}
static int InstructionLength() {
return kLengthInBytes;
}
@@ -73,7 +73,7 @@ class JumpPattern : public InstructionPattern {
static const int kLengthInBytes = 7;
private:
virtual const int* pattern() const;
- const Array& object_pool_;
+ const ObjectPool& object_pool_;
DISALLOW_COPY_AND_ASSIGN(JumpPattern);
};
« no previous file with comments | « runtime/vm/instructions_mips.cc ('k') | runtime/vm/instructions_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698