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

Unified Diff: runtime/vm/assembler.cc

Issue 1358773002: Load the native call wrapper via Thread. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/assembler.h ('k') | runtime/vm/assembler_arm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler.cc
diff --git a/runtime/vm/assembler.cc b/runtime/vm/assembler.cc
index 25803ca829ac7133ac794ee0bcafb20a9f97c760..4e1eca9571f9bfabe28f598a098c2f6c30b4eece 100644
--- a/runtime/vm/assembler.cc
+++ b/runtime/vm/assembler.cc
@@ -265,14 +265,6 @@ intptr_t ObjectPoolWrapper::AddObject(ObjectPool::Entry entry,
}
-intptr_t ObjectPoolWrapper::AddExternalLabel(const ExternalLabel* label,
- Patchability patchable) {
- return AddObject(ObjectPool::Entry(label->address(),
- ObjectPool::kExternalLabel),
- patchable);
-}
-
-
intptr_t ObjectPoolWrapper::FindObject(ObjectPool::Entry entry,
Patchability patchable) {
// If the object is not patchable, check if we've already got it in the
@@ -300,14 +292,6 @@ intptr_t ObjectPoolWrapper::FindImmediate(uword imm) {
}
-intptr_t ObjectPoolWrapper::FindExternalLabel(const ExternalLabel* label,
- Patchability patchable) {
- return FindObject(ObjectPool::Entry(label->address(),
- ObjectPool::kExternalLabel),
- patchable);
-}
-
-
intptr_t ObjectPoolWrapper::FindNativeEntry(const ExternalLabel* label,
Patchability patchable) {
return FindObject(ObjectPool::Entry(label->address(),
« no previous file with comments | « runtime/vm/assembler.h ('k') | runtime/vm/assembler_arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698