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

Side by Side Diff: src/compiler/raw-machine-assembler.h

Issue 2833463002: [arm64] Support passing more than eight arguments to C functions (Closed)
Patch Set: [arm64] Support passing more than eight arguments to C functions 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/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/raw-machine-assembler.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_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
6 #define V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 6 #define V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 Node* arg1, Node* arg2, Node* arg3, Node* arg4, 781 Node* arg1, Node* arg2, Node* arg3, Node* arg4,
782 Node* arg5); 782 Node* arg5);
783 // Call to a C function with eight arguments. 783 // Call to a C function with eight arguments.
784 Node* CallCFunction8(MachineType return_type, MachineType arg0_type, 784 Node* CallCFunction8(MachineType return_type, MachineType arg0_type,
785 MachineType arg1_type, MachineType arg2_type, 785 MachineType arg1_type, MachineType arg2_type,
786 MachineType arg3_type, MachineType arg4_type, 786 MachineType arg3_type, MachineType arg4_type,
787 MachineType arg5_type, MachineType arg6_type, 787 MachineType arg5_type, MachineType arg6_type,
788 MachineType arg7_type, Node* function, Node* arg0, 788 MachineType arg7_type, Node* function, Node* arg0,
789 Node* arg1, Node* arg2, Node* arg3, Node* arg4, 789 Node* arg1, Node* arg2, Node* arg3, Node* arg4,
790 Node* arg5, Node* arg6, Node* arg7); 790 Node* arg5, Node* arg6, Node* arg7);
791 // Call to a C function with nine arguments.
792 Node* CallCFunction9(MachineType return_type, MachineType arg0_type,
793 MachineType arg1_type, MachineType arg2_type,
794 MachineType arg3_type, MachineType arg4_type,
795 MachineType arg5_type, MachineType arg6_type,
796 MachineType arg7_type, MachineType arg8_type,
797 Node* function, Node* arg0, Node* arg1, Node* arg2,
798 Node* arg3, Node* arg4, Node* arg5, Node* arg6,
799 Node* arg7, Node* arg8);
791 800
792 // =========================================================================== 801 // ===========================================================================
793 // The following utility methods deal with control flow, hence might switch 802 // The following utility methods deal with control flow, hence might switch
794 // the current basic block or create new basic blocks for labels. 803 // the current basic block or create new basic blocks for labels.
795 804
796 // Control flow. 805 // Control flow.
797 void Goto(RawMachineLabel* label); 806 void Goto(RawMachineLabel* label);
798 void Branch(Node* condition, RawMachineLabel* true_val, 807 void Branch(Node* condition, RawMachineLabel* true_val,
799 RawMachineLabel* false_val); 808 RawMachineLabel* false_val);
800 void Switch(Node* index, RawMachineLabel* default_label, 809 void Switch(Node* index, RawMachineLabel* default_label,
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 bool deferred_; 900 bool deferred_;
892 friend class RawMachineAssembler; 901 friend class RawMachineAssembler;
893 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel); 902 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel);
894 }; 903 };
895 904
896 } // namespace compiler 905 } // namespace compiler
897 } // namespace internal 906 } // namespace internal
898 } // namespace v8 907 } // namespace v8
899 908
900 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 909 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/raw-machine-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698