Home | History | Annotate | Download | only in src

Lines Matching refs:register_index

117 void RegExpMacroAssemblerTracer::PopRegister(int register_index) {
118 PrintF(" PopRegister(register=%d);\n", register_index);
119 assembler_->PopRegister(register_index);
124 int register_index,
127 register_index,
129 assembler_->PushRegister(register_index, check_stack_limit);
145 void RegExpMacroAssemblerTracer::SetRegister(int register_index, int to) {
146 PrintF(" SetRegister(register=%d, to=%d);\n", register_index, to);
147 assembler_->SetRegister(register_index, to);
338 void RegExpMacroAssemblerTracer::IfRegisterLT(int register_index,
341 register_index, comparand, LabelToInt(if_lt));
342 assembler_->IfRegisterLT(register_index, comparand, if_lt);
346 void RegExpMacroAssemblerTracer::IfRegisterEqPos(int register_index,
349 register_index, LabelToInt(if_eq));
350 assembler_->IfRegisterEqPos(register_index, if_eq);
354 void RegExpMacroAssemblerTracer::IfRegisterGE(int register_index,
357 register_index, comparand, LabelToInt(if_ge));
358 assembler_->IfRegisterGE(register_index, comparand, if_ge);