Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64RelocationHelpers.h46 static inline uint32_t helper_reencode_adr_imm(uint32_t pInst, uint32_t pImm) { in helper_reencode_adr_imm() argument
48 ((pImm & get_mask(2)) << 29) | ((pImm & (get_mask(19) << 2)) << 3); in helper_reencode_adr_imm()
52 static inline uint32_t helper_reencode_add_imm(uint32_t pInst, uint32_t pImm) { in helper_reencode_add_imm() argument
53 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10); in helper_reencode_add_imm()
70 uint32_t pImm) { in helper_reencode_ldst_pos_imm() argument
71 return (pInst & ~(get_mask(12) << 10)) | ((pImm & get_mask(12)) << 10); in helper_reencode_ldst_pos_imm()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp177 Relocator::DWord pImm) { in helper_insert_val_movw_movt_inst() argument
180 pTarget |= pImm & 0x0fffU; in helper_insert_val_movw_movt_inst()
181 pTarget |= (pImm & 0xf000U) << 4; in helper_insert_val_movw_movt_inst()
196 Relocator::DWord pImm) { in helper_insert_val_thumb_movw_movt_inst() argument
199 pValue |= (pImm & 0xf000U) << 4; in helper_insert_val_thumb_movw_movt_inst()
200 pValue |= (pImm & 0x0800U) << 15; in helper_insert_val_thumb_movw_movt_inst()
201 pValue |= (pImm & 0x0700U) << 4; in helper_insert_val_thumb_movw_movt_inst()
202 pValue |= (pImm & 0x00ffU); in helper_insert_val_thumb_movw_movt_inst()