| OLD | NEW |
| 1 //===-- llvm/CodeGen/ISDOpcodes.h - CodeGen opcodes -------------*- C++ -*-===// | 1 //===-- llvm/CodeGen/ISDOpcodes.h - CodeGen opcodes -------------*- 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 // This file declares codegen opcodes and related utilities. | 10 // This file declares codegen opcodes and related utilities. |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 ATOMIC_LOAD_NAND, | 628 ATOMIC_LOAD_NAND, |
| 629 ATOMIC_LOAD_MIN, | 629 ATOMIC_LOAD_MIN, |
| 630 ATOMIC_LOAD_MAX, | 630 ATOMIC_LOAD_MAX, |
| 631 ATOMIC_LOAD_UMIN, | 631 ATOMIC_LOAD_UMIN, |
| 632 ATOMIC_LOAD_UMAX, | 632 ATOMIC_LOAD_UMAX, |
| 633 | 633 |
| 634 // @LOCALMOD-BEGIN | 634 // @LOCALMOD-BEGIN |
| 635 // NACL_* - Native Client instrinsics. | 635 // NACL_* - Native Client instrinsics. |
| 636 // These correspond to functions in: | 636 // These correspond to functions in: |
| 637 // native_client/src/untrusted/nacl/tls_params.h | 637 // native_client/src/untrusted/nacl/tls_params.h |
| 638 NACL_THREAD_STACK_PADDING, | |
| 639 NACL_TP_ALIGN, | 638 NACL_TP_ALIGN, |
| 640 NACL_TP_TLS_OFFSET, | 639 NACL_TP_TLS_OFFSET, |
| 641 NACL_TP_TDB_OFFSET, | 640 NACL_TP_TDB_OFFSET, |
| 642 // Expands to the target architecture enumeration value. | 641 // Expands to the target architecture enumeration value. |
| 643 NACL_TARGET_ARCH, | 642 NACL_TARGET_ARCH, |
| 644 // @LOCALMOD-END | 643 // @LOCALMOD-END |
| 645 | 644 |
| 646 /// BUILTIN_OP_END - This must be the last enum value in this list. | 645 /// BUILTIN_OP_END - This must be the last enum value in this list. |
| 647 /// The target-specific pre-isel opcode values start here. | 646 /// The target-specific pre-isel opcode values start here. |
| 648 BUILTIN_OP_END | 647 BUILTIN_OP_END |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 CVT_US, // Unsigned from Signed | 814 CVT_US, // Unsigned from Signed |
| 816 CVT_UU, // Unsigned from Unsigned | 815 CVT_UU, // Unsigned from Unsigned |
| 817 CVT_INVALID // Marker - Invalid opcode | 816 CVT_INVALID // Marker - Invalid opcode |
| 818 }; | 817 }; |
| 819 | 818 |
| 820 } // end llvm::ISD namespace | 819 } // end llvm::ISD namespace |
| 821 | 820 |
| 822 } // end llvm namespace | 821 } // end llvm namespace |
| 823 | 822 |
| 824 #endif | 823 #endif |
| OLD | NEW |