MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / parseIf

Method parseIf

chapter13/src/main/java/com/seaofnodes/simple/Parser.java:330–369  ·  view source on GitHub ↗

Parses a statement if ( expression ) statement [else statement] @return a Node, never null

()

Source from the content-addressed store, hash-verified

328 * @return a {@link Node}, never {@code null}
329 */
330 private Node parseIf() {
331 require("(");
332 // Parse predicate
333 var pred = require(parseExpression(), ")").keep();
334 // IfNode takes current control and predicate
335 Node ifNode = new IfNode(ctrl(), pred).peephole();
336 // Setup projection nodes
337 Node ifT = new CProjNode(ifNode. keep(), 0, "True" ).peephole().keep();
338 Node ifF = new CProjNode(ifNode.unkeep(), 1, "False").peephole().keep();
339 // In if true branch, the ifT proj node becomes the ctrl
340 // But first clone the scope and set it as current
341 int ndefs = _scope.nIns();
342 ScopeNode fScope = _scope.dup(); // Duplicate current scope
343 _xScopes.push(fScope); // For graph visualization we need all scopes
344
345 // Parse the true side
346 ctrl(ifT.unkeep()); // set ctrl token to ifTrue projection
347 _scope.upcast(ifT,pred,false); // Up-cast predicate
348 parseStatement(); // Parse true-side
349 ScopeNode tScope = _scope;
350
351 // Parse the false side
352 _scope = fScope; // Restore scope, then parse else block if any
353 ctrl(ifF.unkeep()); // Ctrl token is now set to ifFalse projection
354 _scope.upcast(ifF,pred,true); // Up-cast predicate
355 if (matchx("else")) {
356 parseStatement();
357 fScope = _scope;
358 }
359 pred.unkeep();
360
361 if( tScope.nIns() != ndefs || fScope.nIns() != ndefs )
362 throw error("Cannot define a new name on one arm of an if");
363
364 // Merge results
365 _scope = tScope;
366 _xScopes.pop(); // Discard pushed from graph display
367
368 return ctrl(tScope.mergeScopes(fScope));
369 }
370
371
372 /**

Callers 1

parseStatementMethod · 0.95

Calls 15

requireMethod · 0.95
keepMethod · 0.95
parseExpressionMethod · 0.95
ctrlMethod · 0.95
unkeepMethod · 0.95
parseStatementMethod · 0.95
matchxMethod · 0.95
errorMethod · 0.95
mergeScopesMethod · 0.95
peepholeMethod · 0.45
nInsMethod · 0.45
dupMethod · 0.45

Tested by

no test coverage detected