Searched refs:InputAt (Results 1 - 13 of 13) sorted by relevance

/external/v8/src/
H A Dlithium-allocator-inl.h102 return instr_->InputAt(current_);
113 while (current_ < limit_ && instr_->InputAt(current_)->IsConstantOperand()) {
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc774 Register dividend = ToRegister(instr->InputAt(0));
798 Register left_reg = ToRegister(instr->InputAt(0));
799 Register right_reg = ToRegister(instr->InputAt(1));
886 LOperand* right = instr->InputAt(1);
888 ASSERT(ToRegister(instr->InputAt(0)).is(rax));
889 ASSERT(!ToRegister(instr->InputAt(1)).is(rax));
890 ASSERT(!ToRegister(instr->InputAt(1)).is(rdx));
932 Register left = ToRegister(instr->InputAt(0));
933 LOperand* right = instr->InputAt(1);
1015 LOperand* left = instr->InputAt(
[all...]
H A Dlithium-x64.cc204 InputAt(0)->PrintTo(stream);
210 InputAt(0)->PrintTo(stream);
212 InputAt(1)->PrintTo(stream);
219 InputAt(0)->PrintTo(stream);
228 InputAt(0)->PrintTo(stream);
235 InputAt(0)->PrintTo(stream);
242 InputAt(0)->PrintTo(stream);
249 InputAt(0)->PrintTo(stream);
256 InputAt(0)->PrintTo(stream);
257 InputAt(
[all...]
H A Dlithium-x64.h271 virtual LOperand* InputAt(int i) = 0;
275 LOperand* FirstInput() { return InputAt(0); }
305 LOperand* InputAt(int i) { return inputs_[i]; } function in class:v8::internal::LTemplateInstruction
1309 LOperand* global_object() { return InputAt(0); }
1311 LOperand* value() { return InputAt(1); }
1325 LOperand* context() { return InputAt(0); }
1343 LOperand* context() { return InputAt(0); }
1344 LOperand* value() { return InputAt(1); }
1382 LOperand* context() { return InputAt(0); }
1407 LOperand* global() { return InputAt(
[all...]
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc902 Register dividend = ToRegister(instr->InputAt(0));
927 Register left = ToRegister(instr->InputAt(0));
928 Register right = ToRegister(instr->InputAt(1));
1050 const Register left = ToRegister(instr->InputAt(0));
1051 const Register right = ToRegister(instr->InputAt(1));
1121 Register left = ToRegister(instr->InputAt(0));
1122 Register right = ToRegister(instr->InputAt(1));
1153 Register left = ToRegister(instr->InputAt(0));
1154 LOperand* right_op = instr->InputAt(1);
1247 LOperand* left_op = instr->InputAt(
[all...]
H A Dlithium-arm.cc202 InputAt(0)->PrintTo(stream);
208 InputAt(0)->PrintTo(stream);
210 InputAt(1)->PrintTo(stream);
217 InputAt(0)->PrintTo(stream);
226 InputAt(0)->PrintTo(stream);
233 InputAt(0)->PrintTo(stream);
240 InputAt(0)->PrintTo(stream);
247 InputAt(0)->PrintTo(stream);
254 InputAt(0)->PrintTo(stream);
255 InputAt(
[all...]
H A Dlithium-arm.h270 virtual LOperand* InputAt(int i) = 0;
274 LOperand* FirstInput() { return InputAt(0); }
304 LOperand* InputAt(int i) { return inputs_[i]; } function in class:v8::internal::LTemplateInstruction
1330 LOperand* global_object() { return InputAt(0); }
1332 LOperand* value() { return InputAt(1); }
1346 LOperand* context() { return InputAt(0); }
1363 LOperand* context() { return InputAt(0); }
1364 LOperand* value() { return InputAt(1); }
1402 LOperand* context() { return InputAt(0); }
1421 LOperand* context() { return InputAt(
[all...]
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc865 const Register left = ToRegister(instr->InputAt(0));
893 Register right = EmitLoadRegister(instr->InputAt(1), scratch);
913 const Register left = ToRegister(instr->InputAt(0));
914 const Register right = ToRegister(instr->InputAt(1));
952 Register left = ToRegister(instr->InputAt(0));
953 LOperand* right_op = instr->InputAt(1);
1052 LOperand* left_op = instr->InputAt(0);
1053 LOperand* right_op = instr->InputAt(1);
1086 LOperand* right_op = instr->InputAt(1);
1087 Register left = ToRegister(instr->InputAt(
[all...]
H A Dlithium-mips.cc202 InputAt(0)->PrintTo(stream);
208 InputAt(0)->PrintTo(stream);
210 InputAt(1)->PrintTo(stream);
217 InputAt(0)->PrintTo(stream);
226 InputAt(0)->PrintTo(stream);
233 InputAt(0)->PrintTo(stream);
240 InputAt(0)->PrintTo(stream);
247 InputAt(0)->PrintTo(stream);
254 InputAt(0)->PrintTo(stream);
255 InputAt(
[all...]
H A Dlithium-mips.h269 virtual LOperand* InputAt(int i) = 0;
273 LOperand* FirstInput() { return InputAt(0); }
303 LOperand* InputAt(int i) { return inputs_[i]; } function in class:v8::internal::LTemplateInstruction
1310 LOperand* global_object() { return InputAt(0); }
1312 LOperand* value() { return InputAt(1); }
1326 LOperand* context() { return InputAt(0); }
1343 LOperand* context() { return InputAt(0); }
1344 LOperand* value() { return InputAt(1); }
1382 LOperand* context() { return InputAt(0); }
1401 LOperand* context() { return InputAt(
[all...]
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc810 Register dividend = ToRegister(instr->InputAt(0));
834 Register left_reg = ToRegister(instr->InputAt(0));
835 Register right_reg = ToRegister(instr->InputAt(1));
921 LOperand* right = instr->InputAt(1);
923 ASSERT(ToRegister(instr->InputAt(0)).is(eax));
924 ASSERT(!ToRegister(instr->InputAt(1)).is(eax));
925 ASSERT(!ToRegister(instr->InputAt(1)).is(edx));
967 Register left = ToRegister(instr->InputAt(0));
968 LOperand* right = instr->InputAt(1);
1046 LOperand* left = instr->InputAt(
[all...]
H A Dlithium-ia32.cc117 InputAt(i)->PrintTo(stream);
199 InputAt(0)->PrintTo(stream);
205 InputAt(0)->PrintTo(stream);
207 InputAt(1)->PrintTo(stream);
214 InputAt(0)->PrintTo(stream);
223 InputAt(0)->PrintTo(stream);
230 InputAt(0)->PrintTo(stream);
237 InputAt(0)->PrintTo(stream);
244 InputAt(0)->PrintTo(stream);
251 InputAt(
[all...]
H A Dlithium-ia32.h266 virtual LOperand* InputAt(int i) = 0;
270 LOperand* FirstInput() { return InputAt(0); }
300 LOperand* InputAt(int i) { return inputs_[i]; } function in class:v8::internal::LTemplateInstruction
1351 LOperand* context() { return InputAt(0); }
1352 LOperand* global_object() { return InputAt(1); }
1354 LOperand* value() { return InputAt(2); }
1368 LOperand* context() { return InputAt(0); }
1386 LOperand* context() { return InputAt(0); }
1387 LOperand* value() { return InputAt(1); }
1425 LOperand* context() { return InputAt(
[all...]

Completed in 644 milliseconds