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

  /external/v8/src/
lithium.h 306 class LSubKindOperand FINAL : public LOperand {
308 static LSubKindOperand* Create(int index, Zone* zone) {
311 return new(zone) LSubKindOperand(index);
314 static LSubKindOperand* cast(LOperand* op) {
316 return reinterpret_cast<LSubKindOperand*>(op);
323 static LSubKindOperand* cache;
325 LSubKindOperand() : LOperand() { }
326 explicit LSubKindOperand(int index) : LOperand(kOperandKind, index) { }
331 typedef LSubKindOperand<LOperand::type, number> L##name;
lithium.cc 132 LSubKindOperand<kOperandKind, kNumCachedOperands>*
133 LSubKindOperand<kOperandKind, kNumCachedOperands>::cache = NULL;
137 void LSubKindOperand<kOperandKind, kNumCachedOperands>::SetUpCache() {
139 cache = new LSubKindOperand[kNumCachedOperands];
147 void LSubKindOperand<kOperandKind, kNumCachedOperands>::TearDownCache() {

Completed in 58 milliseconds