Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dinstruction.h316 class SubKindOperand FINAL : public InstructionOperand {
318 static SubKindOperand* Create(int index, Zone* zone) { in Create()
321 return new (zone) SubKindOperand(index); in Create()
324 static SubKindOperand* cast(InstructionOperand* op) { in cast()
326 return reinterpret_cast<SubKindOperand*>(op); in cast()
333 static SubKindOperand* cache;
335 SubKindOperand() : InstructionOperand() {} in SubKindOperand() function
336 explicit SubKindOperand(int index) in SubKindOperand() function
342 typedef SubKindOperand<InstructionOperand::type, number> name##Operand;
Dinstruction.cc61 SubKindOperand<kOperandKind, kNumCachedOperands>*
62 SubKindOperand<kOperandKind, kNumCachedOperands>::cache = NULL;
66 void SubKindOperand<kOperandKind, kNumCachedOperands>::SetUpCache() { in SetUpCache()
68 cache = new SubKindOperand[kNumCachedOperands]; in SetUpCache()
76 void SubKindOperand<kOperandKind, kNumCachedOperands>::TearDownCache() { in TearDownCache()