-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathOMRTreeEvaluator.cpp
810 lines (728 loc) · 30 KB
/
OMRTreeEvaluator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
/*******************************************************************************
* Copyright IBM Corp. and others 2000
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution
* and is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License, v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception [1] and GNU General Public
* License, version 2 with the OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] https://openjdk.org/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
*******************************************************************************/
#include "codegen/TreeEvaluator.hpp"
#include <stdint.h>
#include <stdio.h>
#include "codegen/CodeGenerator.hpp"
#include "env/FrontEnd.hpp"
#include "codegen/Register.hpp"
#include "codegen/TreeEvaluator.hpp"
#include "compile/Compilation.hpp"
#include "control/Options.hpp"
#include "control/Options_inlines.hpp"
#include "env/CompilerEnv.hpp"
#include "env/PersistentInfo.hpp"
#include "env/jittypes.h"
#include "il/Block.hpp"
#include "il/ILOpCodes.hpp"
#include "il/ILOps.hpp"
#include "il/MethodSymbol.hpp"
#include "il/Node.hpp"
#include "il/Node_inlines.hpp"
#include "il/RegisterMappedSymbol.hpp"
#include "il/StaticSymbol.hpp"
#include "il/Symbol.hpp"
#include "il/SymbolReference.hpp"
#include "il/TreeTop.hpp"
#include "il/TreeTop_inlines.hpp"
#include "infra/Assert.hpp"
#include "infra/Bit.hpp"
#include "infra/List.hpp"
#include "infra/TreeServices.hpp"
#include "ras/Debug.hpp"
TR::Register *
OMR::TreeEvaluator::brdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::bloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::brdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::bloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::srdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::sloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::srdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::sloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::irdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::iloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::irdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::iloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::lrdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::lloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::lrdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::lloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::ardbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::aloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::ardbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::aloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::frdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::floadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::frdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::floadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::drdbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The direct rdbar IL represents a load with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getFirstChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the load operation to the load evaluator.
return TR::TreeEvaluator::dloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::drdbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The indirect rdbar IL represents a load with side effects.
// Currently we don't use the side effect node (first child), so we delegate
// evaluation to the load evaluator (which will evaluate the first child as well).
return TR::TreeEvaluator::dloadEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::bwrtbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getSecondChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::bstoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::bwrtbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getThirdChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::bstoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::swrtbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getSecondChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::sstoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::swrtbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getThirdChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::sstoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::iwrtbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getSecondChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::istoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::iwrtbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getThirdChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::istoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::lwrtbarEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getSecondChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::lstoreEvaluator(node, cg);
}
TR::Register *
OMR::TreeEvaluator::lwrtbariEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
// The wrtbar IL op represents a store with side effects.
// Currently we don't use the side effect node. So just evaluate it and decrement the reference count.
TR::Node *sideEffectNode = node->getThirdChild();
cg->evaluate(sideEffectNode);
cg->decReferenceCount(sideEffectNode);
// Delegate the evaluation of the remaining children and the store operation to the storeEvaluator.
return TR::TreeEvaluator::lstoreEvaluator(node, cg);
}
bool OMR::TreeEvaluator::isStaticClassSymRef(TR::SymbolReference * symRef)
{
return (symRef && symRef->getSymbol() && symRef->getSymbol()->isStatic() && symRef->getSymbol()->isClassObject());
}
// unresolved casts or casts to things other than abstract or interface benefit from
// an equality test
bool OMR::TreeEvaluator::instanceOfOrCheckCastNeedEqualityTest(TR::Node * node, TR::CodeGenerator *cg)
{
TR::Node *castClassNode = node->getSecondChild();
TR::SymbolReference *castClassSymRef = castClassNode->getSymbolReference();
if (!TR::TreeEvaluator::isStaticClassSymRef(castClassSymRef))
{
return true;
}
TR::StaticSymbol *castClassSym = castClassSymRef->getSymbol()->getStaticSymbol();
if (castClassSymRef->isUnresolved())
{
return false;
}
else
{
TR_OpaqueClassBlock * clazz;
if (castClassSym
&& (clazz = (TR_OpaqueClassBlock *) castClassSym->getStaticAddress())
&& !TR::Compiler->cls.isInterfaceClass(cg->comp(), clazz)
&& (
!TR::Compiler->cls.isAbstractClass(cg->comp(), clazz)
// here be dragons
// int.class, char.class, etc are final & abstract
// usually instanceOf calls on these classes are ripped out by the optimizer
// but in some cases they can persist to codegen which without the following
// case causes assertions because we opt out of calling the helper and doing
// all inline tests. Really we could just jmp to the failed side, but to reduce
// service risk we are going to do an equality test that we know will fail
// NOTE final abstract is not enough - all array classes are final abstract
// to prevent them being used with new and being extended...
|| (TR::Compiler->cls.isAbstractClass(cg->comp(), clazz) && TR::Compiler->cls.isClassFinal(cg->comp(), clazz)
&& TR::Compiler->cls.isPrimitiveClass(cg->comp(), clazz)))
)
return true;
}
return false;
}
// resolved casts that are not to abstract, interface, or array need a super test
bool OMR::TreeEvaluator::instanceOfOrCheckCastNeedSuperTest(TR::Node * node, TR::CodeGenerator *cg)
{
TR::Node *castClassNode = node->getSecondChild();
TR::MethodSymbol *helperSym = node->getSymbol()->castToMethodSymbol();
TR::SymbolReference *castClassSymRef = castClassNode->getSymbolReference();
if (!TR::TreeEvaluator::isStaticClassSymRef(castClassSymRef))
{
// We could theoretically do a super test on something with no sym, but it would require significant
// changes to platform code. The benefit is little at this point (shows up from reference arraycopy reductions)
if (cg->supportsInliningOfIsInstance() &&
node->getOpCodeValue() == TR::instanceof &&
node->getSecondChild()->getOpCodeValue() != TR::loadaddr)
return true;
else
return false;
}
TR::StaticSymbol *castClassSym = castClassSymRef->getSymbol()->getStaticSymbol();
if (castClassSymRef->isUnresolved())
{
return false;
}
else
{
TR_OpaqueClassBlock * clazz;
// If the class is a regular class (i.e., not an interface nor an array) and
// not known to be a final class, an inline superclass test can be generated.
// If the helper does not preserve all the registers there will not be
// enough registers to do the superclass test inline.
// Also, don't generate the superclass test if optimizing for space.
//
if (castClassSym &&
(clazz = (TR_OpaqueClassBlock *) castClassSym->getStaticAddress()) &&
!TR::Compiler->cls.isClassArray(cg->comp(), clazz) &&
!TR::Compiler->cls.isInterfaceClass(cg->comp(), clazz) &&
!TR::Compiler->cls.isClassFinal(cg->comp(), clazz) &&
helperSym->preservesAllRegisters())
return true;
}
return false;
}
TR_GlobalRegisterNumber
OMR::TreeEvaluator::getHighGlobalRegisterNumberIfAny(TR::Node *node, TR::CodeGenerator *cg)
{
//No need for register pairs in 64-bit mode
if (cg->comp()->target().is64Bit())
return -1;
//if the node itself doesn't have a type (e.g passthrough) we assume it has a child with a type
//However we keep track of the initial node as it will contain the register information.
TR::Node *rootNode = node;
while (node->getType() == TR::NoType) {
node = node->getFirstChild();
TR_ASSERT(node, "The node should always be valid while looking for a Child with a type");
}
TR_ASSERT(node->getType() != TR::NoType, "Expecting node %p, to have a specific type here", node);
//Only need a register pair if the node is a 64bit Int
return node->getType().isInt64() ? rootNode->getHighGlobalRegisterNumber() : -1;
}
// Returns n where value = 2^n.
// If value != 2^n, returns -1
int32_t
OMR::TreeEvaluator::checkNonNegativePowerOfTwo(int32_t value)
{
if (isNonNegativePowerOf2(value))
{
int32_t shiftAmount = 0;
while ((value = ((uint32_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else
{
return -1;
}
}
// (Same as other checkNonNegativePowerOfTwo above.)
int32_t
OMR::TreeEvaluator::checkNonNegativePowerOfTwo(int64_t value)
{
if (isNonNegativePowerOf2(value))
{
int32_t shiftAmount = 0;
while ((value = ((uint64_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else
{
return -1;
}
}
// Returns n where value = 2^n or -2^n.
// If value != 2^n or -2^n, returns -1
int32_t OMR::TreeEvaluator::checkPositiveOrNegativePowerOfTwo(int32_t value)
{
if (isNonNegativePowerOf2(value))
{
int32_t shiftAmount = 0;
while ((value = ((uint32_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else if (isNonPositivePowerOf2(value))
{
int32_t shiftAmount = 0;
value = -value;
while ((value = ((uint32_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else
{
return -1;
}
}
// (Same as other checkPositiveOrNegativePowerOfTwo above.)
int32_t OMR::TreeEvaluator::checkPositiveOrNegativePowerOfTwo(int64_t value)
{
if (isNonNegativePowerOf2(value))
{
int32_t shiftAmount = 0;
while ((value = ((uint64_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else if (isNonPositivePowerOf2(value))
{
int32_t shiftAmount = 0;
value = -value;
while ((value = ((uint64_t) value) >> 1))
{
++shiftAmount;
}
return shiftAmount;
}
else
{
return -1;
}
}
TR::Register *
OMR::TreeEvaluator::compressedRefsEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
TR::Node *loadOrStoreNode = node->getFirstChild();
// for indirect stores, check if the value child has been
// evaluated already. in this case the store has already
// been evaluated (possibly under a check)
//
bool mustBeEvaluated = true;
if (loadOrStoreNode->getOpCode().isStoreIndirect())
{
if (loadOrStoreNode->isStoreAlreadyEvaluated())
mustBeEvaluated = false;
}
if (mustBeEvaluated)
{
TR::Register *loadOrStoreRegister = cg->evaluate(loadOrStoreNode);
if (loadOrStoreNode->getOpCode().isStoreIndirect())
loadOrStoreNode->setStoreAlreadyEvaluated(true);
}
cg->decReferenceCount(loadOrStoreNode);
cg->decReferenceCount(node->getSecondChild());
return 0;
}
TR::Register *
OMR::TreeEvaluator::computeCCEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
TR::Compilation *comp= cg->comp();
TR::Node *child = node->getFirstChild();
if (child->getRegister())
{
// set up for re-evaluate
// reduce reference count to indicate not using present evaluation
cg->decReferenceCount(child);
// if reference count is zero, this is last use so can reuse present child
// otherwise need to clone to prevent conflict with live register.
// ref counts of children of clone/original were already inc during tree lowering
// so do not need to increase them here.
if (child->getReferenceCount() > 0)
child = TR::Node::copy(child);
child->setReferenceCount(1);
child->setRegister(NULL);
}
else
{
// has not been evaluated before, as there were no non CC references prior to this one
// evaluate as normal, so add result is available for future non CC uses
// we need to decrease reference counts on children of virtual clone which were raised in
// tree lowering to allow children's registers to be kept alive to this point.
for (int32_t i = child->getNumChildren()-1; i >= 0; --i)
child->getChild(i)->decReferenceCount();
}
// set flag so CC must be calculated, doesn't need to be reset as won't be re-evaluated until another computeCC
child->setNodeRequiresConditionCodes(true);
TR::Register *result = cg->evaluate(child);
// do not call child->setRegister(result) - there is no register for the computeCC, no point setting it.
cg->decReferenceCount(child);
return result;
}
TR::Register *OMR::TreeEvaluator::unImpOpEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
TR_ASSERT_FATAL(false, "Opcode %s is not implemented\n", node->getOpCode().getName());
return NULL;
}
TR::Register *OMR::TreeEvaluator::badILOpEvaluator(TR::Node *node, TR::CodeGenerator *cg)
{
TR_ASSERT_FATAL(false, "badILOp %s cannot be evaluated\n", node->getOpCode().getName());
return NULL;
}
bool OMR::TreeEvaluator::nodeIsIArithmeticOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
return TR::TreeEvaluator::nodeIsIAddOverflowCheck(node, u) || TR::TreeEvaluator::nodeIsISubOverflowCheck(node, u);
}
bool OMR::TreeEvaluator::nodeIsIAddOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
TR::Compilation *comp= TR::comp();
if (comp->getOption(TR_DisableTreePatternMatching))
return false;
TR_PatternBuilder pb(comp);
static TR_Pattern *pattern =
pb.choice(pb(TR::ificmpge), pb(TR::ificmplt), pb.children(
pb(TR::iand,
pb(TR::ixor,
pb(TR::iadd, u,u->operationNode,
pb(u,u->leftChild),
pb(u,u->rightChild)),
pb(u,u->leftChild)
),
pb(TR::ixor,
pb(u,u->operationNode),
pb(u,u->rightChild)
)
),
pb.iconst(0)
));
return pattern->matches(node, (TR::Node**)u, comp);
}
bool OMR::TreeEvaluator::nodeIsISubOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
TR::Compilation *comp= TR::comp();
if (comp->getOption(TR_DisableTreePatternMatching))
return false;
TR_PatternBuilder pb(comp);
static TR_Pattern *pattern =
pb.choice(pb(TR::ificmpge), pb(TR::ificmplt), pb.children(
pb(TR::iand,
pb(TR::ixor,
pb(TR::isub, u,u->operationNode,
pb(u,u->leftChild),
pb(u,u->rightChild)),
pb(u,u->leftChild)
),
pb(TR::ixor,
pb(u,u->leftChild),
pb(u,u->rightChild)
)
),
pb.iconst(0)
));
return pattern->matches(node, (TR::Node**)u, comp);
}
bool OMR::TreeEvaluator::nodeIsLArithmeticOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
return TR::TreeEvaluator::nodeIsLAddOverflowCheck(node, u) || TR::TreeEvaluator::nodeIsLSubOverflowCheck(node, u);
}
bool OMR::TreeEvaluator::nodeIsLAddOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
TR::Compilation *comp= TR::comp();
if (comp->getOption(TR_DisableTreePatternMatching))
return false;
TR_PatternBuilder pb(comp);
static TR_Pattern *pattern =
pb.choice(pb(TR::iflcmpge), pb(TR::iflcmplt), pb.children(
pb(TR::land,
pb(TR::lxor,
pb(TR::ladd, u,u->operationNode,
pb(u,u->leftChild),
pb(u,u->rightChild)),
pb(u,u->leftChild)
),
pb(TR::lxor,
pb(u,u->operationNode),
pb(u,u->rightChild)
)
),
pb.lconst(0)
));
return pattern->matches(node, (TR::Node**)u, comp);
}
bool OMR::TreeEvaluator::nodeIsLSubOverflowCheck(TR::Node *node, TR_ArithmeticOverflowCheckNodes *u)
{
TR::Compilation *comp= TR::comp();
if (comp->getOption(TR_DisableTreePatternMatching))
return false;
TR_PatternBuilder pb(comp);
static TR_Pattern *pattern =
pb.choice(pb(TR::iflcmpge), pb(TR::iflcmplt), pb.children(
pb(TR::land,
pb(TR::lxor,
pb(TR::lsub, u,u->operationNode,
pb(u,u->leftChild),
pb(u,u->rightChild)),
pb(u,u->leftChild)
),
pb(TR::lxor,
pb(u,u->leftChild),
pb(u,u->rightChild)
)
),
pb.lconst(0)
));
return pattern->matches(node, (TR::Node**)u, comp);
}
// FIXME: this seems to be derived from OutOfLineCodeSection::evaluateNodesWithFutureUses
// however, it seems to something extra for the spinechk nodes. These two routines should
// be consolidated
//
void OMR::TreeEvaluator::evaluateNodesWithFutureUses(TR::Node *node, TR::CodeGenerator *cg)
{
TR::Compilation *comp= cg->comp();
if (node->getRegister() != NULL)
{
// Node has already been evaluated outside this tree.
//
return;
}
if (node->getFutureUseCount() > 0)
{
TR::Node *actualLoadOrStoreChild = node;
while (actualLoadOrStoreChild->getOpCode().isConversion() ||
actualLoadOrStoreChild->chkCompressionSequence())
actualLoadOrStoreChild = actualLoadOrStoreChild->getFirstChild();
if (actualLoadOrStoreChild->getOpCode().isStore() ||
actualLoadOrStoreChild->getOpCode().isLoadConst() ||
actualLoadOrStoreChild->getOpCode().isArrayRef() ||
(actualLoadOrStoreChild->getOpCode().isLoad() &&
actualLoadOrStoreChild->getSymbolReference() &&
(actualLoadOrStoreChild->getSymbolReference()->getSymbol()->isArrayShadowSymbol() ||
actualLoadOrStoreChild->getSymbolReference()->getSymbol()->isArrayletShadowSymbol())))
{
// These types of nodes are likey specific to one path or another and may cause
// a failure if evaluated on a common path.
//
if (comp->getOption(TR_TraceCG))
{
traceMsg(comp, "avoiding escaping commoned subtree %p [RealLoad/Store: %p], but processing its children: node is ", node, actualLoadOrStoreChild);
if (actualLoadOrStoreChild->getOpCode().isStore())
traceMsg(comp, "store\n");
else if (actualLoadOrStoreChild->getOpCode().isLoadConst())
traceMsg(comp, "const\n");
else if (actualLoadOrStoreChild->getOpCode().isArrayRef())
traceMsg(comp, "arrayref (aiadd/aladd)\n");
else if (actualLoadOrStoreChild->getOpCode().isLoad() && actualLoadOrStoreChild->getSymbolReference())
{
if (actualLoadOrStoreChild->getSymbolReference()->getSymbol()->isArrayShadowSymbol())
traceMsg(comp, "array shadow\n");
else if (actualLoadOrStoreChild->getSymbolReference()->getSymbol()->isArrayletShadowSymbol())
traceMsg(comp, "arraylet shadow\n");
}
}
}
else
{
if (comp->getOption(TR_TraceCG))
traceMsg(comp, "O^O pre-evaluating escaping commoned subtree %p\n", node);
(void)cg->evaluate(node);
// Do not decrement the reference count here. It will be decremented when the call node is evaluated
// again in the helper instruction stream.
//
return;
}
}
for (int32_t i = 0; i<node->getNumChildren(); i++)
TR::TreeEvaluator::evaluateNodesWithFutureUses(node->getChild(i), cg);
}
// This routine detects every subtree S of a node N that meets the following criteria:
// (1) the first reference to S is in a subtree of N, and
// (2) not all references to S appear under N
// This is very similar to the futureUseCount concept for TR::Node, except that this one
// talks about the future uses *beyond* the treeTop on which this is called.
// Note that this routine only make sense during tree evaluation time. It assumes
// that all previous (strictly historical) uses have already been discounted from
// the nodes' reference counts
//
void OMR::TreeEvaluator::initializeStrictlyFutureUseCounts(TR::Node *node, vcount_t visitCount, TR::CodeGenerator *cg)
{
if (node->getRegister() != NULL)
{
// Node has already been evaluated outside this tree.
//
return;
}
if (node->getVisitCount() != visitCount)
{
// First time this node has been encountered in this tree.
//
node->setFutureUseCount(node->getReferenceCount());
node->setVisitCount(visitCount);
for (int32_t i = 0; i<node->getNumChildren(); i++)
TR::TreeEvaluator::initializeStrictlyFutureUseCounts(node->getChild(i), visitCount, cg);
}
if (node->getReferenceCount() > 0)
node->decFutureUseCount();
}