-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path_getfield.php
More file actions
48 lines (38 loc) · 1.31 KB
/
_getfield.php
File metadata and controls
48 lines (38 loc) · 1.31 KB
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
<?php
declare(strict_types=1);
namespace PHPJava\Kernel\Mnemonics;
use PHPJava\Core\JavaClassInterface;
use PHPJava\Packages\java\lang\NoSuchFieldException;
final class _getfield extends AbstractOperationCode implements OperationCodeInterface
{
protected $isStackingOperation = true;
public function getOperands(): ?Operands
{
parent::getOperands();
if ($this->operands !== null) {
return $this->operands;
}
$indexbyte = $this->readUnsignedShort();
return $this->operands = new Operands(
['indexbyte', $indexbyte, ['indexbyte1', 'indexbyte2']]
);
}
public function execute(): void
{
parent::execute();
$cpInfo = $this->getConstantPool();
$cp = $cpInfo[$this->getOperands()['indexbyte']];
$class = $cpInfo[$cp->getNameAndTypeIndex()];
$name = $cpInfo[$class->getNameIndex()]->getString();
/**
* @var JavaClassInterface $objectref
*/
$objectref = $this->popFromOperandStack();
$return = $objectref->getInvoker()->getDynamic()->getFields()->get($name);
if ($return !== null) {
$this->pushToOperandStack($return);
return;
}
throw new NoSuchFieldException('Tried to get undefined field ' . $name);
}
}