Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:LUnallocated

73 class LUnallocated : public LOperand {
105 explicit LUnallocated(ExtendedPolicy policy) : LOperand(UNALLOCATED, 0) {
111 LUnallocated(BasicPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
118 LUnallocated(ExtendedPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
126 LUnallocated(ExtendedPolicy policy, Lifetime lifetime)
133 LUnallocated* CopyUnconstrained(Zone* zone) {
134 LUnallocated* result = new(zone) LUnallocated(ANY);
139 static LUnallocated* cast(LOperand* op) {
141 return reinterpret_cast<LUnallocated*>(op);
144 // The encoding used for LUnallocated operands depends on the policy that is
258 const int parameter_limit = -LUnallocated::kMinFixedSlotIndex;
264 const int locals_limit = LUnallocated::kMaxFixedSlotIndex;