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

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

Issue 2780283002: PPC/s390: [async-iteration] implement AsyncGenerator (Closed)
Patch Set: Created 3 years, 8 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/builtins/s390/builtins-s390.cc ('k') | src/ppc/macro-assembler-ppc.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC_MACRO_ASSEMBLER_PPC_H_ 5 #ifndef V8_PPC_MACRO_ASSEMBLER_PPC_H_
6 #define V8_PPC_MACRO_ASSEMBLER_PPC_H_ 6 #define V8_PPC_MACRO_ASSEMBLER_PPC_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 1305
1306 void AssertFunction(Register object); 1306 void AssertFunction(Register object);
1307 1307
1308 // Abort execution if argument is not a JSBoundFunction, 1308 // Abort execution if argument is not a JSBoundFunction,
1309 // enabled via --debug-code. 1309 // enabled via --debug-code.
1310 void AssertBoundFunction(Register object); 1310 void AssertBoundFunction(Register object);
1311 1311
1312 // Abort execution if argument is not a JSGeneratorObject, 1312 // Abort execution if argument is not a JSGeneratorObject,
1313 // enabled via --debug-code. 1313 // enabled via --debug-code.
1314 void AssertGeneratorObject(Register object); 1314 void AssertGeneratorObject(Register object);
1315 void AssertAsyncGeneratorObject(Register object);
1315 1316
1316 // Abort execution if argument is not undefined or an AllocationSite, enabled 1317 // Abort execution if argument is not undefined or an AllocationSite, enabled
1317 // via --debug-code. 1318 // via --debug-code.
1318 void AssertUndefinedOrAllocationSite(Register object, Register scratch); 1319 void AssertUndefinedOrAllocationSite(Register object, Register scratch);
1319 1320
1320 // Abort execution if reg is not the root value with the given index, 1321 // Abort execution if reg is not the root value with the given index,
1321 // enabled via --debug-code. 1322 // enabled via --debug-code.
1322 void AssertIsRoot(Register reg, Heap::RootListIndex index); 1323 void AssertIsRoot(Register reg, Heap::RootListIndex index);
1323 1324
1324 // --------------------------------------------------------------------------- 1325 // ---------------------------------------------------------------------------
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 inline MemOperand NativeContextMemOperand() { 1541 inline MemOperand NativeContextMemOperand() {
1541 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1542 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1542 } 1543 }
1543 1544
1544 #define ACCESS_MASM(masm) masm-> 1545 #define ACCESS_MASM(masm) masm->
1545 1546
1546 } // namespace internal 1547 } // namespace internal
1547 } // namespace v8 1548 } // namespace v8
1548 1549
1549 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_ 1550 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_
OLDNEW
« no previous file with comments | « src/builtins/s390/builtins-s390.cc ('k') | src/ppc/macro-assembler-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698