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

Side by Side Diff: src/compiler/c-linkage.cc

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations Created 4 years, 3 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
OLDNEW
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/zone.h"
11 11
12 namespace v8 { 12 namespace v8 {
13 namespace internal { 13 namespace internal {
14 namespace compiler { 14 namespace compiler {
15 15
16 namespace { 16 namespace {
17 LinkageLocation regloc(Register reg, MachineType type) { 17 LinkageLocation regloc(Register reg, MachineType type) {
18 return LinkageLocation::ForRegister(reg.code(), type); 18 return LinkageLocation::ForRegister(reg.code(), type);
19 } 19 }
20 20
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 0, // stack_parameter_count 242 0, // stack_parameter_count
243 Operator::kNoProperties, // properties 243 Operator::kNoProperties, // properties
244 kCalleeSaveRegisters, // callee-saved registers 244 kCalleeSaveRegisters, // callee-saved registers
245 kCalleeSaveFPRegisters, // callee-saved fp regs 245 kCalleeSaveFPRegisters, // callee-saved fp regs
246 flags, "c-call"); 246 flags, "c-call");
247 } 247 }
248 248
249 } // namespace compiler 249 } // namespace compiler
250 } // namespace internal 250 } // namespace internal
251 } // namespace v8 251 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698