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

Side by Side Diff: lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h

Issue 27690005: [MIPS] Modify LongBranch expansion to work with sandboxing (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Update. Created 7 years, 1 month 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 //===-- MipsFixupKinds.h - Mips Specific Fixup Entries ----------*- C++ -*-===// 1 //===-- MipsFixupKinds.h - Mips Specific Fixup Entries ----------*- 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_MIPS_MIPSFIXUPKINDS_H 10 #ifndef LLVM_MIPS_MIPSFIXUPKINDS_H
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 // resulting in - R_MIPS_GOT_LO16 122 // resulting in - R_MIPS_GOT_LO16
123 fixup_Mips_GOT_LO16, 123 fixup_Mips_GOT_LO16,
124 124
125 // resulting in - R_MIPS_CALL_HI16 125 // resulting in - R_MIPS_CALL_HI16
126 fixup_Mips_CALL_HI16, 126 fixup_Mips_CALL_HI16,
127 127
128 // resulting in - R_MIPS_CALL_LO16 128 // resulting in - R_MIPS_CALL_LO16
129 fixup_Mips_CALL_LO16, 129 fixup_Mips_CALL_LO16,
130 130
131 // @LOCALMOD-START
132 fixup_Mips_NACL_LONG_BRANCH_HI16,
133 fixup_Mips_NACL_LONG_BRANCH_LO16,
134 // @LOCALMOD-END
135
131 // Marker 136 // Marker
132 LastTargetFixupKind, 137 LastTargetFixupKind,
133 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind 138 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
134 }; 139 };
135 } // namespace Mips 140 } // namespace Mips
136 } // namespace llvm 141 } // namespace llvm
137 142
138 143
139 #endif // LLVM_MIPS_MIPSFIXUPKINDS_H 144 #endif // LLVM_MIPS_MIPSFIXUPKINDS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698