Home
last modified time | relevance | path

Searched refs:LSubKindOperand (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/crankshaft/
Dlithium.h318 class LSubKindOperand final : public LOperand {
320 static LSubKindOperand* Create(int index, Zone* zone) { in Create()
323 return new(zone) LSubKindOperand(index); in Create()
326 static LSubKindOperand* cast(LOperand* op) { in cast()
328 return reinterpret_cast<LSubKindOperand*>(op); in cast()
335 static LSubKindOperand* cache;
337 LSubKindOperand() : LOperand() { } in LSubKindOperand() function
338 explicit LSubKindOperand(int index) : LOperand(kOperandKind, index) { } in LSubKindOperand() function
343 typedef LSubKindOperand<LOperand::type, number> L##name;
Dlithium.cc133 LSubKindOperand<kOperandKind, kNumCachedOperands>*
134 LSubKindOperand<kOperandKind, kNumCachedOperands>::cache = NULL;
138 void LSubKindOperand<kOperandKind, kNumCachedOperands>::SetUpCache() { in SetUpCache()
140 cache = new LSubKindOperand[kNumCachedOperands]; in SetUpCache()
148 void LSubKindOperand<kOperandKind, kNumCachedOperands>::TearDownCache() { in TearDownCache()