OLD | NEW |
(Empty) | |
| 1 //===-- X86NaClDecls.h - Common X86 NaCl declarations -----------*- C++ -*-===// |
| 2 // |
| 3 // The LLVM Compiler Infrastructure |
| 4 // |
| 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. |
| 7 // |
| 8 //===----------------------------------------------------------------------===// |
| 9 // |
| 10 // This file provides various NaCl-related declarations for the X86-32 |
| 11 // and X86-64 architectures. |
| 12 // |
| 13 //===----------------------------------------------------------------------===// |
| 14 |
| 15 #ifndef X86NACLDECLS_H |
| 16 #define X86NACLDECLS_H |
| 17 |
| 18 #include "llvm/Support/CommandLine.h" |
| 19 |
| 20 using namespace llvm; |
| 21 |
| 22 extern const int kNaClX86InstructionBundleSize; |
| 23 |
| 24 extern cl::opt<bool> FlagRestrictR15; |
| 25 extern cl::opt<bool> FlagUseZeroBasedSandbox; |
| 26 extern cl::opt<bool> FlagHideSandboxBase; |
| 27 |
| 28 #endif // X86NACLDECLS_H |
OLD | NEW |