< prev index next >

src/cpu/x86/vm/stubGenerator_x86_64.cpp

Print this page

        

*** 4092,4102 **** StubRoutines::_squareToLen = generate_squareToLen(); } if (UseMulAddIntrinsic) { StubRoutines::_mulAdd = generate_mulAdd(); } ! #endif } public: StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) { if (all) { --- 4092,4113 ---- StubRoutines::_squareToLen = generate_squareToLen(); } if (UseMulAddIntrinsic) { StubRoutines::_mulAdd = generate_mulAdd(); } ! ! #ifndef _WINDOWS ! if (UseMontgomeryMultiplyIntrinsic) { ! StubRoutines::_montgomeryMultiply ! = CAST_FROM_FN_PTR(address, SharedRuntime::montgomery_multiply); ! } ! if (UseMontgomerySquareIntrinsic) { ! StubRoutines::_montgomerySquare ! = CAST_FROM_FN_PTR(address, SharedRuntime::montgomery_square); ! } ! #endif // WINDOWS ! #endif // COMPILER2 } public: StubGenerator(CodeBuffer* code, bool all) : StubCodeGenerator(code) { if (all) {
< prev index next >