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

Side by Side Diff: include/llvm/Transforms/NaCl.h

Issue 13973018: PNaCl: Add ExpandByVal pass for expanding out by-value struct args and results (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Cleanup Created 7 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 | « include/llvm/InitializePasses.h ('k') | lib/Transforms/NaCl/CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===// 1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 9
10 #ifndef LLVM_TRANSFORMS_NACL_H 10 #ifndef LLVM_TRANSFORMS_NACL_H
11 #define LLVM_TRANSFORMS_NACL_H 11 #define LLVM_TRANSFORMS_NACL_H
12 12
13 namespace llvm { 13 namespace llvm {
14 14
15 class BasicBlockPass; 15 class BasicBlockPass;
16 class FunctionPass; 16 class FunctionPass;
17 class Instruction; 17 class Instruction;
18 class ModulePass; 18 class ModulePass;
19 class Use; 19 class Use;
20 class Value; 20 class Value;
21 21
22 ModulePass *createExpandByValPass();
22 FunctionPass *createExpandConstantExprPass(); 23 FunctionPass *createExpandConstantExprPass();
23 ModulePass *createExpandCtorsPass(); 24 ModulePass *createExpandCtorsPass();
24 BasicBlockPass *createExpandGetElementPtrPass(); 25 BasicBlockPass *createExpandGetElementPtrPass();
25 ModulePass *createExpandTlsPass(); 26 ModulePass *createExpandTlsPass();
26 ModulePass *createExpandTlsConstantExprPass(); 27 ModulePass *createExpandTlsConstantExprPass();
27 ModulePass *createExpandVarArgsPass(); 28 ModulePass *createExpandVarArgsPass();
28 ModulePass *createGlobalCleanupPass(); 29 ModulePass *createGlobalCleanupPass();
29 ModulePass *createResolveAliasesPass(); 30 ModulePass *createResolveAliasesPass();
30 ModulePass *createStripMetadataPass(); 31 ModulePass *createStripMetadataPass();
31 32
32 Instruction *PhiSafeInsertPt(Use *U); 33 Instruction *PhiSafeInsertPt(Use *U);
33 void PhiSafeReplaceUses(Use *U, Value *NewVal); 34 void PhiSafeReplaceUses(Use *U, Value *NewVal);
34 35
35 } 36 }
36 37
37 #endif 38 #endif
OLDNEW
« no previous file with comments | « include/llvm/InitializePasses.h ('k') | lib/Transforms/NaCl/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698