| Index: runtime/vm/assembler_arm64_test.cc
|
| ===================================================================
|
| --- runtime/vm/assembler_arm64_test.cc (revision 35109)
|
| +++ runtime/vm/assembler_arm64_test.cc (working copy)
|
| @@ -1177,10 +1177,10 @@
|
|
|
| // Loading immediate values with the object pool.
|
| ASSEMBLER_TEST_GENERATE(LoadImmediatePPSmall, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadImmediate(R0, 42, PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1192,10 +1192,10 @@
|
|
|
|
|
| ASSEMBLER_TEST_GENERATE(LoadImmediatePPMed, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadImmediate(R0, 0xf1234123, PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1207,10 +1207,10 @@
|
|
|
|
|
| ASSEMBLER_TEST_GENERATE(LoadImmediatePPMed2, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadImmediate(R0, 0x4321f1234124, PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1222,10 +1222,10 @@
|
|
|
|
|
| ASSEMBLER_TEST_GENERATE(LoadImmediatePPLarge, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadImmediate(R0, 0x9287436598237465, PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1239,10 +1239,10 @@
|
|
|
| // LoadObject null.
|
| ASSEMBLER_TEST_GENERATE(LoadObjectNull, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadObject(R0, Object::null_object(), PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1255,10 +1255,10 @@
|
|
|
|
|
| ASSEMBLER_TEST_GENERATE(LoadObjectTrue, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadObject(R0, Bool::True(), PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
| @@ -1271,10 +1271,10 @@
|
|
|
|
|
| ASSEMBLER_TEST_GENERATE(LoadObjectFalse, assembler) {
|
| - __ Push(PP); // Save caller's pool pointer and load a new one here.
|
| + __ PushPP(); // Save caller's pool pointer and load a new one here.
|
| __ LoadPoolPointer(PP);
|
| __ LoadObject(R0, Bool::False(), PP);
|
| - __ Pop(PP);
|
| + __ PopPP();
|
| __ ret();
|
| }
|
|
|
|
|