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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 07/30/16 */
/* */
/* INFERENCE ENGINE OBJECT PARSING ROUTINES MODULE */
/*******************************************************/
/*************************************************************/
/* Purpose: RETE Network Parsing Interface for Objects */
/* */
/* Principal Programmer(s): */
/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.23: Changed name of variable exp to theExp */
/* because of Unix compiler warnings of shadowed */
/* definitions. */
/* */
/* 6.24: Converted INSTANCE_PATTERN_MATCHING to */
/* DEFRULE_CONSTRUCT. */
/* */
/* Renamed BOOLEAN macro type to intBool. */
/* */
/* 6.30: Added support for hashed memories and other */
/* join network changes. */
/* */
/* 6.40: Pragma once and other inclusion changes. */
/* */
/* Added support for booleans with <stdbool.h>. */
/* */
/* Removed use of void pointers for specific */
/* data structures. */
/* */
/*************************************************************/
/* =========================================
*****************************************
EXTERNAL DEFINITIONS
=========================================
***************************************** */
#include "setup.h"
#if DEFRULE_CONSTRUCT && OBJECT_SYSTEM && (! RUN_TIME) && (! BLOAD_ONLY)
#include <stdio.h>
#include "classfun.h"
#include "envrnmnt.h"
#include "objrtfnx.h"
#include "objrtgen.h"
/***************************************/
/* LOCAL INTERNAL FUNCTION DEFINITIONS */
/***************************************/
static void GenObjectGetVar(Environment *,bool,Expression *,struct lhsParseNode *,int);
static bool IsSimpleSlotVariable(struct lhsParseNode *);
static Expression *GenerateSlotComparisonTest(Environment *,bool,bool,struct lhsParseNode *,struct lhsParseNode *);
/* =========================================
*****************************************
EXTERNALLY VISIBLE FUNCTIONS
=========================================
***************************************** */
/**********************************************
Build functions used by AddPatternParser() to
provide object access to the join nertwork
**********************************************/
void ReplaceGetJNObjectValue(
Environment *theEnv,
Expression *theItem,
struct lhsParseNode *theNode,
int side)
{
GenObjectGetVar(theEnv,true,theItem,theNode,side);
}
Expression *GenGetJNObjectValue(
Environment *theEnv,
struct lhsParseNode *theNode,
int side)
{
Expression *theItem;
theItem = GenConstant(theEnv,0,NULL);
GenObjectGetVar(theEnv,true,theItem,theNode,side);
return(theItem);
}
Expression *ObjectJNVariableComparison(
Environment *theEnv,
struct lhsParseNode *selfNode,
struct lhsParseNode *referringNode,
bool isNand)
{
return(GenerateSlotComparisonTest(theEnv,true,isNand,selfNode,referringNode));
}
/**********************************************
Build functions used by AddPatternParser() to
provide object access to the pattern network
**********************************************/
Expression *GenObjectPNConstantCompare(
Environment *theEnv,
struct lhsParseNode *theNode)
{
struct ObjectCmpPNConstant hack;
Expression *theExp;
ParseNodeType tmpType;
/* ===============================================================
If the value of a single field slot (or relation name) is being
compared against a constant, then use specialized routines for
doing the comparison.
If a constant comparison is being done within a multifield slot
and the constant's position has no multifields to the left or
no multifields to the right, then use the same routine used for
the single field slot case, but include the offset from either
the beginning or end of the slot.
Otherwise, use a general eq/neq test.
=============================================================== */
ClearBitString(&hack,sizeof(struct ObjectCmpPNConstant));
if (theNode->negated)
hack.fail = 1;
else
hack.pass = 1;
if (((theNode->withinMultifieldSlot == false) ||
(theNode->multiFieldsAfter == 0) ||
(theNode->multiFieldsBefore == 0)) &&
(theNode->slotNumber != ISA_ID) && (theNode->slotNumber != NAME_ID))
{
if (theNode->withinMultifieldSlot == false)
hack.fromBeginning = true;
else if (theNode->multiFieldsBefore == 0)
{
hack.fromBeginning = true;
hack.offset = theNode->singleFieldsBefore;
}
else
hack.offset = theNode->singleFieldsAfter;
theExp = GenConstant(theEnv,OBJ_PN_CONSTANT,AddBitMap(theEnv,&hack,
sizeof(struct ObjectCmpPNConstant)));
theExp->argList = GenConstant(theEnv,NodeTypeToType(theNode),theNode->value);
}
else
{
hack.general = 1;
theExp = GenConstant(theEnv,OBJ_PN_CONSTANT,AddBitMap(theEnv,&hack,
sizeof(struct ObjectCmpPNConstant)));
theExp->argList = GenConstant(theEnv,0,NULL);
tmpType = theNode->pnType;
theNode->pnType = SF_VARIABLE_NODE;
GenObjectGetVar(theEnv,false,theExp->argList,theNode,-1);
theNode->pnType = tmpType;
theExp->argList->nextArg = GenConstant(theEnv,NodeTypeToType(theNode),theNode->value);
}
return(theExp);
}
void ReplaceGetPNObjectValue(
Environment *theEnv,
Expression *theItem,
struct lhsParseNode *theNode)
{
GenObjectGetVar(theEnv,false,theItem,theNode,-1);
}
Expression *GenGetPNObjectValue(
Environment *theEnv,
struct lhsParseNode *theNode)
{
Expression *theItem;
theItem = GenConstant(theEnv,0,NULL);
GenObjectGetVar(theEnv,false,theItem,theNode,-1);
return(theItem);
}
Expression *ObjectPNVariableComparison(
Environment *theEnv,
struct lhsParseNode *selfNode,
struct lhsParseNode *referringNode)
{
return(GenerateSlotComparisonTest(theEnv,false,false,selfNode,referringNode));
}
/****************************************************
NAME : GenObjectLengthTest
DESCRIPTION : Generates a test on the cardinality
of a slot matching an object pattern
INPUTS : The first lhsParseNode for a slot
in an object pattern
RETURNS : Nothing useful
SIDE EFFECTS : The lhsParseNode network test is
modified to include the length test
NOTES : None
****************************************************/
void GenObjectLengthTest(
Environment *theEnv,
struct lhsParseNode *theNode)
{
struct ObjectMatchLength hack;
Expression *theTest;
if ((theNode->singleFieldsAfter == 0) &&
(theNode->pnType != SF_VARIABLE_NODE) &&
(theNode->pnType != SF_WILDCARD_NODE))
return;
ClearBitString(&hack,sizeof(struct ObjectMatchLength));
if ((theNode->pnType != MF_VARIABLE_NODE) &&
(theNode->pnType != MF_WILDCARD_NODE) &&
(theNode->multiFieldsAfter == 0))
hack.exactly = 1;
else
hack.exactly = 0;
if ((theNode->pnType == SF_VARIABLE_NODE) || (theNode->pnType == SF_WILDCARD_NODE))
hack.minLength = 1 + theNode->singleFieldsAfter;
else
hack.minLength = theNode->singleFieldsAfter;
theTest = GenConstant(theEnv,OBJ_SLOT_LENGTH,AddBitMap(theEnv,&hack,
sizeof(struct ObjectMatchLength)));
if (theNode->constantSelector != NULL)
{ theNode->constantSelector->nextArg = CopyExpression(theEnv,theTest); }
theNode->networkTest = CombineExpressions(theEnv,theTest,theNode->networkTest);
}
/****************************************************
NAME : GenObjectZeroLengthTest
DESCRIPTION : Generates a test on the cardinality
of a slot matching an object pattern
INPUTS : The first lhsParseNode for a slot
in an object pattern
RETURNS : Nothing useful
SIDE EFFECTS : The lhsParseNode network test is
modified to include the length test
NOTES : None
****************************************************/
void GenObjectZeroLengthTest(
Environment *theEnv,
struct lhsParseNode *theNode)
{
struct ObjectMatchLength hack;
Expression *theTest;
ClearBitString(&hack,sizeof(struct ObjectMatchLength));
hack.exactly = 1;
hack.minLength = 0;
theTest = GenConstant(theEnv,OBJ_SLOT_LENGTH,
AddBitMap(theEnv,&hack,sizeof(struct ObjectMatchLength)));
theNode->networkTest = CombineExpressions(theEnv,theTest,theNode->networkTest);
}
/* =========================================
*****************************************
INTERNALLY VISIBLE FUNCTIONS
=========================================
***************************************** */
/***************************************************
NAME : GenObjectGetVar
DESCRIPTION : Generates the expressions necessary
to access object pattern variables
INPUTS : 1) An integer code indicating if
this is a join network reference
or a pattern network reference
2) The expression for which to set
the type and value
3) The lhsParseNode for the
variable reference
4) For a join reference, the side from
which the variable must be retrieved.
RETURNS : Nothing useful
SIDE EFFECTS : The value is a packed long holding
pattern index, slot number,
field index, etc.
NOTES : None
***************************************************/
static void GenObjectGetVar(
Environment *theEnv,
bool joinReference,
Expression *theItem,
struct lhsParseNode *theNode,
int side)
{
struct ObjectMatchVar1 hack1;
struct ObjectMatchVar2 hack2;
ClearBitString(&hack1,sizeof(struct ObjectMatchVar1));
ClearBitString(&hack2,sizeof(struct ObjectMatchVar2));
if (joinReference)
{
if (side == LHS)
{
hack1.lhs = 1;
hack2.lhs = 1;
hack1.whichPattern = theNode->joinDepth;
hack2.whichPattern = theNode->joinDepth;
}
else if (side == RHS)
{
hack1.rhs = 1;
hack2.rhs = 1;
hack1.whichPattern = 0;
hack2.whichPattern = 0;
}
else if (side == NESTED_RHS)
{
hack1.rhs = 1;
hack2.rhs = 1;
hack1.whichPattern = theNode->joinDepth;
hack2.whichPattern = theNode->joinDepth;
}
else
{
hack1.whichPattern = theNode->joinDepth;
hack2.whichPattern = theNode->joinDepth;
}
}
/* ========================
Access an object address
======================== */
if (theNode->slotNumber == UNSPECIFIED_SLOT)
{
hack1.objectAddress = 1;
if (joinReference)
{ theItem->type = OBJ_GET_SLOT_JNVAR1; }
else
{ theItem->type = OBJ_GET_SLOT_PNVAR1; }
theItem->value = AddBitMap(theEnv,&hack1,sizeof(struct ObjectMatchVar1));
return;
}
/* ======================================
Access the entire contents of the slot
====================================== */
if ((theNode->singleFieldsBefore == 0) &&
(theNode->singleFieldsAfter == 0) &&
(theNode->multiFieldsBefore == 0) &&
(theNode->multiFieldsAfter == 0) &&
((theNode->withinMultifieldSlot == false) ||
(theNode->pnType == MF_VARIABLE_NODE) ||
(theNode->pnType == MF_WILDCARD_NODE)))
{
hack1.allFields = 1;
hack1.whichSlot = theNode->slotNumber;
theItem->type = (joinReference ? OBJ_GET_SLOT_JNVAR1 : OBJ_GET_SLOT_PNVAR1);
theItem->value = AddBitMap(theEnv,&hack1,sizeof(struct ObjectMatchVar1));
return;
}
/* =============================================================
Access a particular field(s) in a multifield slot pattern
containing at most one multifield variable and at least
one (or two if no multifield variables) single-field variable
============================================================= */
if (((theNode->pnType == SF_WILDCARD_NODE) || (theNode->pnType == SF_VARIABLE_NODE) || ConstantNode(theNode)) &&
((theNode->multiFieldsBefore == 0) || (theNode->multiFieldsAfter == 0)))
{
hack2.whichSlot = theNode->slotNumber;
if (theNode->multiFieldsBefore == 0)
{
hack2.fromBeginning = 1;
hack2.beginningOffset = theNode->singleFieldsBefore;
}
else
{
hack2.fromEnd = 1;
hack2.endOffset = theNode->singleFieldsAfter;
}
theItem->type = (joinReference ? OBJ_GET_SLOT_JNVAR2 : OBJ_GET_SLOT_PNVAR2);
theItem->value = AddBitMap(theEnv,&hack2,sizeof(struct ObjectMatchVar2));
return;
}
if (((theNode->pnType == MF_WILDCARD_NODE) || (theNode->pnType == MF_VARIABLE_NODE) || ConstantNode(theNode)) &&
(theNode->multiFieldsBefore == 0) &&
(theNode->multiFieldsAfter == 0))
{
hack2.whichSlot = theNode->slotNumber;
hack2.fromBeginning = 1;
hack2.fromEnd = 1;
hack2.beginningOffset = theNode->singleFieldsBefore;
hack2.endOffset = theNode->singleFieldsAfter;
theItem->type = (joinReference ? OBJ_GET_SLOT_JNVAR2 : OBJ_GET_SLOT_PNVAR2);
theItem->value = AddBitMap(theEnv,&hack2,sizeof(struct ObjectMatchVar2));
return;
}
/* ==================================================
General slot field access using multifield markers
================================================== */
hack1.whichSlot = theNode->slotNumber;
hack1.whichField = theNode->index;
theItem->type = (joinReference ? OBJ_GET_SLOT_JNVAR1 : OBJ_GET_SLOT_PNVAR1);
theItem->value = AddBitMap(theEnv,&hack1,sizeof(struct ObjectMatchVar1));
}
/****************************************************************
NAME : IsSimpleSlotVariable
DESCRIPTION : Determines if a slot pattern variable
references a single-field slot or a single-field
in a multifield slot which does not require
use of multifield markers
(Object addresses are not simple variables)
INPUTS : The intermediate parse node
RETURNS : True if the variable is simple,
false otherwise
SIDE EFFECTS : None
NOTES : None
****************************************************************/
static bool IsSimpleSlotVariable(
struct lhsParseNode *node)
{
if ((node->pnType == MF_WILDCARD_NODE) || (node->pnType == MF_VARIABLE_NODE))
return false;
if ((node->slotNumber == UNSPECIFIED_SLOT) ||
(node->slotNumber == ISA_ID) ||
(node->slotNumber == NAME_ID))
return false;
if (node->withinMultifieldSlot == false)
return true;
if (node->multifieldSlot == true)
return false;
if ((node->multiFieldsBefore == 0) || (node->multiFieldsAfter == 0))
return true;
return false;
}
/***************************************************************
NAME : GenerateSlotComparisonTest
DESCRIPTION : Generates pattern and join network
expressions for comparing object
pattern variables
INPUTS : 1) A flag indicating if this is a
pattern or join network test
2) For a join test, a flag indicating
if it is a nand join
3) The intermediate parse node
for the first variable
4) The intermediate parse node
for the second variable
RETURNS : An expression for comparing the
variables
SIDE EFFECTS : Expression and bitmaps generated
NOTES : The following tests are generated
for the following scenarios:
SF slot w/ SF slot: PN_1 or JN_1
Example: (foo ?x) with (bar ?xy)
SF slot w/ SF reference in MF slot: PN_2 or JN_2
Example: (foo ?x) (bar ? ?x ? ?)
SF reference w/ SF reference: PN_3 or JN_3
Example: (foo ? ?x ?) and (bar ? ? ? ?x)
All other cases: EQ/NEQ general test
Example: (foo $? ?x $?) and (bar ?x)
***************************************************************/
static Expression *GenerateSlotComparisonTest(
Environment *theEnv,
bool joinTest,
bool isNand,
struct lhsParseNode *selfNode,
struct lhsParseNode *referringNode)
{
Expression *theExp;
struct ObjectCmpPNSingleSlotVars1 phack1;
struct ObjectCmpPNSingleSlotVars2 phack2;
struct ObjectCmpPNSingleSlotVars3 phack3;
struct ObjectCmpJoinSingleSlotVars1 jhack1;
struct ObjectCmpJoinSingleSlotVars2 jhack2;
struct ObjectCmpJoinSingleSlotVars3 jhack3;
struct lhsParseNode *firstNode;
if (isNand)
{ firstNode = referringNode; }
else
{ firstNode = selfNode; }
/* =========================================================
If we are comparing two single-field slot variables that
don't require multifield markers for lookup, use
a quick comparison. Otherwise, use a general eq/neq with
the pattern variable access routines
========================================================= */
if (IsSimpleSlotVariable(firstNode) && IsSimpleSlotVariable(referringNode))
{
/* ==============================
Compare two single-field slots
============================== */
if ((firstNode->withinMultifieldSlot == false) &&
(referringNode->withinMultifieldSlot == false))
{
ClearBitString(&phack1,sizeof(struct ObjectCmpPNSingleSlotVars1));
ClearBitString(&jhack1,sizeof(struct ObjectCmpJoinSingleSlotVars1));
if (selfNode->negated)
phack1.fail = jhack1.fail = 1;
else
phack1.pass = jhack1.pass = 1;
phack1.firstSlot = jhack1.firstSlot = firstNode->slotNumber;
phack1.secondSlot = jhack1.secondSlot = referringNode->slotNumber;
if (joinTest)
{
if (isNand)
{ jhack1.firstPattern = referringNode->joinDepth; }
else
{ jhack1.firstPattern = 0; }
jhack1.firstPatternRHS = true;
jhack1.secondPatternLHS = true;
jhack1.secondPattern = referringNode->joinDepth;
theExp = GenConstant(theEnv,OBJ_JN_CMP1,AddBitMap(theEnv,&jhack1,
sizeof(struct ObjectCmpJoinSingleSlotVars1)));
}
else
theExp = GenConstant(theEnv,OBJ_PN_CMP1,AddBitMap(theEnv,&phack1,
sizeof(struct ObjectCmpPNSingleSlotVars1)));
}
/* ============================================
Compare a single-field slot with a
single-field in a multifield slot (make sure
the multifield slot reference is first
============================================ */
else if ((firstNode->withinMultifieldSlot == false) ||
(referringNode->withinMultifieldSlot == false))
{
ClearBitString(&phack2,sizeof(struct ObjectCmpPNSingleSlotVars2));
ClearBitString(&jhack2,sizeof(struct ObjectCmpJoinSingleSlotVars2));
if (selfNode->negated)
phack2.fail = jhack2.fail = 1;
else
phack2.pass = jhack2.pass = 1;
if (firstNode->withinMultifieldSlot == true)
{
phack2.firstSlot = jhack2.firstSlot = firstNode->slotNumber;
phack2.secondSlot = jhack2.secondSlot = referringNode->slotNumber;
if (joinTest)
{
if (isNand)
{ jhack2.firstPattern = referringNode->joinDepth; }
else
{ jhack2.firstPattern = 0; }
jhack2.firstPatternRHS = true;
jhack2.secondPatternLHS = true;
jhack2.secondPattern = referringNode->joinDepth;
}
if (firstNode->multiFieldsBefore == 0)
{
phack2.fromBeginning = jhack2.fromBeginning = 1;
phack2.offset = jhack2.offset = firstNode->singleFieldsBefore;
}
else
phack2.offset = jhack2.offset = firstNode->singleFieldsAfter;
}
else
{
phack2.firstSlot = jhack2.firstSlot = referringNode->slotNumber;
phack2.secondSlot = jhack2.secondSlot = firstNode->slotNumber;
if (joinTest)
{
if (isNand)
{ jhack2.secondPattern = firstNode->joinDepth; }
else
{ jhack2.secondPattern = 0; }
jhack2.secondPatternRHS = true;
jhack2.firstPatternLHS = true;
jhack2.firstPattern = referringNode->joinDepth;
}
if (referringNode->multiFieldsBefore == 0)
{
phack2.fromBeginning = jhack2.fromBeginning = 1;
phack2.offset = jhack2.offset = referringNode->singleFieldsBefore;
}
else
phack2.offset = jhack2.offset = referringNode->singleFieldsAfter;
}
if (joinTest)
theExp = GenConstant(theEnv,OBJ_JN_CMP2,AddBitMap(theEnv,&jhack2,
sizeof(struct ObjectCmpJoinSingleSlotVars2)));
else
theExp = GenConstant(theEnv,OBJ_PN_CMP2,AddBitMap(theEnv,&phack2,
sizeof(struct ObjectCmpPNSingleSlotVars2)));
}
/* ===================================
Compare two single-field references
within multifield slots
=================================== */
else
{
ClearBitString(&phack3,sizeof(struct ObjectCmpPNSingleSlotVars3));
ClearBitString(&jhack3,sizeof(struct ObjectCmpJoinSingleSlotVars3));
if (selfNode->negated)
phack3.fail = jhack3.fail = 1;
else
phack3.pass = jhack3.pass = 1;
phack3.firstSlot = jhack3.firstSlot = firstNode->slotNumber;
phack3.secondSlot = jhack3.secondSlot = referringNode->slotNumber;
if (firstNode->multiFieldsBefore == 0)
{
phack3.firstFromBeginning = jhack3.firstFromBeginning = 1;
phack3.firstOffset = jhack3.firstOffset = firstNode->singleFieldsBefore;
}
else
phack3.firstOffset = jhack3.firstOffset = firstNode->singleFieldsAfter;
if (referringNode->multiFieldsBefore == 0)
{
phack3.secondFromBeginning = jhack3.secondFromBeginning = 1;
phack3.secondOffset = jhack3.secondOffset = referringNode->singleFieldsBefore;
}
else
phack3.secondOffset = jhack3.secondOffset = referringNode->singleFieldsAfter;
if (joinTest)
{
if (isNand)
{ jhack3.firstPattern = referringNode->joinDepth; }
else
{ jhack3.firstPattern = 0; }
jhack3.firstPatternRHS = true;
jhack3.secondPatternLHS = true;
jhack3.secondPattern = referringNode->joinDepth;
theExp = GenConstant(theEnv,OBJ_JN_CMP3,AddBitMap(theEnv,&jhack3,
sizeof(struct ObjectCmpJoinSingleSlotVars3)));
}
else
theExp = GenConstant(theEnv,OBJ_PN_CMP3,AddBitMap(theEnv,&phack3,
sizeof(struct ObjectCmpPNSingleSlotVars3)));
}
}
/* ==================================================
General comparison for multifield slot references,
references which require multifield markers, and
object addresses
================================================== */
else
{
theExp = GenConstant(theEnv,FCALL,selfNode->negated ? ExpressionData(theEnv)->PTR_NEQ : ExpressionData(theEnv)->PTR_EQ);
theExp->argList = GenConstant(theEnv,0,NULL);
if (isNand)
{ GenObjectGetVar(theEnv,joinTest,theExp->argList,selfNode,NESTED_RHS); }
else
{ GenObjectGetVar(theEnv,joinTest,theExp->argList,selfNode,RHS); }
theExp->argList->nextArg = GenConstant(theEnv,0,NULL);
GenObjectGetVar(theEnv,joinTest,theExp->argList->nextArg,referringNode,LHS);
}
return(theExp);
}
#endif
/***************************************************
NAME :
DESCRIPTION :
INPUTS :
RETURNS :
SIDE EFFECTS :
NOTES :
***************************************************/