Home | History | Annotate | Download | only in x87

Lines Matching defs:LInstruction

150   Opcode opcode() const final { return LInstruction::k##type; } \
153 static L##type* cast(LInstruction* instr) { \
165 class LInstruction : public ZoneObject {
167 LInstruction()
173 virtual ~LInstruction() {}
277 class LTemplateResultInstruction : public LInstruction {
321 static LGap* cast(LInstruction* instr) {
1378 Opcode opcode() const override { return LInstruction::kArithmeticD; }
1404 Opcode opcode() const override { return LInstruction::kArithmeticT; }
2377 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2381 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2382 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2383 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2384 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2385 LInstruction* DoMathLog(HUnaryMathOperation* instr);
2386 LInstruction* DoMathCos(HUnaryMathOperation* instr);
2387 LInstruction* DoMathSin(HUnaryMathOperation* instr);
2388 LInstruction* DoMathExp(HUnaryMathOperation* instr);
2389 LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2390 LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2391 LInstruction* DoMathClz32(HUnaryMathOperation* instr);
2392 LInstruction* DoDivByPowerOf2I(HDiv* instr);
2393 LInstruction* DoDivByConstI(HDiv* instr);
2394 LInstruction* DoDivI(HDiv* instr);
2395 LInstruction* DoModByPowerOf2I(HMod* instr);
2396 LInstruction* DoModByConstI(HMod* instr);
2397 LInstruction* DoModI(HMod* instr);
2398 LInstruction* DoFlooringDivByPowerOf2I(HMathFloorOfDiv* instr);
2399 LInstruction* DoFlooringDivByConstI(HMathFloorOfDiv* instr);
2400 LInstruction* DoFlooringDivI(HMathFloorOfDiv* instr);
2454 LInstruction* Define(LTemplateResultInstruction<1>* instr,
2456 LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2457 LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2459 LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2460 LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2462 LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2464 LInstruction* DefineX87TOS(LTemplateResultInstruction<1>* instr);
2467 LInstruction* AssignEnvironment(LInstruction* instr);
2470 LInstruction* AssignPointerMap(LInstruction* instr);
2479 LInstruction* MarkAsCall(
2480 LInstruction* instr,
2485 void AddInstruction(LInstruction* instr, HInstruction* current);
2488 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2489 LInstruction* DoArithmeticD(Token::Value op,
2491 LInstruction* DoArithmeticT(Token::Value op,