Lines Matching refs:CodeLocationCommon

56 class CodeLocationCommon : public MacroAssemblerCodePtr {
69 CodeLocationCommon() in CodeLocationCommon() function
73 CodeLocationCommon(MacroAssemblerCodePtr location) in CodeLocationCommon() function
79 class CodeLocationInstruction : public CodeLocationCommon {
83 : CodeLocationCommon(location) {} in CodeLocationInstruction()
85 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationInstruction()
88 class CodeLocationLabel : public CodeLocationCommon {
92 : CodeLocationCommon(location) {} in CodeLocationLabel()
94 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationLabel()
97 class CodeLocationJump : public CodeLocationCommon {
101 : CodeLocationCommon(location) {} in CodeLocationJump()
103 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationJump()
106 class CodeLocationCall : public CodeLocationCommon {
110 : CodeLocationCommon(location) {} in CodeLocationCall()
112 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationCall()
115 class CodeLocationNearCall : public CodeLocationCommon {
119 : CodeLocationCommon(location) {} in CodeLocationNearCall()
121 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationNearCall()
124 class CodeLocationDataLabel32 : public CodeLocationCommon {
128 : CodeLocationCommon(location) {} in CodeLocationDataLabel32()
130 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationDataLabel32()
133 class CodeLocationDataLabelCompact : public CodeLocationCommon {
137 : CodeLocationCommon(location) { } in CodeLocationDataLabelCompact()
139 : CodeLocationCommon(MacroAssemblerCodePtr(location)) { } in CodeLocationDataLabelCompact()
142 class CodeLocationDataLabelPtr : public CodeLocationCommon {
146 : CodeLocationCommon(location) {} in CodeLocationDataLabelPtr()
148 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} in CodeLocationDataLabelPtr()
151 class CodeLocationConvertibleLoad : public CodeLocationCommon {
155 : CodeLocationCommon(location) { } in CodeLocationConvertibleLoad()
157 : CodeLocationCommon(MacroAssemblerCodePtr(location)) { } in CodeLocationConvertibleLoad()
160 inline CodeLocationInstruction CodeLocationCommon::instructionAtOffset(int offset) in instructionAtOffset()
166 inline CodeLocationLabel CodeLocationCommon::labelAtOffset(int offset) in labelAtOffset()
172 inline CodeLocationJump CodeLocationCommon::jumpAtOffset(int offset) in jumpAtOffset()
178 inline CodeLocationCall CodeLocationCommon::callAtOffset(int offset) in callAtOffset()
184 inline CodeLocationNearCall CodeLocationCommon::nearCallAtOffset(int offset) in nearCallAtOffset()
190 inline CodeLocationDataLabelPtr CodeLocationCommon::dataLabelPtrAtOffset(int offset) in dataLabelPtrAtOffset()
196 inline CodeLocationDataLabel32 CodeLocationCommon::dataLabel32AtOffset(int offset) in dataLabel32AtOffset()
202 inline CodeLocationDataLabelCompact CodeLocationCommon::dataLabelCompactAtOffset(int offset) in dataLabelCompactAtOffset()
208 inline CodeLocationConvertibleLoad CodeLocationCommon::convertibleLoadAtOffset(int offset) in convertibleLoadAtOffset()