Home
last modified time | relevance | path

Searched refs:pImm (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64RelocationHelpers.h51 helper_reencode_adr_imm(uint32_t pInst, uint32_t pImm) in helper_reencode_adr_imm() argument
54 | ((pImm & get_mask(2)) << 29) | ((pImm & (get_mask(19) << 2)) << 3); in helper_reencode_adr_imm()
58 static inline uint32_t helper_reencode_add_imm(uint32_t pInst, uint32_t pImm) in helper_reencode_add_imm() argument
60 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10); in helper_reencode_add_imm()
79 helper_reencode_ldst_pos_imm (uint32_t pInst, uint32_t pImm) in helper_reencode_ldst_pos_imm() argument
81 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10); in helper_reencode_ldst_pos_imm()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp199 Relocator::DWord pImm) in helper_insert_val_movw_movt_inst() argument
203 pTarget |= pImm & 0x0fffU; in helper_insert_val_movw_movt_inst()
204 pTarget |= (pImm & 0xf000U) << 4; in helper_insert_val_movw_movt_inst()
221 Relocator::DWord pImm) in helper_insert_val_thumb_movw_movt_inst() argument
225 pValue |= (pImm & 0xf000U) << 4; in helper_insert_val_thumb_movw_movt_inst()
226 pValue |= (pImm & 0x0800U) << 15; in helper_insert_val_thumb_movw_movt_inst()
227 pValue |= (pImm & 0x0700U) << 4; in helper_insert_val_thumb_movw_movt_inst()
228 pValue |= (pImm & 0x00ffU); in helper_insert_val_thumb_movw_movt_inst()