dyncode_arm.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:16k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: dyncode_arm.c 585 2006-01-16 09:48:55Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common.h"
  24. #include "dyncode.h"
  25. #if defined(ARM) && defined(CONFIG_DYNCODE)
  26. void InstInit()
  27. {
  28. context* c = Context();
  29. c->NextCond = AL;
  30. c->NextSet = 0;
  31. c->NextByte = 0;
  32. c->NextHalf = 0;
  33. c->NextSign = 0;
  34. }
  35. void InstPost(dyninst* p)
  36. {
  37. context* c = Context();
  38. InstAdd(p,c);
  39. c->NextCond = AL;
  40. c->NextSet = 0;
  41. c->NextByte = 0;
  42. c->NextHalf = 0;
  43. c->NextSign = 0;
  44. }
  45. void Byte()
  46. {
  47. context* c = Context();
  48. c->NextByte = 1;
  49. c->NextSign = 0;
  50. }
  51. void Half()
  52. {
  53. context* c = Context();
  54. c->NextHalf = 1;
  55. c->NextSign = 0;
  56. }
  57. void SByte()
  58. {
  59. context* c = Context();
  60. c->NextByte = 1;
  61. c->NextSign = 1;
  62. }
  63. void SHalf()
  64. {
  65. context* c = Context();
  66. c->NextHalf = 1;
  67. c->NextSign = 1;
  68. }
  69. void C(int i)
  70. {
  71. context* c = Context();
  72. c->NextCond = i;
  73. }
  74. void S()
  75. {
  76. context* c = Context();
  77. c->NextSet = 1;
  78. }
  79. void IPLD(int* Code, reg* Dest)
  80. {
  81. context* c = Context();
  82. switch (*Code)
  83. {
  84. case PLD: c->NextCond=15; c->NextByte=1; *Code = LDR; *Dest=PC; break;
  85. case PLD_PRE: c->NextCond=15; c->NextByte=1; *Code = LDR_PRE; *Dest=PC; break;
  86. case PLD_POST: c->NextCond=15; c->NextByte=1; *Code = LDR_POST; *Dest=PC; break;
  87. case PLD_PRESUB: c->NextCond=15; c->NextByte=1; *Code = LDR_PRESUB; *Dest=PC; break;
  88. case PLD_POSTSUB: c->NextCond=15; c->NextByte=1; *Code = LDR_POSTSUB; *Dest=PC; break;
  89. }
  90. }
  91. #define MODE(x) ((uint32_t)(x) >> 28)
  92. #define MODEMASK ~0xF0000000
  93. void I3C(int Code, reg Dest, reg Op1, reg Op2,int Const)
  94. {
  95. context* c = Context();
  96. dyninst* p = NULL;
  97. if (MODE(Code) == 8 && Const>=0 && Const<8)
  98. {
  99. p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 12) | ((Op1 & 15) << 16) | ((Op2 & 15) << 0) | (Const << 20),
  100. Dest, Op1, Op2, (c->NextCond != AL)?1:0, 0);
  101. }
  102. InstPost(p);
  103. }
  104. void I3(int Code, reg Dest, reg Op1, reg Op2)
  105. {
  106. context* c = Context();
  107. if (MODE(Code) == 4)
  108. {
  109. dyninst* p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 0) | ((Op1 & 15) << 12) | ((Op2 & 15) << 16),
  110. Dest, Op1, Op2, (c->NextCond != AL)?1:0, 0);
  111. InstPost(p);
  112. }
  113. else
  114. if (MODE(Code) == 7)
  115. {
  116. dyninst* p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 12) | ((Op1 & 15) << 16) | ((Op2 & 15) << 0),
  117. Dest, Op1, Op2, (c->NextCond != AL)?1:0, 0);
  118. InstPost(p);
  119. }
  120. else
  121. I3S(Code,Dest,Op1,Op2,LSL,0);
  122. }
  123. void I3S(int Code, reg Dest, reg Op1, reg Op2, int ShiftType, int Shift)
  124. {
  125. context* c = Context();
  126. dyninst* p = NULL;
  127. if (Shift == 0)
  128. ShiftType = LSL;
  129. if (ShiftType == LSL && Shift < 0)
  130. {
  131. ShiftType = LSR;
  132. Shift = -Shift;
  133. }
  134. if ((ShiftType == LSR || ShiftType == ASR) && Shift < 0)
  135. {
  136. ShiftType = LSL;
  137. Shift = -Shift;
  138. }
  139. if (ShiftType == ROR && Shift < 0)
  140. Shift = Shift & 31;
  141. if (Shift >= 0 && Shift < 32)
  142. {
  143. if (Code >= 0 && Code < 16)
  144. {
  145. if (Code == CMP || Code == TST || Code == CMN || Code == TEQ) 
  146. c->NextSet = 1;
  147. p = InstCreate32((c->NextCond << 28) | (Code << 21) | ((c->NextSet?1:0)<<20) |
  148. ((Op1==NONE?R0:Op1) << 16) | ((Dest==NONE?R0:Dest) << 12) | (Shift << 7) | (ShiftType << 5) | (Op2),
  149. Dest, Op1, Op2, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  150. }
  151. if (Shift == 0)
  152. {
  153. if (Code == MUL && Dest != Op1)
  154. {
  155. p = InstCreate32((c->NextCond << 28) | ((c->NextSet?1:0)<<20) |
  156. (Dest << 16) | (Op2 << 8) | 0x90 | (Op1),
  157. Dest, Op1, Op2, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  158. }
  159. if (Code >= QADD && Code <= QDSUB)
  160. {
  161. p = InstCreate32((c->NextCond << 28) | 
  162. (Dest << 12) | (Op1) | (Op2 << 16) | (0x5 << 4) | (1<<24) | ((Code-QADD)<<21),
  163. Dest, Op1, Op2, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  164. }
  165. }
  166. IPLD(&Code,&Dest);
  167. if (Code == LDR || Code == STR || 
  168. Code == LDR_PRE || Code == STR_PRE || 
  169. Code == LDR_POST|| Code == STR_POST ||
  170. Code == LDR_PRESUB || Code == STR_PRESUB || 
  171. Code == LDR_POSTSUB || Code == STR_POSTSUB)
  172. {
  173. bool_t Pre = (Code != LDR_POST) && (Code != STR_POST) && (Code != LDR_POSTSUB) && (Code != STR_POSTSUB);
  174. bool_t PreWrite = (Code == LDR_PRE) || (Code == STR_PRE) || (Code == LDR_PRESUB) || (Code == STR_PRESUB);
  175. bool_t Load = (Code == LDR) || (Code == LDR_PRE) || (Code == LDR_POST) || (Code == LDR_PRESUB) || (Code == LDR_POSTSUB);
  176. bool_t Unsigned = (Code != LDR_PRESUB) && (Code != STR_PRESUB) && (Code != LDR_POSTSUB) && (Code != STR_POSTSUB);
  177. if (c->NextHalf || c->NextSign)
  178. {
  179. if (Shift==0 && (c->NextHalf || c->NextByte))
  180. p = InstCreate32((c->NextCond << 28) | 
  181. ((Pre?1:0)<<24) | (Unsigned<<23) | 
  182. ((PreWrite?1:0)<<21) | (Load<<20) | (c->NextSign << 6) | (c->NextHalf << 5) |
  183. (Op1 << 16) | (Dest << 12) | (9 << 4) | Op2,
  184. NONE, Op1, Op2, (c->NextCond != AL)?1:0, 0);
  185. }
  186. else
  187. p = InstCreate32((c->NextCond << 28) | (3 << 25) |
  188. ((Pre?1:0)<<24) | (Unsigned<<23) | (c->NextByte<<22) |
  189. ((PreWrite?1:0)<<21) | (Load<<20) |
  190. (Op1 << 16) | (Dest << 12) | (Shift << 7) | (ShiftType << 5) | Op2,
  191. NONE, Op1, Op2, (c->NextCond != AL)?1:0, 0);
  192. if (p)
  193. {
  194. if (Load)
  195. p->WrRegs |= 1 << Dest;
  196. else
  197. p->RdRegs |= 1 << Dest;
  198. if (!Pre || PreWrite)
  199. p->WrRegs |= 1 << Op1;
  200. }
  201. }
  202. }
  203. InstPost(p);
  204. }
  205. void I4(int Code, reg Dest, reg Op1, reg Op2, reg Op3)
  206. {
  207. context* c = Context();
  208. dyninst* p = NULL;
  209. if (Code == MLA)
  210. {
  211. p = InstCreate32((c->NextCond << 28) | (1 << 21) | ((c->NextSet?1:0)<<20) |
  212. (Dest << 16) | (Op3 << 12) | (Op2 << 8) | 0x90 | (Op1),
  213. Dest, Op1, Op2, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  214. if (p) p->RdRegs |= 1 << Op3;
  215. }
  216. InstPost(p);
  217. }
  218. void IMul(reg Dest, reg Op1, int Mul)
  219. {
  220. if (Dest == Op1)
  221. InstPost(NULL); //assert
  222. switch (Mul)
  223. {
  224. case 0: I2C(MOV,Dest,NONE,0); break;
  225. case 1: I3(MOV,Dest,NONE,Op1); break;
  226. case 2: I3S(MOV,Dest,NONE,Op1,LSL,1); break;
  227. case 3: I3S(ADD,Dest,Op1,Op1,LSL,1); break;
  228. case 4: I3S(MOV,Dest,NONE,Op1,LSL,2); break;
  229. case 5: I3S(ADD,Dest,Op1,Op1,LSL,2); break;
  230. case 6: I3S(MOV,Dest,NONE,Op1,LSL,1); I3S(ADD,Dest,Dest,Dest,LSL,1); break; //2*3
  231. case 7: I3S(RSB,Dest,Op1,Op1,LSL,3); break;
  232. case 8: I3S(MOV,Dest,NONE,Op1,LSL,3); break;
  233. case 9: I3S(ADD,Dest,Op1,Op1,LSL,3); break;
  234. case 10: I3S(MOV,Dest,NONE,Op1,LSL,1); I3S(ADD,Dest,Dest,Dest,LSL,2); break; //2*5
  235. case 11: I3S(RSB,Dest,Op1,Op1,LSL,3); I3S(ADD,Dest,Dest,Op1,LSL,2); break;  //7+4
  236. case 12: I3S(ADD,Dest,Op1,Op1,LSL,1); I3S(MOV,Dest,NONE,Dest,LSL,2); break; //3*4
  237. case 13: I3S(ADD,Dest,Op1,Op1,LSL,3); I3S(ADD,Dest,Dest,Op1,LSL,2); break;  //9+4
  238. case 14: I3S(RSB,Dest,Op1,Op1,LSL,3); I3(ADD,Dest,Dest,Dest); break;  //7*2
  239. case 15: I3S(RSB,Dest,Op1,Op1,LSL,4); break;
  240. case 16: I3S(MOV,Dest,NONE,Op1,LSL,4); break;
  241. case 17: I3S(ADD,Dest,Op1,Op1,LSL,4); break;
  242. default: I2C(MOV,Dest,NONE,Mul); I3(MUL,Dest,Op1,Dest); break;
  243. }
  244. }
  245. void IConst(reg Dest, int Const)
  246. {
  247. context* c = Context();
  248. dyninst* p = NULL;
  249. int Shift,Code;
  250. if (Const < 0)
  251. {
  252. Code = MVN;
  253. Const = -Const-1;
  254. }
  255. else
  256. Code = MOV;
  257. Const = (Const << 8) | ((Const >> 24) & 255);
  258. for (Shift=8;Shift<=32;Shift+=2)
  259. {
  260. if (Const & 0xC0)
  261. break;
  262. Const = (Const << 2) | ((Const >> 30) & 3);
  263. }
  264. Shift &= 31;
  265. Const &= 255;
  266. p = InstCreate32((c->NextCond << 28) | (1<<25) | (Code << 21) | ((c->NextSet?1:0)<<20) |
  267. (Dest << 12) | (Shift << 7) | Const,
  268. Dest, NONE, NONE, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  269. InstPost(p);
  270. }
  271. void I2(int Code, reg Dest, reg Op1)
  272. {
  273. context* c = Context();
  274. if (MODE(Code) == 1)
  275. {
  276. dyninst* p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 16) | ((Op1 & 15) << 12),
  277. Dest, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  278. InstPost(p);
  279. }
  280. else
  281. if (MODE(Code) == 6)
  282. {
  283. dyninst* p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 12) | ((Op1 & 15) << 16),
  284. Dest, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  285. InstPost(p);
  286. }
  287. else
  288. I2C(Code,Dest,Op1,0);
  289. }
  290. void I2C(int Code, reg Dest, reg Op1, int Const)
  291. {
  292. int Shift;
  293. context* c = Context();
  294. dyninst* p = NULL;
  295. if (MODE(Code) == 2 && Const>=0 && Const<8)
  296. {
  297. p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 16) | ((Op1 & 15) << 12) | (Const << 0),
  298. Dest, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  299. }
  300. if (MODE(Code) == 9 && Const>=0 && Const<256)
  301. {
  302. p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 12) | ((Op1 & 15) << 16) | ((Const & 15) << 0) | ((Const & 0xF0) << 16),
  303. Dest, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  304. }
  305. if (MODE(Code) == 15)
  306. {
  307. if (Const<0)
  308. {
  309. Code ^= (1<<23);
  310. Const = -Const;
  311. }
  312. if (Code & 256) // dword or qword
  313. {
  314. if (Const & 3)
  315. Const = -1;
  316. else
  317. Const >>= 2;
  318. }
  319. if (Const>=0 && Const<256)
  320. {
  321. p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | ((Dest & 15) << 12) | ((Op1 & 15) << 16) | (Const << 0),
  322. NONE, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  323. if (Code & (1<<20))
  324. p->WrRegs |= 1 << Dest;
  325. else
  326. p->RdRegs |= 1 << Dest;
  327. if (!(Code & (1<<24)) || (Code & (1<<21)))
  328. p->WrRegs |= 1 << Op1;
  329. }
  330. }
  331. if (Code >= 0 && Code < 16)
  332. {
  333. if (Code == MOV && Const < 0)
  334. {
  335. Code = MVN;
  336. Const = -Const-1;
  337. }
  338. else
  339. if (Code == ADD && Const < 0)
  340. {
  341. Code = SUB;
  342. Const = -Const;
  343. }
  344. else
  345. if (Code == SUB && Const < 0)
  346. {
  347. Code = ADD;
  348. Const = -Const;
  349. }
  350. if (Code == CMP || Code == TST || Code == CMN || Code == TEQ) 
  351. c->NextSet = 1;
  352. for (Shift = 0;Shift<32;Shift+=2)
  353. {
  354. if (Const >= 0 && Const <= 255)
  355. break;
  356. Const = (Const << 2) | ((Const >> 30) & 3);
  357. }
  358. if (Const >= 0 && Const <= 255)
  359. p = InstCreate32((c->NextCond << 28) | (1<<25) | (Code << 21) | ((c->NextSet?1:0)<<20) |
  360. ((Op1==NONE?R0:Op1) << 16) | ((Dest==NONE?R0:Dest) << 12) | (Shift << 7) | Const,
  361. Dest, Op1, NONE, (c->NextCond != AL)?1:0, c->NextSet?1:0);
  362. }
  363. IPLD(&Code,&Dest);
  364. if (Code == LDR || Code == STR || 
  365. Code == LDR_PRE || Code == STR_PRE || 
  366. Code == LDR_POST|| Code == STR_POST ||
  367. Code == LDR_PRESUB || Code == STR_PRESUB || 
  368. Code == LDR_POSTSUB || Code == STR_POSTSUB)
  369. {
  370. bool_t Pre = (Code != LDR_POST) && (Code != STR_POST) && (Code != LDR_POSTSUB) && (Code != STR_POSTSUB);
  371. bool_t PreWrite = (Code == LDR_PRE) || (Code == STR_PRE) || (Code == LDR_PRESUB) || (Code == STR_PRESUB);
  372. bool_t Load = (Code == LDR) || (Code == LDR_PRE) || (Code == LDR_POST) || (Code == LDR_PRESUB) || (Code == LDR_POSTSUB);
  373. bool_t Unsigned = (Code != LDR_PRESUB) && (Code != STR_PRESUB) && (Code != LDR_POSTSUB) && (Code != STR_POSTSUB);
  374. if (Const == 0)
  375. {
  376. Pre = 1;
  377. PreWrite = 0;
  378. }
  379. if (Const < 0)
  380. {
  381. Const = -Const;
  382. Unsigned = !Unsigned;
  383. }
  384. if (c->NextHalf || c->NextSign)
  385. {
  386. if (Const >= 0 && Const < 256 && (c->NextHalf || c->NextByte))
  387. p = InstCreate32((c->NextCond << 28) | 
  388. ((Pre?1:0)<<24) | (Unsigned<<23) | (1 << 22) |
  389. ((PreWrite?1:0)<<21) | (Load<<20) | (c->NextSign << 6) | (c->NextHalf << 5) |
  390. (Op1 << 16) | (Dest << 12) | ((Const >> 4) << 8) | (9 << 4) | (Const & 15),
  391. NONE, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  392. }
  393. else
  394. if (Const >= 0 && Const < 4096)
  395. p = InstCreate32((c->NextCond << 28) | (1 << 26) |
  396. ((Pre?1:0)<<24) | (Unsigned<<23) | (c->NextByte<<22) |
  397. ((PreWrite?1:0)<<21) | (Load<<20) |
  398. (Op1 << 16) | (Dest << 12) | Const,
  399. NONE, Op1, NONE, (c->NextCond != AL)?1:0, 0);
  400. if (p)
  401. {
  402. if (Load)
  403. p->WrRegs |= 1 << Dest;
  404. else
  405. p->RdRegs |= 1 << Dest;
  406. if (!Pre || PreWrite)
  407. p->WrRegs |= 1 << Op1;
  408. }
  409. }
  410. InstPost(p);
  411. }
  412. void I1P(int Code, reg Dest, dyninst* Block, int Ofs)
  413. {
  414. context* c = Context();
  415. dyninst* p = NULL;
  416. if (MODE(Code)==15)
  417. {
  418. p = InstCreate32((c->NextCond << 28) | (Code & MODEMASK) | (PC << 16) | ((Dest & 15) << 12),
  419. Dest, PC, NONE, (c->NextCond != AL)?1:0, 0);
  420. if (p)
  421. {
  422. p->Tag = Ofs;
  423. p->ReAlloc = Block;
  424. }
  425. }
  426. if (Code == LDR || Code == STR)
  427. {
  428. int Load = (Code == LDR);
  429. p = InstCreate32((c->NextCond << 28) | (1 << 26) |
  430. (1<<24) | (c->NextByte<<22) | (Load<<20) |
  431. (PC << 16) | (Dest << 12),
  432. Dest, PC, NONE, (c->NextCond != AL)?1:0, 0);
  433. if (p)
  434. {
  435. p->Tag = Ofs;
  436. p->ReAlloc = Block;
  437. }
  438. }
  439. else
  440. if (Code == MOV) // ADD|SUB,Dst,R15,Ofs
  441. {
  442. p = InstCreate32((c->NextCond << 28) |
  443. (1<<25) | (PC << 16) | (Dest << 12),
  444. Dest, PC, NONE, (c->NextCond != AL)?1:0, 0);
  445. if (p)
  446. {
  447. p->Tag = Ofs;
  448. p->ReAlloc = Block;
  449. }
  450. }
  451. InstPost(p);
  452. }
  453. void I0P(int Code, int Cond, dyninst* Target)
  454. {
  455. dyninst* p = NULL;
  456. if (Code == B || Code == BL)
  457. {
  458. p = InstCreate32((Cond << 28) | (5 << 25) | ((Code == BL?1:0)<<24),
  459. PC, NONE, NONE, (Cond != AL)?1:0, 0);
  460. if (p)
  461. {
  462. if (Code == BL)
  463. p->WrRegs |= 1 << LR;
  464. p->ReAlloc = Target;
  465. p->Branch = 1;
  466. }
  467. }
  468. InstPost(p);
  469. }
  470. void Break()
  471. {
  472. context* c = Context();
  473. dyninst* p = InstCreate32((c->NextCond << 28) | (15 << 24),NONE,NONE,NONE,0,0);
  474. if (p)
  475. p->Branch = 1;
  476. InstPost(p);
  477. }
  478. void CodeBegin()
  479. {
  480. int i;
  481. dyninst* p = InstCreate32(0xE92D5FF0,SP,NONE,NONE,0,0);
  482. if (p)
  483. for (i=4;i<16;++i)
  484. p->RdRegs |= 1 << i;
  485. InstPost(p);
  486. }
  487. void CodeEnd()
  488. {
  489. int i;
  490. dyninst* p = InstCreate32(0xE8BD9FF0,SP,NONE,NONE,0,0);
  491. if (p)
  492. for (i=4;i<16;++i)
  493. p->WrRegs |= 1 << i;
  494. InstPost(p);
  495. }
  496. bool_t InstReAlloc(dyninst* p,dyninst* ReAlloc)
  497. {
  498. int Diff = ReAlloc->Address - (p->Address+8);
  499. int* Code = (int*) InstCode(p);
  500. if (((*Code >> 25) & 7) == 6) //wldr,wstr
  501. {
  502. int Ofs = Diff + p->Tag;
  503. int OfsUnsigned = 1;
  504. if (Ofs < 0)
  505. {
  506. Ofs = -Ofs;
  507. OfsUnsigned = 0;
  508. }
  509. if (*Code & 256)
  510. {
  511. if (Ofs & 3)
  512. Ofs = 256;
  513. else
  514. Ofs >>= 2;
  515. }
  516. if (Ofs < 256)
  517. {
  518. *Code &= ~(1<<23);
  519. *Code |= OfsUnsigned<<23;
  520. *Code &= ~255;
  521. *Code |= Ofs;
  522. return 1;
  523. }
  524. DEBUG_MSG1(-1,T("Realloc failed for wldr,wstr %d"),Ofs);
  525. }
  526. else
  527. if (((*Code >> 25) & 7) == 5) //branch
  528. {
  529. *Code &= 0xFF000000;
  530. *Code |= (Diff >> 2) & ~0xFF000000;
  531. return 1;
  532. }
  533. else
  534. if (((*Code >> 25) & 7) == 1) //add dest,pc,#const
  535. {
  536. int Shift;
  537. int Ofs = Diff + p->Tag;
  538. *Code &= ~((15 << 21)|4095);
  539. if (Ofs < 0)
  540. {
  541. Ofs = -Ofs;
  542. *Code |= (SUB << 21);
  543. }
  544. else
  545. *Code |= (ADD << 21);
  546. for (Shift = 0;Shift<32;Shift+=2)
  547. {
  548. if (Ofs >= 0 && Ofs <= 255)
  549. break;
  550. Ofs = (Ofs << 2) | ((Ofs >> 30) & 3);
  551. }
  552. if (Ofs >= 0 && Ofs <= 255)
  553. {
  554. *Code |= (Shift << 7) | Ofs;
  555. return 1;
  556. }
  557. DEBUG_MSG1(-1,T("Realloc failed for add dest,pc,#const %d"),Ofs);
  558. }
  559. else
  560. if (((*Code >> 25) & 7) == 2) //ldr,str
  561. {
  562. int Ofs = Diff + p->Tag;
  563. int OfsUnsigned = 1;
  564. if (Ofs < 0)
  565. {
  566. Ofs = -Ofs;
  567. OfsUnsigned = 0;
  568. }
  569. if (Ofs < 4096)
  570. {
  571. *Code &= ~(1<<23);
  572. *Code |= OfsUnsigned<<23;
  573. *Code &= ~4095;
  574. *Code |= Ofs;
  575. return 1;
  576. }
  577. DEBUG_MSG1(-1,T("Realloc failed for ldr,str %d"),Ofs);
  578. }
  579. return 0;
  580. }
  581. #endif