// Copyright 2016, VIXL authors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // * Neither the name of ARM Limited nor the names of its contributors may be // used to endorse or promote products derived from this software without // specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Test description for instructions of the following forms: // MNEMONIC{}.W , , // MNEMONIC{}.W , SP, // MNEMONIC{}{} {}, , {, # } // MNEMONIC{}{} {}, , {, ROR # } // // MNEMONIC{}.N , SP, // MNEMONIC{}.N SP, SP, // MNEMONIC{}.N , , // MNEMONIC{}.N , , ; rm is not SP // MNEMONIC{}.N , , ; low registers // // Note that this test only covers the cases where the optional shift // operand is not provided. The shift operands are tested in // "cond-rd-rn-operand-rm-shift-amount-*-t32.json". { "mnemonics": [ "Adc", // ADC{} {}, , ; T1 // ADC{}{} {}, , {, # } ; T2 "Adcs", // ADCS{} {}, , ; T1 // ADCS{}{} {}, , {, # } ; T2 "Add", // ADD{} , , ; T1 // ADD{} , ; T2 // ADD{}{} {}, , ; T2 // ADD{}{} {}, SP, ; T1 // ADD{}{} {SP}, SP, ; T2 // ADD{}{} {}, , {, # } ; T3 // ADD{}{} {}, SP, {, # } ; T3 "Adds", // ADDS{} {}, , ; T1 // ADDS{}{} {}, , {, # } ; T3 // ADDS{}{} {}, SP, {, # } ; T3 "And", // AND{} {}, , ; T1 // AND{}{} {}, , {, # } ; T2 "Ands", // ANDS{} {}, , ; T1 // ANDS{}{} {}, , {, # } ; T2 "Bic", // BIC{} {}, , ; T1 // BIC{}{} {}, , {, # } ; T2 "Bics", // BICS{} {}, , ; T1 // BICS{}{} {}, , {, # } ; T2 "Eor", // EOR{} {}, , ; T1 // EOR{}{} {}, , {, # } ; T2 "Eors", // EORS{} {}, , ; T1 // EORS{}{} {}, , {, # } ; T2 "Orn", // ORN{}{} {}, , {, # } ; T1 "Orns", // ORNS{}{} {}, , {, # } ; T1 "Orr", // ORR{} {}, , ; T1 // ORR{}{} {}, , {, # } ; T2 "Orrs", // ORRS{} {}, , ; T1 // ORRS{}{} {}, , {, # } ; T2 "Rsb", // RSB{}{} {}, , {, # } ; T1 "Rsbs", // RSBS{}{} {}, , {, # } ; T1 "Sbc", // SBC{} {}, , ; T1 // SBC{}{} {}, , {, # } ; T2 "Sbcs", // SBCS{} {}, , ; T1 // SBCS{}{} {}, , {, # } ; T2 "Sub", // SUB{} , , ; T1 // SUB{}{} {}, , {, # } ; T2 // SUB{}{} {}, SP, {, # } ; T1 // SUB{} {}, SP, ; T1 "Subs", // SUBS{} {}, , ; T1 // SUBS{}{} {}, , {, # } ; T2 // SUBS{}{} {}, SP, {, # } ; T1 "Sxtab", // SXTAB{}{} {}, , {, ROR # } ; T1 "Sxtab16", // SXTAB16{}{} {}, , {, ROR # } ; T1 "Sxtah", // SXTAH{}{} {}, , {, ROR # } ; T1 "Uxtab", // UXTAB{}{} {}, , {, ROR # } ; T1 "Uxtab16", // UXTAB16{}{} {}, , {, ROR # } ; T1 "Uxtah", // UXTAH{}{} {}, , {, ROR # } ; T1 // Shift instructions that alias to MOV. // Note that we are not giving them a different input for their // last operand since they are already tested in // "cond-rd-operand-rn-shift-rs-t32.json". // TODO: Add tests for MOV , , , . "Asr", // ASR{} {}, , ; T1 // ASR{}{} {}, , ; T2 "Asrs", // ASRS{} {}, , ; T1 // ASRS{}{} {}, , ; T2 "Lsl", // LSL{} {}, , ; T1 // LSL{}{} {}, , ; T2 "Lsls", // LSLS{} {}, , ; T1 // LSLS{}{} {}, , ; T2 "Lsr", // LSR{} {}, , ; T1 // LSR{}{} {}, , ; T2 "Lsrs", // LSRS{} {}, , ; T1 // LSRS{}{} {}, , ; T2 "Ror", // ROR{} {}, , ; T1 // ROR{}{} {}, , ; T2 "Rors" // RORS{} {}, , ; T1 // RORS{}{} {}, , ; T2 ], "description": { "operands": [ { "name": "cond", "type": "Condition" }, { "name": "rd", "type": "AllRegistersButPC" }, { "name": "rn", "type": "AllRegistersButPC" }, { "name": "op", "wrapper": "Operand", "operands": [ { "name": "rm", "type": "AllRegistersButPC" } ] } ], "inputs": [ { "name": "apsr", "type": "NZCV" }, { "name": "rd", "type": "Register" }, { "name": "rn", "type": "Register" }, { "name": "rm", "type": "Register" } ] }, "test-files": [ { "type": "assembler", "test-cases": [ { "name": "Unconditionnal", "operands": [ "cond", "rd", "rn", "rm" ], "operand-filter": "cond == 'al'", "operand-limit": 500 } ] }, // Test cases where an IT instruction is allowed. { "name": "all-low-in-it-block", "type": "assembler", "mnemonics": [ "Add", // ADD{} , , ; T1 "Sub" // SUB{} , , ; T1 ], "test-cases": [ { "name": "InITBlock", "operands": [ "cond", "rd", "rn", "rm" ], // Generate an extra IT instruction. "in-it-block": "{cond}", "operand-filter": "cond != 'al' and register_is_low(rd) and register_is_low(rn) and register_is_low(rm)", "operand-limit": 500 } ] }, { "name": "all-low-rd-is-rn-in-it-block", "type": "assembler", "mnemonics": [ "Adc", // ADC{} {}, , ; T1 "And", // AND{} {}, , ; T1 "Asr", // ASR{} {}, , ; T1 "Bic", // BIC{} {}, , ; T1 "Eor", // EOR{} {}, , ; T1 "Lsl", // LSL{} {}, , ; T1 "Lsr", // LSR{} {}, , ; T1 "Orr", // ORR{} {}, , ; T1 "Ror", // ROR{} {}, , ; T1 "Sbc" // SBC{} {}, , ; T1 ], "test-cases": [ { "name": "InITBlock", "operands": [ "cond", "rd", "rn", "rm" ], // Generate an extra IT instruction. "in-it-block": "{cond}", "operand-filter": "cond != 'al' and rd == rn and register_is_low(rn) and register_is_low(rm)", "operand-limit": 500 } ] }, { "name": "rd-is-rn-in-it-block", "type": "assembler", "mnemonics": [ "Add" // ADD{}{} {}, , ; T2 ], "test-cases": [ { "name": "InITBlock", "operands": [ "cond", "rd", "rn", "rm" ], // Generate an extra IT instruction. "in-it-block": "{cond}", "operand-filter": "cond != 'al' and rd == rn and rm != 'r13'", "operand-limit": 500 } ] }, // Special case for a conditional ADD instruction with rn as SP. { "name": "rn-is-sp-in-it-block", "type": "assembler", "mnemonics": [ "Add" // ADD{}{} {}, SP, ; T1 ], "test-cases": [ { "name": "InITBlock", "operands": [ "cond", "rd", "rn", "rm" ], // Generate an extra IT instruction. "in-it-block": "{cond}", "operand-filter": "cond != 'al' and rd == rm and register_is_low(rm) and rn == 'r13'" } ] }, // Special case for a conditional ADD instruction with rd and rn as SP. { "name": "rd-is-rn-is-sp-in-it-block", "type": "assembler", "mnemonics": [ "Add" // ADD{}{} {SP}, SP, ; T2 ], "test-cases": [ { "name": "InITBlock", "operands": [ "cond", "rd", "rn", "rm" ], // Generate an extra IT instruction. "in-it-block": "{cond}", "operand-filter": "cond != 'al' and rd == 'r13' and rn == 'r13'" } ] }, { "type": "simulator", "test-cases": [ { "name": "Condition", "operands": [ "cond" ], "inputs": [ "apsr" ] }, // Test combinations of registers values with rd == rn. { "name": "RdIsRn", "operands": [ "cond", "rd", "rn", "rm" ], "inputs": [ "apsr", "rd", "rn", "rm" ], "operand-filter": "rd == rn and rn != rm", "operand-limit": 10, "input-filter": "rd == rn", "input-limit": 200 }, // Test combinations of registers values with rd == rm. { "name": "RdIsRm", "operands": [ "cond", "rd", "rn", "rm" ], "inputs": [ "apsr", "rd", "rn", "rm" ], "operand-filter": "rd == rm and rn != rm", "operand-limit": 10, "input-filter": "rd == rm", "input-limit": 200 }, // Test combinations of registers values. { "name": "RdIsNotRnIsNotRm", "operands": [ "cond", "rd", "rn", "rm" ], "inputs": [ "apsr", "rd", "rn", "rm" ], "operand-filter": "rd != rn != rm", "operand-limit": 10, "input-limit": 200 } ] } ] }