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

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

Issue 14569012: PNaCl ABI: Promote illegal integer types (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: use upper-clear invariant rather than sign-extend Created 7 years, 7 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 //===-- 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
(...skipping 10 matching lines...) Expand all
21 21
22 ModulePass *createExpandByValPass(); 22 ModulePass *createExpandByValPass();
23 FunctionPass *createExpandConstantExprPass(); 23 FunctionPass *createExpandConstantExprPass();
24 ModulePass *createExpandCtorsPass(); 24 ModulePass *createExpandCtorsPass();
25 BasicBlockPass *createExpandGetElementPtrPass(); 25 BasicBlockPass *createExpandGetElementPtrPass();
26 ModulePass *createExpandTlsPass(); 26 ModulePass *createExpandTlsPass();
27 ModulePass *createExpandTlsConstantExprPass(); 27 ModulePass *createExpandTlsConstantExprPass();
28 ModulePass *createExpandVarArgsPass(); 28 ModulePass *createExpandVarArgsPass();
29 ModulePass *createFlattenGlobalsPass(); 29 ModulePass *createFlattenGlobalsPass();
30 ModulePass *createGlobalCleanupPass(); 30 ModulePass *createGlobalCleanupPass();
31 FunctionPass *createPromoteIntegersPass();
31 ModulePass *createResolveAliasesPass(); 32 ModulePass *createResolveAliasesPass();
32 ModulePass *createStripMetadataPass(); 33 ModulePass *createStripMetadataPass();
33 34
34 Instruction *PhiSafeInsertPt(Use *U); 35 Instruction *PhiSafeInsertPt(Use *U);
35 void PhiSafeReplaceUses(Use *U, Value *NewVal); 36 void PhiSafeReplaceUses(Use *U, Value *NewVal);
36 37
37 } 38 }
38 39
39 #endif 40 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698