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

Unified Diff: runtime/vm/flow_graph_compiler_arm.cc

Issue 365983002: Make isolate specific stub code accessors instance methods instead (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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/flow_graph_compiler.cc ('k') | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_arm.cc
===================================================================
--- runtime/vm/flow_graph_compiler_arm.cc (revision 37923)
+++ runtime/vm/flow_graph_compiler_arm.cc (working copy)
@@ -171,7 +171,8 @@
ASSERT(deopt_env() != NULL);
- __ BranchLink(&StubCode::DeoptimizeLabel());
+ StubCode* stub_code = compiler->isolate()->stub_code();
+ __ BranchLink(&stub_code->DeoptimizeLabel());
set_pc_offset(assem->CodeSize());
#undef __
}
@@ -208,18 +209,19 @@
ASSERT(temp_reg == kNoRegister); // Unused on ARM.
const SubtypeTestCache& type_test_cache =
SubtypeTestCache::ZoneHandle(SubtypeTestCache::New());
+ StubCode* stub_code = isolate()->stub_code();
__ LoadObject(R2, type_test_cache);
if (test_kind == kTestTypeOneArg) {
ASSERT(type_arguments_reg == kNoRegister);
__ LoadImmediate(R1, reinterpret_cast<intptr_t>(Object::null()));
- __ BranchLink(&StubCode::Subtype1TestCacheLabel());
+ __ BranchLink(&stub_code->Subtype1TestCacheLabel());
} else if (test_kind == kTestTypeTwoArgs) {
ASSERT(type_arguments_reg == kNoRegister);
__ LoadImmediate(R1, reinterpret_cast<intptr_t>(Object::null()));
- __ BranchLink(&StubCode::Subtype2TestCacheLabel());
+ __ BranchLink(&stub_code->Subtype2TestCacheLabel());
} else if (test_kind == kTestTypeThreeArgs) {
ASSERT(type_arguments_reg == R1);
- __ BranchLink(&StubCode::Subtype3TestCacheLabel());
+ __ BranchLink(&stub_code->Subtype3TestCacheLabel());
} else {
UNREACHABLE();
}
@@ -894,13 +896,14 @@
__ Bind(&wrong_num_arguments);
if (function.IsClosureFunction()) {
// Invoke noSuchMethod function passing "call" as the original name.
+ StubCode* stub_code = isolate()->stub_code();
const int kNumArgsChecked = 1;
const ICData& ic_data = ICData::ZoneHandle(
ICData::New(function, Symbols::Call(), Object::empty_array(),
Isolate::kNoDeoptId, kNumArgsChecked));
__ LoadObject(R5, ic_data);
__ LeaveDartFrame(); // The arguments are still on the stack.
- __ Branch(&StubCode::CallNoSuchMethodFunctionLabel());
+ __ Branch(&stub_code->CallNoSuchMethodFunctionLabel());
// The noSuchMethod call may return to the caller, but not here.
__ bkpt(0);
} else if (check_correct_named_args) {
@@ -961,6 +964,7 @@
function.IsOptimizable() &&
(!is_optimizing() || may_reoptimize())) {
const Register function_reg = R6;
+ StubCode* stub_code = isolate()->stub_code();
// The pool pointer is not setup before entering the Dart frame.
// Preserve PP of caller.
@@ -989,7 +993,7 @@
}
__ CompareImmediate(R7, threshold);
ASSERT(function_reg == R6);
- __ Branch(&StubCode::OptimizeFunctionLabel(), GE);
+ __ Branch(&stub_code->OptimizeFunctionLabel(), GE);
} else if (!flow_graph().IsCompiledForOsr()) {
entry_patch_pc_offset_ = assembler()->CodeSize();
}
@@ -1026,6 +1030,7 @@
const int num_fixed_params = function.num_fixed_parameters();
const int num_copied_params = parsed_function().num_copied_params();
const int num_locals = parsed_function().num_stack_locals();
+ StubCode* stub_code = isolate()->stub_code();
// We check the number of passed arguments when we have to copy them due to
// the presence of optional parameters.
@@ -1064,7 +1069,7 @@
Isolate::kNoDeoptId, kNumArgsChecked));
__ LoadObject(R5, ic_data);
__ LeaveDartFrame(); // The arguments are still on the stack.
- __ Branch(&StubCode::CallNoSuchMethodFunctionLabel());
+ __ Branch(&stub_code->CallNoSuchMethodFunctionLabel());
// The noSuchMethod call may return to the caller, but not here.
__ bkpt(0);
} else {
@@ -1095,11 +1100,11 @@
// Emit function patching code. This will be swapped with the first 3
// instructions at entry point.
patch_code_pc_offset_ = assembler()->CodeSize();
- __ BranchPatchable(&StubCode::FixCallersTargetLabel());
+ __ BranchPatchable(&stub_code->FixCallersTargetLabel());
if (is_optimizing()) {
lazy_deopt_pc_offset_ = assembler()->CodeSize();
- __ Branch(&StubCode::DeoptimizeLazyLabel());
+ __ Branch(&stub_code->DeoptimizeLazyLabel());
}
}
@@ -1291,10 +1296,11 @@
LocationSummary* locs,
const ICData& ic_data) {
uword label_address = 0;
+ StubCode* stub_code = isolate()->stub_code();
if (ic_data.NumArgsTested() == 0) {
- label_address = StubCode::ZeroArgsUnoptimizedStaticCallEntryPoint();
+ label_address = stub_code->ZeroArgsUnoptimizedStaticCallEntryPoint();
} else if (ic_data.NumArgsTested() == 2) {
- label_address = StubCode::TwoArgsUnoptimizedStaticCallEntryPoint();
+ label_address = stub_code->TwoArgsUnoptimizedStaticCallEntryPoint();
} else {
UNIMPLEMENTED();
}
@@ -1320,12 +1326,13 @@
intptr_t deopt_id,
intptr_t token_pos,
LocationSummary* locs) {
+ StubCode* stub_code = isolate()->stub_code();
__ LoadObject(R4, arguments_descriptor);
// Do not use the code from the function, but let the code be patched so that
// we can record the outgoing edges to other code.
GenerateDartCall(deopt_id,
token_pos,
- &StubCode::CallStaticFunctionLabel(),
+ &stub_code->CallStaticFunctionLabel(),
PcDescriptors::kOptStaticCall,
locs);
AddStaticCallTarget(function);
@@ -1338,15 +1345,16 @@
bool needs_number_check,
intptr_t token_pos) {
if (needs_number_check) {
+ StubCode* stub_code = isolate()->stub_code();
ASSERT(!obj.IsMint() && !obj.IsDouble() && !obj.IsBigint());
__ Push(reg);
__ PushObject(obj);
if (is_optimizing()) {
__ BranchLinkPatchable(
- &StubCode::OptimizedIdenticalWithNumberCheckLabel());
+ &stub_code->OptimizedIdenticalWithNumberCheckLabel());
} else {
__ BranchLinkPatchable(
- &StubCode::UnoptimizedIdenticalWithNumberCheckLabel());
+ &stub_code->UnoptimizedIdenticalWithNumberCheckLabel());
}
if (token_pos != Scanner::kNoSourcePos) {
AddCurrentDescriptor(PcDescriptors::kRuntimeCall,
@@ -1367,16 +1375,17 @@
bool needs_number_check,
intptr_t token_pos) {
if (needs_number_check) {
+ StubCode* stub_code = isolate()->stub_code();
__ Push(left);
__ Push(right);
if (is_optimizing()) {
__ BranchLinkPatchable(
- &StubCode::OptimizedIdenticalWithNumberCheckLabel());
+ &stub_code->OptimizedIdenticalWithNumberCheckLabel());
} else {
__ LoadImmediate(R4, 0);
__ LoadImmediate(R5, 0);
__ BranchLinkPatchable(
- &StubCode::UnoptimizedIdenticalWithNumberCheckLabel());
+ &stub_code->UnoptimizedIdenticalWithNumberCheckLabel());
}
if (token_pos != Scanner::kNoSourcePos) {
AddCurrentDescriptor(PcDescriptors::kRuntimeCall,
@@ -1488,6 +1497,8 @@
const Array& arguments_descriptor =
Array::ZoneHandle(ArgumentsDescriptor::New(argument_count,
argument_names));
+ StubCode* stub_code = isolate()->stub_code();
+
__ LoadObject(R4, arguments_descriptor);
for (intptr_t i = 0; i < len; i++) {
const bool is_last_check = (i == (len - 1));
@@ -1502,7 +1513,7 @@
// that we can record the outgoing edges to other code.
GenerateDartCall(deopt_id,
token_index,
- &StubCode::CallStaticFunctionLabel(),
+ &stub_code->CallStaticFunctionLabel(),
PcDescriptors::kOptStaticCall,
locs);
const Function& function = *sorted[i].target;
« no previous file with comments | « runtime/vm/flow_graph_compiler.cc ('k') | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698