OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Mips64Context
(Results
1 - 3
of
3
) sorted by null
/art/runtime/arch/mips64/
context_mips64.cc
28
void
Mips64Context
::Reset() {
35
sp_ =
Mips64Context
::kBadGprBase + SP;
36
t9_ =
Mips64Context
::kBadGprBase + T9;
40
void
Mips64Context
::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) {
58
void
Mips64Context
::SetGPR(uint32_t reg, uintptr_t value) {
65
void
Mips64Context
::SetFPR(uint32_t reg, uintptr_t value) {
72
void
Mips64Context
::SmashCallerSaves() {
114
void
Mips64Context
::DoLongJump() {
118
gprs[i] = gprs_[i] != nullptr ? *gprs_[i] :
Mips64Context
::kBadGprBase + i;
121
fprs[i] = fprs_[i] != nullptr ? *fprs_[i] :
Mips64Context
::kBadFprBase + i
[
all
...]
context_mips64.h
29
class
Mips64Context
: public Context {
31
Mips64Context
() {
34
virtual ~
Mips64Context
() {}
/art/runtime/arch/
context-inl.h
36
#define RUNTIME_CONTEXT_TYPE mips64::
Mips64Context
Completed in 246 milliseconds