-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathTensorLessEqualScalarOptimizer.php
76 lines (62 loc) · 2.1 KB
/
TensorLessEqualScalarOptimizer.php
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
<?php
namespace Zephir\Optimizers\FunctionCall;
use Zephir\Call;
use Zephir\CompilationContext;
use Zephir\CompiledExpression;
use Zephir\HeadersManager;
use Zephir\Exception\CompilerException;
use Zephir\Optimizers\OptimizerAbstract;
class TensorLessEqualScalarOptimizer extends OptimizerAbstract
{
/**
* @param mixed[] $expression
* @param Call $call
* @param CompilationContext $context
* @throws CompilerException
* @return CompiledExpression|bool
*/
public function optimize(array $expression, Call $call, CompilationContext $context)
{
if (!isset($expression['parameters'])) {
return false;
}
if (count($expression['parameters']) !== 2) {
throw new CompilerException(
'Tensor less equal scalar accepts exactly two arguments, ' . count($expression['parameters']) . 'given.',
$expression
);
}
$call->processExpectedReturn($context);
$symbolVariable = $call->getSymbolVariable();
if (empty($symbolVariable)) {
throw new CompilerException('Missing symbol variable.');
}
if ($symbolVariable->getType() !== 'variable') {
throw new CompilerException(
'Return value must only be assigned to a dynamic variable.',
$expression
);
}
if ($call->mustInitSymbolVariable()) {
$symbolVariable->initVariant($context);
}
$context->headersManager->add(
'include/comparison',
HeadersManager::POSITION_LAST
);
$resolvedParams = $call->getResolvedParams(
$expression['parameters'],
$context,
$expression
);
$symbol = $context->backend->getVariableCode($symbolVariable);
$context->codePrinter->output(
"tensor_less_equal_scalar($symbol, {$resolvedParams[0]}, {$resolvedParams[1]});"
);
return new CompiledExpression(
'variable',
$symbolVariable->getRealName(),
$expression
);
}
}