Searched refs:operation (Results 1 – 25 of 137) sorted by relevance
123456
1 SyntaxError: Invalid left-hand side operator. [invalid-left-hand-side-in-prefix-operation.js:17:5]
14 somewhere in memory and executes corresponding _operations_ on operation's arguments,15 also known as operation's _operands_. Operands may be _registers_ (very fast "variables" located45 One very important question is how an operation refers to its operands.47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in60 In _register-based approach_, operands are explicitly encoded in the operation, which results in153 | operation code | vreg 1 | vreg 2 |162 | operation code | vreg 1 | vreg 2 |187 One option is to make the operation _statically typed_, i.e. specify explicitly that it works only191 Another option is to make the operation _dynamically typed_, i.e. specify that `adda ...` handles
14 # assert(7 && 5 == 5) operation --> and2.64
14 # assert(2 * 3 == 6) operation --> muli
14 # assert(28 >> 2 == 7) operation --> shr
14 # assert(neg(1) == -1) operation --> neg.64
14 #Assert that operation jgtz works fine
14 # assert(6 && 2 == 6) operation --> and
14 #Assert that operation lda.str works fine
14 # assert(6 * 7 == 42) operation --> mul
14 # assert(28 shri 2 == 7) operation --> shri
14 #Assert that operation jlez works fine
14 # assert(1 || 6 == 7) operation --> or
14 # assert(5 || 2 == 7) operation --> or2.64
14 # assert(5 + 7 == 12) operation --> and2.64
14 # assert(7 + 6 == 13) operation --> and
14 #Assert that operation jgez works fine
14 # assert(1 || 6 == 7) operation --> ori
14 # assert(100 >> 2 == 25) operation --> shr2.64
14 # assert(7 xor 5 == 2) operation --> xori
14 #Assert that operation jltz works fine
14 # assert(151 ashr 1 == 75) operation --> ashr2.64
14 #Assert that operation jnez works fine
14 # assert(7 xor 5 == 2) operation --> xor2.64
14 #Assert that operation jgt works fine