Home | History | Annotate | Download | only in x64

Lines Matching defs:LInstruction

147   Opcode opcode() const final { return LInstruction::k##type; } \
150 static L##type* cast(LInstruction* instr) { \
162 class LInstruction : public ZoneObject {
164 LInstruction()
170 virtual ~LInstruction() {}
274 class LTemplateResultInstruction : public LInstruction {
321 static LGap* cast(LInstruction* instr) {
1381 Opcode opcode() const override { return LInstruction::kArithmeticD; }
1407 Opcode opcode() const override { return LInstruction::kArithmeticT; }
2367 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2371 LInstruction* DoMathFloor(HUnaryMathOperation* instr);
2372 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2373 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2374 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2375 LInstruction* DoMathCos(HUnaryMathOperation* instr);
2376 LInstruction* DoMathLog(HUnaryMathOperation* instr);
2377 LInstruction* DoMathExp(HUnaryMathOperation* instr);
2378 LInstruction* DoMathSin(HUnaryMathOperation* instr);
2379 LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2380 LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2381 LInstruction* DoMathClz32(HUnaryMathOperation* instr);
2382 LInstruction* DoDivByPowerOf2I(HDiv* instr);
2383 LInstruction* DoDivByConstI(HDiv* instr);
2384 LInstruction* DoDivI(HDiv* instr);
2385 LInstruction* DoModByPowerOf2I(HMod* instr);
2386 LInstruction* DoModByConstI(HMod* instr);
2387 LInstruction* DoModI(HMod* instr);
2388 LInstruction* DoFlooringDivByPowerOf2I(HMathFloorOfDiv* instr);
2389 LInstruction* DoFlooringDivByConstI(HMathFloorOfDiv* instr);
2390 LInstruction* DoFlooringDivI(HMathFloorOfDiv* instr);
2446 LInstruction* Define(LTemplateResultInstruction<1>* instr,
2448 LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2449 LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2451 LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2452 LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2454 LInstruction* DefineFixedDouble(LTemplateResultInstruction<1>* instr,
2458 LInstruction* AssignEnvironment(LInstruction* instr);
2461 LInstruction* AssignPointerMap(LInstruction* instr);
2468 LInstruction* MarkAsCall(
2469 LInstruction* instr,
2474 void AddInstruction(LInstruction* instr, HInstruction* current);
2477 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2478 LInstruction* DoArithmeticD(Token::Value op,
2480 LInstruction* DoArithmeticT(Token::Value op,