Lines Matching refs:value
438 // Conditionally move a value into the destination register. Only X registers
539 void TurboAssembler::Fcmp(const VRegister& fn, double value) {
541 if (value != 0.0) {
544 Fmov(tmp, value);
547 fcmp(fn, value);
1070 // Load value directly from the upper half-word.
1107 void TurboAssembler::JumpIfSmi(Register value, Label* smi_label,
1112 Tbz(value, 0, smi_label);
1118 Tbnz(value, 0, not_smi_label);
1130 void MacroAssembler::JumpIfNotSmi(Register value, Label* not_smi_label) {
1131 JumpIfSmi(value, nullptr, not_smi_label);