| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #include "src/assembler.h" | 5 #include "src/assembler.h" |
| 6 #include "src/macro-assembler.h" | 6 #include "src/macro-assembler.h" |
| 7 | 7 |
| 8 #include "src/compiler/linkage.h" | 8 #include "src/compiler/linkage.h" |
| 9 | 9 |
| 10 #include "src/zone.h" | 10 #include "src/zone.h" |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 target_loc, // target location | 216 target_loc, // target location |
| 217 msig, // machine_sig | 217 msig, // machine_sig |
| 218 locations.Build(), // location_sig | 218 locations.Build(), // location_sig |
| 219 0, // stack_parameter_count | 219 0, // stack_parameter_count |
| 220 Operator::kNoProperties, // properties | 220 Operator::kNoProperties, // properties |
| 221 kCalleeSaveRegisters, // callee-saved registers | 221 kCalleeSaveRegisters, // callee-saved registers |
| 222 kCalleeSaveFPRegisters, // callee-saved fp regs | 222 kCalleeSaveFPRegisters, // callee-saved fp regs |
| 223 CallDescriptor::kNoFlags, // flags | 223 CallDescriptor::kNoFlags, // flags |
| 224 "c-call"); | 224 "c-call"); |
| 225 } | 225 } |
| 226 } | 226 |
| 227 } | 227 } // namespace compiler |
| 228 } | 228 } // namespace internal |
| 229 } // namespace v8 |
| OLD | NEW |