summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/code_generator_x86.h
diff options
context:
space:
mode:
authorRoland Levillain <rpl@google.com>2015-04-21 16:09:29 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-21 16:09:30 +0000
commit4bb014fd8e0aa45b012d56bc4813f18fa295d2b0 (patch)
treeba5fa5beef6e2c4a91ec5bbe7b0ed81b168b4958 /compiler/optimizing/code_generator_x86.h
parentd677de20906067061f262bdd434536a02e7f0dd0 (diff)
parent232ade0b9401404ad4b61b1003551b58b96195a8 (diff)
downloadart-4bb014fd8e0aa45b012d56bc4813f18fa295d2b0.zip
art-4bb014fd8e0aa45b012d56bc4813f18fa295d2b0.tar.gz
art-4bb014fd8e0aa45b012d56bc4813f18fa295d2b0.tar.bz2
Merge "Revert "Revert "Optimizing: Fix long-to-fp conversion on x86."""
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r--compiler/optimizing/code_generator_x86.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h
index 07476c6..8bd3cd3 100644
--- a/compiler/optimizing/code_generator_x86.h
+++ b/compiler/optimizing/code_generator_x86.h
@@ -174,8 +174,10 @@ class InstructionCodeGeneratorX86 : public HGraphVisitor {
void GenerateMemoryBarrier(MemBarrierKind kind);
void HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info);
void HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info);
+ // Push value to FPU stack. `is_fp` specifies whether the value is floating point or not.
+ // `is_wide` specifies whether it is long/double or not.
void PushOntoFPStack(Location source, uint32_t temp_offset,
- uint32_t stack_adjustment, bool is_float);
+ uint32_t stack_adjustment, bool is_fp, bool is_wide);
void GenerateImplicitNullCheck(HNullCheck* instruction);
void GenerateExplicitNullCheck(HNullCheck* instruction);