File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
runtime/vm/compiler/backend Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7293,7 +7293,7 @@ LocationSummary* TsanReadWriteInstr::MakeLocationSummary(Zone* zone,
72937293 return result;
72947294}
72957295
7296- const RuntimeEntry& TsanReadWriteInstr::RuntimeEntry () const {
7296+ const RuntimeEntry& TsanReadWriteInstr::GetRuntimeEntry () const {
72977297 intptr_t size = RepresentationUtils::ValueSize (slot ().representation ());
72987298 if (kind_ == Kind::kRead ) {
72997299 switch (size) {
@@ -7352,7 +7352,7 @@ void TsanReadWriteInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
73527352 intptr_t tag = slot ().has_untagged_instance () ? 0 : kHeapObjectTag ;
73537353 __ AddImmediate (CallingConventions::ArgumentRegisters[0 ], instance_reg,
73547354 slot ().offset_in_bytes () - tag);
7355- __ Load (TMP, compiler::Address (THR, RuntimeEntry ().OffsetFromThread ()));
7355+ __ Load (TMP, compiler::Address (THR, GetRuntimeEntry ().OffsetFromThread ()));
73567356 __ Store (TMP,
73577357 compiler::Address (THR, compiler::target::Thread::vm_tag_offset ()));
73587358 __ CallCFunction (TMP);
Original file line number Diff line number Diff line change @@ -10090,7 +10090,7 @@ class TsanReadWriteInstr : public TemplateInstruction<1, NoThrow> {
1009010090 FIELD_LIST)
1009110091#undef FIELD_LIST
1009210092
10093- const RuntimeEntry& RuntimeEntry () const ;
10093+ const RuntimeEntry& GetRuntimeEntry () const ;
1009410094
1009510095 private:
1009610096 DISALLOW_COPY_AND_ASSIGN (TsanReadWriteInstr);
You can’t perform that action at this time.
0 commit comments