• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/

Lines Matching refs:offset

51 // at an offset from one you already know.  When patching code to optimize it
58 CodeLocationInstruction instructionAtOffset(int offset);
59 CodeLocationLabel labelAtOffset(int offset);
60 CodeLocationJump jumpAtOffset(int offset);
61 CodeLocationCall callAtOffset(int offset);
62 CodeLocationNearCall nearCallAtOffset(int offset);
63 CodeLocationDataLabelPtr dataLabelPtrAtOffset(int offset);
64 CodeLocationDataLabel32 dataLabel32AtOffset(int offset);
65 CodeLocationDataLabelCompact dataLabelCompactAtOffset(int offset);
66 CodeLocationConvertibleLoad convertibleLoadAtOffset(int offset);
160 inline CodeLocationInstruction CodeLocationCommon::instructionAtOffset(int offset)
162 ASSERT_VALID_CODE_OFFSET(offset);
163 return CodeLocationInstruction(reinterpret_cast<char*>(dataLocation()) + offset);
166 inline CodeLocationLabel CodeLocationCommon::labelAtOffset(int offset)
168 ASSERT_VALID_CODE_OFFSET(offset);
169 return CodeLocationLabel(reinterpret_cast<char*>(dataLocation()) + offset);
172 inline CodeLocationJump CodeLocationCommon::jumpAtOffset(int offset)
174 ASSERT_VALID_CODE_OFFSET(offset);
175 return CodeLocationJump(reinterpret_cast<char*>(dataLocation()) + offset);
178 inline CodeLocationCall CodeLocationCommon::callAtOffset(int offset)
180 ASSERT_VALID_CODE_OFFSET(offset);
181 return CodeLocationCall(reinterpret_cast<char*>(dataLocation()) + offset);
184 inline CodeLocationNearCall CodeLocationCommon::nearCallAtOffset(int offset)
186 ASSERT_VALID_CODE_OFFSET(offset);
187 return CodeLocationNearCall(reinterpret_cast<char*>(dataLocation()) + offset);
190 inline CodeLocationDataLabelPtr CodeLocationCommon::dataLabelPtrAtOffset(int offset)
192 ASSERT_VALID_CODE_OFFSET(offset);
193 return CodeLocationDataLabelPtr(reinterpret_cast<char*>(dataLocation()) + offset);
196 inline CodeLocationDataLabel32 CodeLocationCommon::dataLabel32AtOffset(int offset)
198 ASSERT_VALID_CODE_OFFSET(offset);
199 return CodeLocationDataLabel32(reinterpret_cast<char*>(dataLocation()) + offset);
202 inline CodeLocationDataLabelCompact CodeLocationCommon::dataLabelCompactAtOffset(int offset)
204 ASSERT_VALID_CODE_OFFSET(offset);
205 return CodeLocationDataLabelCompact(reinterpret_cast<char*>(dataLocation()) + offset);
208 inline CodeLocationConvertibleLoad CodeLocationCommon::convertibleLoadAtOffset(int offset)
210 ASSERT_VALID_CODE_OFFSET(offset);
211 return CodeLocationConvertibleLoad(reinterpret_cast<char*>(dataLocation()) + offset);