HomeSort by relevance Sort by last modified time
    Searched refs:LSubKindOperand (Results 1 - 2 of 2) sorted by null

  /external/v8/src/crankshaft/
lithium.h 318 class LSubKindOperand final : public LOperand {
320 static LSubKindOperand* Create(int index, Zone* zone) {
323 return new(zone) LSubKindOperand(index);
326 static LSubKindOperand* cast(LOperand* op) {
328 return reinterpret_cast<LSubKindOperand*>(op);
335 static LSubKindOperand* cache;
337 LSubKindOperand() : LOperand() { }
338 explicit LSubKindOperand(int index) : LOperand(kOperandKind, index) { }
343 typedef LSubKindOperand<LOperand::type, number> L##name;
lithium.cc 135 LSubKindOperand<kOperandKind, kNumCachedOperands>*
136 LSubKindOperand<kOperandKind, kNumCachedOperands>::cache = NULL;
140 void LSubKindOperand<kOperandKind, kNumCachedOperands>::SetUpCache() {
142 cache = new LSubKindOperand[kNumCachedOperands];
150 void LSubKindOperand<kOperandKind, kNumCachedOperands>::TearDownCache() {

Completed in 67 milliseconds