Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: src/DartARM32/assembler_arm.h

Issue 1624383004: Add VMOV(immediate) instructions to the ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in previous patch. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | tests_lit/assembler/arm32/vmov-imm.ll » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/DartARM32/assembler_arm.h
diff --git a/src/DartARM32/assembler_arm.h b/src/DartARM32/assembler_arm.h
index c50fe4d39a3be59b50c464870bbf02491a7d5308..db9ae94418e15cfbeb0f75b7ae42c79c25481dae 100644
--- a/src/DartARM32/assembler_arm.h
+++ b/src/DartARM32/assembler_arm.h
@@ -631,11 +631,13 @@ class Assembler : public ValueObject {
void vmovd(DRegister dd, DRegister dm, Condition cond = AL);
void vmovq(QRegister qd, QRegister qm);
+#if 0
// Returns false if the immediate cannot be encoded.
+ // Moved to ARM32::AssemblerARM32::vmovs();
bool vmovs(SRegister sd, float s_imm, Condition cond = AL);
+ // Moved to ARM32::AssemblerARM32::vmovs();
bool vmovd(DRegister dd, double d_imm, Condition cond = AL);
-#if 0
// Moved to ARM32::AssemblerARM32::vldrs()
void vldrs(SRegister sd, Address ad, Condition cond = AL);
// Moved to Arm32::AssemblerARM32::vstrs()
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | tests_lit/assembler/arm32/vmov-imm.ll » ('J')

Powered by Google App Engine
This is Rietveld 408576698