Lines Matching refs:opcode
29 opcode: string; property in GNode
52 return this.opcode == 'Parameter' || this.opcode.endsWith('Constant');
58 return this.opcode.startsWith('JS');
62 return this.opcode.endsWith('Phi') ||
63 this.opcode.startsWith('Boolean') ||
64 this.opcode.startsWith('Number') ||
65 this.opcode.startsWith('String') ||
66 this.opcode.startsWith('Change') ||
67 this.opcode.startsWith('Object') ||
68 this.opcode.startsWith('Reference') ||
69 this.opcode.startsWith('Any') ||
70 this.opcode.endsWith('ToNumber') ||
71 (this.opcode == 'AnyToBoolean') ||
72 (this.opcode.startsWith('Load') && this.opcode.length > 4) ||
73 (this.opcode.startsWith('Store') && this.opcode.length > 5);
101 return this.id + ":" + this.opcode;
176 return (this.opcode == "Loop") ||
177 ((this.opcode == "Phi" || this.opcode == "EffectPhi") &&
178 this.inputs[this.inputs.length - 1].source.opcode == "Loop");