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

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

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder 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
« no previous file with comments | « src/compiler/wasm-compiler.h ('k') | src/compiler/zone-pool.h » ('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 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/base/lazy-instance.h" 6 #include "src/base/lazy-instance.h"
7 #include "src/macro-assembler.h" 7 #include "src/macro-assembler.h"
8 #include "src/register-configuration.h" 8 #include "src/register-configuration.h"
9 9
10 #include "src/wasm/wasm-module.h" 10 #include "src/wasm/wasm-module.h"
11 11
12 #include "src/compiler/linkage.h" 12 #include "src/compiler/linkage.h"
13 13
14 #include "src/zone.h" 14 #include "src/zone/zone.h"
15 15
16 namespace v8 { 16 namespace v8 {
17 namespace internal { 17 namespace internal {
18 // TODO(titzer): this should not be in the WASM namespace. 18 // TODO(titzer): this should not be in the WASM namespace.
19 namespace wasm { 19 namespace wasm {
20 20
21 using compiler::LocationSignature; 21 using compiler::LocationSignature;
22 using compiler::CallDescriptor; 22 using compiler::CallDescriptor;
23 using compiler::LinkageLocation; 23 using compiler::LinkageLocation;
24 24
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 descriptor->CalleeSavedFPRegisters(), // callee-saved fp regs 369 descriptor->CalleeSavedFPRegisters(), // callee-saved fp regs
370 descriptor->flags(), // flags 370 descriptor->flags(), // flags
371 descriptor->debug_name()); 371 descriptor->debug_name());
372 372
373 return descriptor; 373 return descriptor;
374 } 374 }
375 375
376 } // namespace wasm 376 } // namespace wasm
377 } // namespace internal 377 } // namespace internal
378 } // namespace v8 378 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.h ('k') | src/compiler/zone-pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698