• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/bearssl/T0/

Lines Matching refs:Add

86 	void Add(Opcode op)
88 Add(op, null);
91 void Add(Opcode op, string refName)
93 code.Add(op);
94 toResolve.Add(refName);
180 * Add a "push literal" opcode.
184 Add(new OpcodeConst(v));
215 Add(new OpcodePutLocal(lnum));
217 Add(new OpcodeGetLocal(lnum));
220 Add(new OpcodeCall(), target);
225 * Add a "call" opcode to the designated word.
229 Add(new OpcodeCall(wtarget), null);
233 * Add a "call" opcode to a word which is not currently resolved.
238 Add(new OpcodeCall(), target);
242 * Add a "get local" opcode; the provided local name must already
249 Add(new OpcodeGetLocal(lnum));
256 * Add a "put local" opcode; the provided local name must already
263 Add(new OpcodePutLocal(lnum));
282 * Add a "call" opcode whose target is an XT value (which may be
288 Add(new OpcodeCall(), xt.Name);
290 Add(new OpcodeCall(xt.Target));
295 * Add a "ret" opcode.
299 Add(new OpcodeRet());
303 * Add a forward unconditional jump. The new opcode address is
309 Add(new OpcodeJumpUncond());
313 * Add a forward conditional jump, which will be taken at runtime
320 Add(new OpcodeJumpIf());
324 * Add a forward conditional jump, which will be taken at runtime
331 Add(new OpcodeJumpIfNot());
355 * Add a backward unconditional jump. The jump target is popped
361 Add(new OpcodeJumpUncond(x - code.Count - 1));
365 * Add a backward conditional jump, which will be taken at runtime
372 Add(new OpcodeJumpIf(x - code.Count - 1));
376 * Add a backward conditional jump, which will be taken at runtime
383 Add(new OpcodeJumpIfNot(x - code.Count - 1));