OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dataLocation
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/JavaScriptCore/assembler/
CodeLocation.h
141
return CodeLocationInstruction(reinterpret_cast<char*>(
dataLocation
()) + offset);
147
return CodeLocationLabel(reinterpret_cast<char*>(
dataLocation
()) + offset);
153
return CodeLocationJump(reinterpret_cast<char*>(
dataLocation
()) + offset);
159
return CodeLocationCall(reinterpret_cast<char*>(
dataLocation
()) + offset);
165
return CodeLocationNearCall(reinterpret_cast<char*>(
dataLocation
()) + offset);
171
return CodeLocationDataLabelPtr(reinterpret_cast<char*>(
dataLocation
()) + offset);
177
return CodeLocationDataLabel32(reinterpret_cast<char*>(
dataLocation
()) + offset);
AbstractMacroAssembler.h
527
AssemblerType::linkJump(code, jump.m_jmp, target.
dataLocation
());
552
AssemblerType::relinkJump(jump.
dataLocation
(), destination.
dataLocation
());
557
AssemblerType::relinkCall(nearCall.
dataLocation
(), destination.executableAddress());
562
AssemblerType::repatchInt32(dataLabel32.
dataLocation
(), value);
567
AssemblerType::repatchPointer(dataLabelPtr.
dataLocation
(), value);
MacroAssemblerCodeRef.h
182
void*
dataLocation
() const { ASSERT_VALID_CODE_POINTER(m_value); return reinterpret_cast<char*>(m_value) - 1; }
184
void*
dataLocation
() const { ASSERT_VALID_CODE_POINTER(m_value); return m_value; }
MacroAssemblerSH4.cpp
72
SH4Assembler::relinkCall(call.
dataLocation
(), destination.executableAddress());
77
SH4Assembler::relinkCall(call.
dataLocation
(), destination.executableAddress());
MacroAssemblerX86.h
183
X86Assembler::relinkCall(call.
dataLocation
(), destination.executableAddress());
188
X86Assembler::relinkCall(call.
dataLocation
(), destination.executableAddress());
MacroAssemblerX86_64.h
470
X86Assembler::repatchPointer(call.dataLabelPtrAtOffset(-REPTACH_OFFSET_CALL_R11).
dataLocation
(), destination.executableAddress());
475
X86Assembler::repatchPointer(call.dataLabelPtrAtOffset(-REPTACH_OFFSET_CALL_R11).
dataLocation
(), destination.executableAddress());
MacroAssemblerARM.h
[
all
...]
MacroAssemblerARMv7.h
[
all
...]
MacroAssemblerMIPS.h
[
all
...]
/external/webkit/Source/JavaScriptCore/jit/
JITCode.h
83
return m_ref.m_code.
dataLocation
();
101
return JITCode(code.
dataLocation
(), 0, 0);
Completed in 128 milliseconds