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

Side by Side Diff: src/arm64/macro-assembler-arm64.h

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « src/arm64/interface-descriptors-arm64.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/arm64/assembler-arm64.h" 10 #include "src/arm64/assembler-arm64.h"
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1297 } 1297 }
1298 private: 1298 private:
1299 bool saved_; 1299 bool saved_;
1300 MacroAssembler* masm_; 1300 MacroAssembler* masm_;
1301 }; 1301 };
1302 1302
1303 // --------------------------------------------------------------------------- 1303 // ---------------------------------------------------------------------------
1304 // Debugger Support 1304 // Debugger Support
1305 1305
1306 void DebugBreak(); 1306 void DebugBreak();
1307 void MaybeDropFrames();
1307 1308
1308 // --------------------------------------------------------------------------- 1309 // ---------------------------------------------------------------------------
1309 // Exception handling 1310 // Exception handling
1310 1311
1311 // Push a new stack handler and link into stack handler chain. 1312 // Push a new stack handler and link into stack handler chain.
1312 void PushStackHandler(); 1313 void PushStackHandler();
1313 1314
1314 // Unlink the stack handler on top of the stack from the stack handler chain. 1315 // Unlink the stack handler on top of the stack from the stack handler chain.
1315 // Must preserve the result register. 1316 // Must preserve the result register.
1316 void PopStackHandler(); 1317 void PopStackHandler();
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
2187 class RegisterBits : public BitField<unsigned, 0, 5> {}; 2188 class RegisterBits : public BitField<unsigned, 0, 5> {};
2188 class DeltaBits : public BitField<uint32_t, 5, 32-5> {}; 2189 class DeltaBits : public BitField<uint32_t, 5, 32-5> {};
2189 }; 2190 };
2190 2191
2191 } // namespace internal 2192 } // namespace internal
2192 } // namespace v8 2193 } // namespace v8
2193 2194
2194 #define ACCESS_MASM(masm) masm-> 2195 #define ACCESS_MASM(masm) masm->
2195 2196
2196 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2197 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/interface-descriptors-arm64.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698