This is a collection of Intel®’ IA32® Software Developer's Manuals (URL of the day) and AMD' AMD64 Architecture Programmer's Manual together with the related specifications, application notes, white papers, and change logs. The collection aims to keep all available revisions. It was originally created by Michal Necasek, see OS/2 Museum.

If you have a public document, related to the IA32® specifications and missing from the collection, please mail it to me. The content of this URL and all sub-ULRs is available for convenient bulk download by rsync x86docs password "" (empty).

VJCVT -- AArch32

VJCVT

JavaScript Convert to signed fixed-point, rounding toward Zero. This instruction converts the double-precision floating-point value in the SIMD&FP source register to a 32-bit signed integer using the Round towards Zero rounding mode, and writes the result to the SIMD&FP destination register. If the result is too large to be accommodated as a signed 32-bit integer, then the result is the integer modulo 232, as held in a 32-bit signed integer.

This instruction can generate a floating-point exception. Depending on the settings in FPSCR, the exception results in either a flag being set or a synchronous exception being generated. For more information, see Floating-point exceptions and exception traps.

Depending on settings in the CPACR, NSACR, HCPTR, and FPEXC registers, and the Security state and PE mode in which the instruction is executed, an attempt to execute the instruction might be UNDEFINED, or trapped to Hyp mode. For more information see Enabling Advanced SIMD and floating-point support.

It has encodings from the following instruction sets: A32 ( A1 ) and T32 ( T1 ) .

A1
(FEAT_JSCVT)

313029282726252423222120191817161514131211109876543210
!= 111111101D111001Vd101111M0Vm
condo1opc2sizeo3

Encoding

VJCVT{<q>}.S32.F64 <Sd>, <Dm>

Decode for this encoding

if !IsFeatureImplemented(FEAT_JSCVT) then Undefined(); end; if cond != '1110' then UnpredictableProcedure(); end; let d : integer = UInt(Vd::D); let m : integer = UInt(M::Vm);

T1
(FEAT_JSCVT)

15141312111098765432101514131211109876543210
111011101D111001Vd101111M0Vm
o1opc2sizeo3

Encoding

VJCVT{<q>}.S32.F64 <Sd>, <Dm>

Decode for this encoding

if !IsFeatureImplemented(FEAT_JSCVT) then Undefined(); end; if InITBlock() then UnpredictableProcedure(); end; let d : integer = UInt(Vd::D); let m : integer = UInt(M::Vm);

Assembler Symbols

<q>

See Standard assembler syntax fields.

<Sd>

Is the 32-bit name of the SIMD&FP destination register, encoded in the "Vd:D" field.

<Dm>

Is the 64-bit name of the SIMD&FP source register, encoded in the "M:Vm" field.

Operation

EncodingSpecificOperations(); CheckVFPEnabled(TRUE); let fltval : bits(64) = D(m); var intval : bits(32); var Z : bit; (intval, Z) = FPToFixedJS(fltval, EffectiveFPCR()); FPSCR()[31:28] = '0'::Z::'00'; S(d) = intval;


2026-03_rel 2026-03-26 20:48:11

Copyright © 2010-2026 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.