Home | History | Annotate | Download | only in ia32

Lines Matching defs:LInstruction

151   Opcode opcode() const final { return LInstruction::k##type; } \
154 static L##type* cast(LInstruction* instr) { \
166 class LInstruction : public ZoneObject {
168 LInstruction()
174 virtual ~LInstruction() {}
274 class LTemplateResultInstruction : public LInstruction {
318 static LGap* cast(LInstruction* instr) {
1388 Opcode opcode() const override { return LInstruction::kArithmeticD; }
1414 Opcode opcode() const override { return LInstruction::kArithmeticT; }
2381 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2385 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2386 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2387 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2388 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2389 LInstruction* DoMathLog(HUnaryMathOperation* instr);
2390 LInstruction* DoMathCos(HUnaryMathOperation* instr);
2391 LInstruction* DoMathSin(HUnaryMathOperation* instr);
2392 LInstruction* DoMathExp(HUnaryMathOperation* instr);
2393 LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2394 LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2395 LInstruction* DoMathClz32(HUnaryMathOperation* instr);
2396 LInstruction* DoDivByPowerOf2I(HDiv* instr);
2397 LInstruction* DoDivByConstI(HDiv* instr);
2398 LInstruction* DoDivI(HDiv* instr);
2399 LInstruction* DoModByPowerOf2I(HMod* instr);
2400 LInstruction* DoModByConstI(HMod* instr);
2401 LInstruction* DoModI(HMod* instr);
2402 LInstruction* DoFlooringDivByPowerOf2I(HMathFloorOfDiv* instr);
2403 LInstruction* DoFlooringDivByConstI(HMathFloorOfDiv* instr);
2404 LInstruction* DoFlooringDivI(HMathFloorOfDiv* instr);
2461 LInstruction* Define(LTemplateResultInstruction<1>* instr,
2463 LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2464 LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2466 LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2467 LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2469 LInstruction* DefineFixedDouble(LTemplateResultInstruction<1>* instr,
2473 LInstruction* AssignEnvironment(LInstruction* instr);
2476 LInstruction* AssignPointerMap(LInstruction* instr);
2485 LInstruction* MarkAsCall(
2486 LInstruction* instr,
2491 void AddInstruction(LInstruction* instr, HInstruction* current);
2494 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2495 LInstruction* DoArithmeticD(Token::Value op,
2497 LInstruction* DoArithmeticT(Token::Value op,