Searched refs:FPArithmeticDecoder (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFloatDecoder.java42 new FPArithmeticDecoder("fadds", ADDR_E, v_mode, RTLOP_ADD),
43 new FPArithmeticDecoder("fmuls", ADDR_E, v_mode, RTLOP_SMUL),
46 new FPArithmeticDecoder("fsubs", ADDR_E, v_mode, RTLOP_SUB),
47 new FPArithmeticDecoder("fsubrs", ADDR_E, v_mode, RTLOP_SUB),
48 new FPArithmeticDecoder("fdivs", ADDR_E, v_mode, RTLOP_SDIV),
49 new FPArithmeticDecoder("fdivrs", ADDR_E, v_mode, RTLOP_SDIV)
64 new FPArithmeticDecoder("fiaddl", ADDR_E, v_mode, RTLOP_ADD),
65 new FPArithmeticDecoder("fimull", ADDR_E, v_mode, RTLOP_SMUL),
68 new FPArithmeticDecoder("fisubl", ADDR_E, v_mode, RTLOP_SUB),
69 new FPArithmeticDecoder("fisubr
[all...]
H A DFPArithmeticDecoder.java29 public class FPArithmeticDecoder extends FPInstructionDecoder { class in inherits:FPInstructionDecoder
32 public FPArithmeticDecoder(String name, int addrMode1, int operandType1, int rtlOperation) { method in class:FPArithmeticDecoder
36 public FPArithmeticDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { method in class:FPArithmeticDecoder
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DV8FPop1Decoder.java44 addOpfDecoder(FADDs, new FPArithmeticDecoder(FADDs, "fadds", RTLOP_ADD, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE));
45 addOpfDecoder(FADDd, new FPArithmeticDecoder(FADDd, "faddd", RTLOP_ADD, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE));
46 addOpfDecoder(FADDq, new FPArithmeticDecoder(FADDq, "faddq", RTLOP_ADD, RTLDT_FL_QUAD, RTLDT_FL_QUAD, RTLDT_FL_QUAD));
47 addOpfDecoder(FSUBs, new FPArithmeticDecoder(FSUBs, "fsubs", RTLOP_SUB, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE));
48 addOpfDecoder(FSUBd, new FPArithmeticDecoder(FSUBd, "fsubd", RTLOP_SUB, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE));
49 addOpfDecoder(FSUBq, new FPArithmeticDecoder(FSUBq, "fsubq", RTLOP_SUB, RTLDT_FL_QUAD, RTLDT_FL_QUAD, RTLDT_FL_QUAD));
50 addOpfDecoder(FMULs, new FPArithmeticDecoder(FMULs, "fmuls", RTLOP_SMUL, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE, RTLDT_FL_SINGLE));
51 addOpfDecoder(FMULd, new FPArithmeticDecoder(FMULd, "fmuld", RTLOP_SMUL, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE, RTLDT_FL_DOUBLE));
52 addOpfDecoder(FMULq, new FPArithmeticDecoder(FMULq, "fmulq",RTLOP_SMUL, RTLDT_FL_QUAD, RTLDT_FL_QUAD, RTLDT_FL_QUAD));
53 addOpfDecoder(FsMULd, new FPArithmeticDecoder(FsMUL
[all...]
H A DFPArithmeticDecoder.java30 class FPArithmeticDecoder extends FloatDecoder { class in inherits:FloatDecoder
33 FPArithmeticDecoder(int opf, String name, int rtlOperation, method in class:FPArithmeticDecoder

Completed in 39 milliseconds