Home
last modified time | relevance | path

Searched refs:virtualSlot (Results 1 – 15 of 15) sorted by relevance

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java246 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
248 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
250 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
255 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
256 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
264 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
267 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
268 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
270 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java246 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
248 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
250 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
255 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
256 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
264 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
267 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
268 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
270 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java246 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
248 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
250 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
255 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
256 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
264 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
267 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
268 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
270 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java272 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
274 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
276 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
281 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
282 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
290 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
293 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
294 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
296 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java246 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
248 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
250 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
255 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
256 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
264 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
267 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
268 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
270 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java272 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
274 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
276 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
281 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
282 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
290 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
293 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
294 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
296 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DSimpleStackSlotAllocator.java62 for (VirtualStackSlot virtualSlot : builder.getStackSlots()) { in allocateStackSlots()
64 if (virtualSlot instanceof SimpleVirtualStackSlot) { in allocateStackSlots()
65 slot = mapSimpleVirtualStackSlot(builder, (SimpleVirtualStackSlot) virtualSlot); in allocateStackSlots()
66 … virtualFramesize.add(debug, builder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())); in allocateStackSlots()
67 } else if (virtualSlot instanceof VirtualStackSlotRange) { in allocateStackSlots()
68 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateStackSlots()
72 throw GraalError.shouldNotReachHere("Unknown VirtualStackSlot: " + virtualSlot); in allocateStackSlots()
75 mapping[virtualSlot.getId()] = slot; in allocateStackSlots()
H A DLSStackSlotAllocator.java272 VirtualStackSlot virtualSlot = current.getOperand(); in allocateSlot() local
274 if (virtualSlot instanceof VirtualStackSlotRange) { in allocateSlot()
276 VirtualStackSlotRange slotRange = (VirtualStackSlotRange) virtualSlot; in allocateSlot()
281 …assert virtualSlot instanceof SimpleVirtualStackSlot : "Unexpected VirtualStackSlot type: " + virt… in allocateSlot()
282 StackSlot slot = findFreeSlot((SimpleVirtualStackSlot) virtualSlot); in allocateSlot()
290 …Reuse stack slot %s (reallocated from %s) for virtual stack slot %s", location, slot, virtualSlot); in allocateSlot()
293 … location = frameMapBuilder.getFrameMap().allocateSpillSlot(virtualSlot.getValueKind()); in allocateSlot()
294 …irtualFramesize.add(debug, frameMapBuilder.getFrameMap().spillSlotSize(virtualSlot.getValueKind())… in allocateSlot()
296 … debug.log(BASIC_LEVEL, "New stack slot %s for virtual stack slot %s", location, virtualSlot); in allocateSlot()
/dports/devel/corrade/corrade-2020.06/src/Corrade/Interconnect/Test/
H A DTest.cpp68 void virtualSlot();
165 &Test::virtualSlot, in Test()
737 void Test::virtualSlot() { in virtualSlot() function in Corrade::Interconnect::Test::__anon9d7350ad0111::Test