Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Immediate

46 // selected function, and can check the immediate arguments against that; and
569 bool Immediate;
570 BuiltinArgResult(unsigned ArgNum, bool AddressType, bool Immediate)
571 : ArgNum(ArgNum), AddressType(AddressType), Immediate(Immediate) {}
585 bool hasIntegerValue() const override { return Immediate; }
926 // immediate is smaller than the _possible_ range of values for
1044 bool Immediate);
1071 // of these: immediate operands are used as plain numbers rather than as
1073 if (R->isSubClassOf("Immediate"))
1305 bool Promote, bool Immediate) {
1307 ArgNum, isa<PointerType>(ArgType), Immediate);
1385 // If the argument is a subclass of Immediate, record the details about
1387 bool Immediate = false;
1390 if (TypeRec->isSubClassOf("Immediate")) {
1391 Immediate = true;
1430 ME.getCodeForArg(i, ArgType, Promote, Immediate);