OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:armcontext
(Results
1 - 3
of
3
) sorted by null
/art/runtime/arch/arm/
context_arm.cc
28
void
ArmContext
::Reset() {
35
sp_ =
ArmContext
::kBadGprBase + SP;
36
pc_ =
ArmContext
::kBadGprBase + PC;
40
void
ArmContext
::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) {
60
void
ArmContext
::SetGPR(uint32_t reg, uintptr_t value) {
67
void
ArmContext
::SetFPR(uint32_t reg, uintptr_t value) {
74
void
ArmContext
::SmashCallerSaves() {
101
void
ArmContext
::DoLongJump() {
105
gprs[i] = gprs_[i] != nullptr ? *gprs_[i] :
ArmContext
::kBadGprBase + i;
108
fprs[i] = fprs_[i] != nullptr ? *fprs_[i] :
ArmContext
::kBadFprBase + i
[
all
...]
context_arm.h
28
class
ArmContext
: public Context {
30
ArmContext
() {
34
virtual ~
ArmContext
() {}
/art/runtime/arch/
context.cc
39
return new arm::
ArmContext
();
Completed in 74 milliseconds