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

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

Issue 2930623002: [builtins] Start refactoring the Apply builtin. (Closed)
Patch Set: Address feedback. Created 3 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 unified diff | Download patch
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/mips/macro-assembler-mips.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_MIPS_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips/assembler-mips.h" 10 #include "src/mips/assembler-mips.h"
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after
1531 1531
1532 // Jump if either of the registers contain a non-smi. 1532 // Jump if either of the registers contain a non-smi.
1533 void JumpIfNotBothSmi(Register reg1, Register reg2, Label* on_not_both_smi); 1533 void JumpIfNotBothSmi(Register reg1, Register reg2, Label* on_not_both_smi);
1534 // Jump if either of the registers contain a smi. 1534 // Jump if either of the registers contain a smi.
1535 void JumpIfEitherSmi(Register reg1, Register reg2, Label* on_either_smi); 1535 void JumpIfEitherSmi(Register reg1, Register reg2, Label* on_either_smi);
1536 1536
1537 // Abort execution if argument is a smi, enabled via --debug-code. 1537 // Abort execution if argument is a smi, enabled via --debug-code.
1538 void AssertNotSmi(Register object); 1538 void AssertNotSmi(Register object);
1539 void AssertSmi(Register object); 1539 void AssertSmi(Register object);
1540 1540
1541 // Abort execution if argument is not a FixedArray, enabled via --debug-code.
1542 void AssertFixedArray(Register object);
1543
1541 // Abort execution if argument is not a JSFunction, enabled via --debug-code. 1544 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
1542 void AssertFunction(Register object); 1545 void AssertFunction(Register object);
1543 1546
1544 // Abort execution if argument is not a JSBoundFunction, 1547 // Abort execution if argument is not a JSBoundFunction,
1545 // enabled via --debug-code. 1548 // enabled via --debug-code.
1546 void AssertBoundFunction(Register object); 1549 void AssertBoundFunction(Register object);
1547 1550
1548 // Abort execution if argument is not a JSGeneratorObject, 1551 // Abort execution if argument is not a JSGeneratorObject,
1549 // enabled via --debug-code. 1552 // enabled via --debug-code.
1550 void AssertGeneratorObject(Register object, Register flags); 1553 void AssertGeneratorObject(Register object, Register flags);
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1811 dd(GetLabelFunction(index)); 1814 dd(GetLabelFunction(index));
1812 } 1815 }
1813 } 1816 }
1814 1817
1815 #define ACCESS_MASM(masm) masm-> 1818 #define ACCESS_MASM(masm) masm->
1816 1819
1817 } // namespace internal 1820 } // namespace internal
1818 } // namespace v8 1821 } // namespace v8
1819 1822
1820 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1823 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698