Searched refs:ExtendedOpcodes (Results 1 – 5 of 5) sorted by relevance
/packages/modules/NetworkStack/src/android/net/apf/ |
D | ApfV6GeneratorBase.java | 109 return append(new Instruction(ExtendedOpcodes.ALLOCATE)); in addAllocateR0() 146 return append(new Instruction(ExtendedOpcodes.EXCEPTIONBUFFER).addU16(bufSize)); in addExceptionBuffer() 163 return append(new Instruction(ExtendedOpcodes.TRANSMIT, Rbit0).addU8(ipOfs).addU8(255)); in addTransmit() 183 return append(new Instruction(ExtendedOpcodes.TRANSMIT, isUdp ? Rbit1 : Rbit0) in addTransmitL4() 235 return append(new Instruction(ExtendedOpcodes.EWRITE1, reg)); in addWriteU8() 243 return append(new Instruction(ExtendedOpcodes.EWRITE2, reg)); in addWriteU16() 251 return append(new Instruction(ExtendedOpcodes.EWRITE4, reg)); in addWriteU32() 325 return append(new Instruction(ExtendedOpcodes.EPKTDATACOPYIMM, Rbit1).addU8(len)); in addDataCopyFromR0() 337 return append(new Instruction(ExtendedOpcodes.EPKTDATACOPYIMM, Rbit0).addU8(len)); in addPacketCopyFromR0() 349 return append(new Instruction(ExtendedOpcodes.EPKTDATACOPYR1, Rbit1)); in addDataCopyFromR0LenR1() [all …]
|
D | ApfV4GeneratorBase.java | 616 return append(new BaseApfGenerator.Instruction(ExtendedOpcodes.LDM, slot.value, r)); in addLoadFromMemory() 625 return append(new Instruction(ExtendedOpcodes.STM, slot.value, r)); in addStoreToMemory() 650 return append(new Instruction(ExtendedOpcodes.NOT, r)); in addNot() 657 return append(new Instruction(ExtendedOpcodes.NEG, r)); in addNeg() 664 return append(new Instruction(ExtendedOpcodes.SWAP)); in addSwap() 672 return append(new Instruction(ExtendedOpcodes.MOVE, r)); in addMove()
|
D | BaseApfGenerator.java | 145 enum ExtendedOpcodes { enum in BaseApfGenerator 239 ExtendedOpcodes(int value) { in ExtendedOpcodes() method in BaseApfGenerator.ExtendedOpcodes 411 Instruction(ExtendedOpcodes extendedOpcodes, Rbit rbit) { in Instruction() 416 Instruction(ExtendedOpcodes extendedOpcodes, Register register) { in Instruction() 421 Instruction(ExtendedOpcodes extendedOpcodes, int slot, Register register) in Instruction() 434 Instruction(ExtendedOpcodes extendedOpcodes) { in Instruction() 597 != ExtendedOpcodes.EXCEPTIONBUFFER.value) { in updateExceptionBufferSize()
|
D | ApfV6Generator.java | 300 return append(new Instruction(ExtendedOpcodes.ALLOCATE, Rbit1).addU16(size)); in addAllocate()
|
D | ApfV61GeneratorBase.java | 367 return append(new Instruction(ExtendedOpcodes.JDNSQMATCH2, Rbit1).setTargetLabel(tgt) in addJumpIfPktAtR0ContainDnsQ2()
|