Skip to content

Commit a69bb4d

Browse files
Alex Malyshevfacebook-github-bot
Alex Malyshev
authored andcommitted
Fix return type of LongBinaryOp<Power>
Summary: It will return a float when the exponent is negative. Caught when running tests with AutoJIT + type profiling. I don't see other instances of `Float | Long` types in HIR anywhere yet, but it appears to work fine. Reviewed By: mpage, swtaarrs Differential Revision: D50091025 fbshipit-source-id: 77ad3b50a48da9c28bf43f776a163c88e068d8f3
1 parent 769fcb5 commit a69bb4d

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

Jit/hir/ssa.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,10 @@ Type outputType(
517517
if (binop.op() == BinaryOpKind::kTrueDivide) {
518518
return TFloatExact;
519519
}
520+
if (binop.op() == BinaryOpKind::kPower) {
521+
// Will be floating-point for negative exponents.
522+
return TFloatExact | TLongExact;
523+
}
520524
return TLongExact;
521525
}
522526
case Opcode::kLongCompare:

RuntimeTests/hir_tests/profile_data_hir_test.txt

+69
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,75 @@ fun jittestmodule:test {
308308
}
309309
}
310310
---
311+
SpecializePowerHasCorrectType
312+
---
313+
class Point:
314+
def __init__(self, x, y):
315+
self.x = x
316+
self.y = y
317+
318+
__slots__ = ("x", "y")
319+
320+
def test(p):
321+
return p.x ** p.y
322+
323+
test(Point(1, -2))
324+
---
325+
fun jittestmodule:test {
326+
bb 0 {
327+
v4:Object = LoadArg<0; "p">
328+
Snapshot
329+
v6:ObjectUser[Point:Exact] = GuardType<ObjectUser[Point:Exact]> v4 {
330+
GuiltyReg v4
331+
}
332+
DeoptPatchpoint<0xdeadbeef> {
333+
Descr 'member descriptor attribute'
334+
GuiltyReg v6
335+
}
336+
UseType<ObjectUser[Point:Exact]> v6
337+
v14:OptObject = LoadField<x@16, OptObject, borrowed> v6
338+
v15:Object = CheckField<"x"> v14 {
339+
GuiltyReg v6
340+
FrameState {
341+
NextInstrOffset 4
342+
Locals<1> v6
343+
}
344+
}
345+
Snapshot
346+
DeoptPatchpoint<0xdeadbeef> {
347+
Descr 'member descriptor attribute'
348+
GuiltyReg v6
349+
}
350+
UseType<ObjectUser[Point:Exact]> v6
351+
v16:OptObject = LoadField<y@24, OptObject, borrowed> v6
352+
v17:Object = CheckField<"y"> v16 {
353+
GuiltyReg v6
354+
FrameState {
355+
NextInstrOffset 8
356+
Locals<1> v6
357+
Stack<1> v15
358+
}
359+
}
360+
Snapshot
361+
v11:LongExact = GuardType<LongExact> v15 {
362+
GuiltyReg v15
363+
}
364+
v12:LongExact = GuardType<LongExact> v17 {
365+
GuiltyReg v17
366+
}
367+
UseType<LongExact> v11
368+
UseType<LongExact> v12
369+
v18:{FloatExact|LongExact} = LongBinaryOp<Power> v11 v12 {
370+
FrameState {
371+
NextInstrOffset 10
372+
Locals<1> v6
373+
}
374+
}
375+
Snapshot
376+
Return v18
377+
}
378+
}
379+
---
311380
SpecializeSplitDictLoadAttr
312381
---
313382
class Person:

0 commit comments

Comments
 (0)