Changeset View
Changeset View
Standalone View
Standalone View
llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
Context not available. | |||||
} | } | ||||
llvm_unreachable("unknown fusion type"); | llvm_unreachable("unknown fusion type"); | ||||
} | } | ||||
/// Defines the value used for the target specific mask in a scope for | |||||
/// align_branch_boundary | |||||
enum AlignBranchBoundaryKinds : uint8_t { | |||||
AlignBranchNone = 0, | |||||
AlignBranchFused = 1U << 0, | |||||
AlignBranchJcc = 1U << 1, | |||||
AlignBranchJmp = 1U << 2, | |||||
AlignBranchCall = 1U << 3, | |||||
AlignBranchRet = 1U << 4, | |||||
AlignBranchIndirect = 1U << 5 | |||||
}; | |||||
} // end namespace X86; | } // end namespace X86; | ||||
/// X86II - This namespace holds all of the target specific flags that | /// X86II - This namespace holds all of the target specific flags that | ||||
Context not available. |