Index: runtime/vm/code_patcher_arm64.cc |
diff --git a/runtime/vm/code_patcher_arm64.cc b/runtime/vm/code_patcher_arm64.cc |
index 658f4064bcd9ee7e020de67e52a8e599c7cbe880..b64b21d8ec8a70dcc010e86993d9dd14728926cf 100644 |
--- a/runtime/vm/code_patcher_arm64.cc |
+++ b/runtime/vm/code_patcher_arm64.cc |
@@ -15,17 +15,14 @@ namespace dart { |
class PoolPointerCall : public ValueObject { |
public: |
PoolPointerCall(uword pc, const Code& code) |
- : end_(pc), |
- object_pool_(ObjectPool::Handle(code.GetObjectPool())) { |
+ : end_(pc), object_pool_(ObjectPool::Handle(code.GetObjectPool())) { |
// Last instruction: blr ip0. |
ASSERT(*(reinterpret_cast<uint32_t*>(end_) - 1) == 0xd63f0200); |
- InstructionPattern::DecodeLoadWordFromPool( |
- end_ - 2 * Instr::kInstrSize, ®_, &index_); |
+ InstructionPattern::DecodeLoadWordFromPool(end_ - 2 * Instr::kInstrSize, |
+ ®_, &index_); |
} |
- intptr_t pp_index() const { |
- return index_; |
- } |
+ intptr_t pp_index() const { return index_; } |
RawCode* Target() const { |
return reinterpret_cast<RawCode*>(object_pool_.ObjectAt(pp_index())); |
@@ -94,8 +91,9 @@ intptr_t CodePatcher::InstanceCallSizeInBytes() { |
} |
-RawFunction* CodePatcher::GetUnoptimizedStaticCallAt( |
- uword return_address, const Code& code, ICData* ic_data_result) { |
+RawFunction* CodePatcher::GetUnoptimizedStaticCallAt(uword return_address, |
+ const Code& code, |
+ ICData* ic_data_result) { |
ASSERT(code.ContainsInstructionAt(return_address)); |
CallPattern static_call(return_address, code); |
ICData& ic_data = ICData::Handle(); |