Lines Matching defs:register_index
96 void RegExpMacroAssemblerTracer::PopRegister(int register_index) {
97 PrintF(" PopRegister(register=%d);\n", register_index);
98 assembler_->PopRegister(register_index);
103 int register_index,
106 register_index,
108 assembler_->PushRegister(register_index, check_stack_limit);
124 void RegExpMacroAssemblerTracer::SetRegister(int register_index, int to) {
125 PrintF(" SetRegister(register=%d, to=%d);\n", register_index, to);
126 assembler_->SetRegister(register_index, to);
405 void RegExpMacroAssemblerTracer::IfRegisterLT(int register_index,
408 register_index, comparand, LabelToInt(if_lt));
409 assembler_->IfRegisterLT(register_index, comparand, if_lt);
413 void RegExpMacroAssemblerTracer::IfRegisterEqPos(int register_index,
416 register_index, LabelToInt(if_eq));
417 assembler_->IfRegisterEqPos(register_index, if_eq);
421 void RegExpMacroAssemblerTracer::IfRegisterGE(int register_index,
424 register_index, comparand, LabelToInt(if_ge));
425 assembler_->IfRegisterGE(register_index, comparand, if_ge);