Home | History | Annotate | Download | only in arm

Lines Matching defs:LInstruction

148   Opcode opcode() const final { return LInstruction::k##type; } \
151 static L##type* cast(LInstruction* instr) { \
163 class LInstruction : public ZoneObject {
165 LInstruction()
171 virtual ~LInstruction() {}
271 class LTemplateResultInstruction : public LInstruction {
316 static LGap* cast(LInstruction* instr) {
1380 Opcode opcode() const override { return LInstruction::kArithmeticD; }
1406 Opcode opcode() const override { return LInstruction::kArithmeticT; }
2364 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
2368 LInstruction* DoMultiplyAdd(HMul* mul, HValue* addend);
2369 LInstruction* DoMultiplySub(HValue* minuend, HMul* mul);
2370 LInstruction* DoRSub(HSub* instr);
2374 LInstruction
2375 LInstruction* DoMathRound(HUnaryMathOperation* instr);
2376 LInstruction* DoMathFround(HUnaryMathOperation* instr);
2377 LInstruction* DoMathAbs(HUnaryMathOperation* instr);
2378 LInstruction* DoMathLog(HUnaryMathOperation* instr);
2379 LInstruction* DoMathCos(HUnaryMathOperation* instr);
2380 LInstruction* DoMathSin(HUnaryMathOperation* instr);
2381 LInstruction* DoMathExp(HUnaryMathOperation* instr);
2382 LInstruction* DoMathSqrt(HUnaryMathOperation* instr);
2383 LInstruction* DoMathPowHalf(HUnaryMathOperation* instr);
2384 LInstruction* DoMathClz32(HUnaryMathOperation* instr);
2385 LInstruction* DoDivByPowerOf2I(HDiv* instr);
2386 LInstruction* DoDivByConstI(HDiv* instr);
2387 LInstruction* DoDivI(HDiv* instr);
2388 LInstruction* DoModByPowerOf2I(HMod* instr);
2389 LInstruction* DoModByConstI(HMod* instr);
2390 LInstruction* DoModI(HMod* instr);
2391 LInstruction* DoFlooringDivByPowerOf2I(HMathFloorOfDiv* instr);
2392 LInstruction* DoFlooringDivByConstI(HMathFloorOfDiv* instr);
2393 LInstruction* DoFlooringDivI(HMathFloorOfDiv* instr);
2447 LInstruction* Define(LTemplateResultInstruction<1>* instr,
2449 LInstruction* DefineAsRegister(LTemplateResultInstruction<1>* instr);
2450 LInstruction* DefineAsSpilled(LTemplateResultInstruction<1>* instr,
2452 LInstruction* DefineSameAsFirst(LTemplateResultInstruction<1>* instr);
2453 LInstruction* DefineFixed(LTemplateResultInstruction<1>* instr,
2455 LInstruction* DefineFixedDouble(LTemplateResultInstruction<1>* instr,
2457 LInstruction* AssignEnvironment(LInstruction* instr);
2458 LInstruction* AssignPointerMap(LInstruction* instr);
2465 LInstruction* MarkAsCall(
2466 LInstruction* instr,
2471 void AddInstruction(LInstruction* instr, HInstruction* current);
2474 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2475 LInstruction* DoArithmeticD(Token::Value op,
2477 LInstruction* DoArithmeticT(Token::Value op,