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

  /external/v8/src/interpreter/
bytecode-array-iterator.h 32 uint32_t GetFlagOperand(int operand_index) const;
33 int32_t GetImmediateOperand(int operand_index) const;
34 uint32_t GetIndexOperand(int operand_index) const;
35 uint32_t GetRegisterCountOperand(int operand_index) const;
36 Register GetRegisterOperand(int operand_index) const;
37 int GetRegisterOperandRange(int operand_index) const;
38 Runtime::FunctionId GetRuntimeIdOperand(int operand_index) const;
39 Runtime::FunctionId GetIntrinsicIdOperand(int operand_index) const;
40 Handle<Object> GetConstantForIndexOperand(int operand_index) const;
48 uint32_t GetUnsignedOperand(int operand_index,
    [all...]
bytecode-array-iterator.cc 62 int operand_index, OperandType operand_type) const {
63 DCHECK_GE(operand_index, 0);
64 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode()));
66 Bytecodes::GetOperandType(current_bytecode(), operand_index));
71 Bytecodes::GetOperandOffset(current_bytecode(), operand_index,
78 int operand_index, OperandType operand_type) const {
79 DCHECK_GE(operand_index, 0);
80 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode()));
82 Bytecodes::GetOperandType(current_bytecode(), operand_index));
87 Bytecodes::GetOperandOffset(current_bytecode(), operand_index,
    [all...]
interpreter-assembler.cc 139 Node* InterpreterAssembler::OperandOffset(int operand_index) {
141 Bytecodes::GetOperandOffset(bytecode_, operand_index, operand_scale()));
144 Node* InterpreterAssembler::BytecodeOperandUnsignedByte(int operand_index) {
145 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(bytecode_));
147 bytecode_, operand_index, operand_scale()));
148 Node* operand_offset = OperandOffset(operand_index);
153 Node* InterpreterAssembler::BytecodeOperandSignedByte(int operand_index) {
154 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(bytecode_));
156 bytecode_, operand_index, operand_scale()));
157 Node* operand_offset = OperandOffset(operand_index);
    [all...]
interpreter-assembler.h 26 // Returns the count immediate for bytecode operand |operand_index| in the
28 compiler::Node* BytecodeOperandCount(int operand_index);
29 // Returns the 8-bit flag for bytecode operand |operand_index| in the
31 compiler::Node* BytecodeOperandFlag(int operand_index);
32 // Returns the index immediate for bytecode operand |operand_index| in the
34 compiler::Node* BytecodeOperandIdx(int operand_index);
35 // Returns the Imm8 immediate for bytecode operand |operand_index| in the
37 compiler::Node* BytecodeOperandImm(int operand_index);
38 // Returns the register index for bytecode operand |operand_index| in the
40 compiler::Node* BytecodeOperandReg(int operand_index);
    [all...]
bytecode-register-optimizer.h 80 int operand_index);
bytecodes.cc 384 for (int operand_index = 0; operand_index < i; ++operand_index) {
386 GetOperandSize(bytecode, operand_index, operand_scale);
bytecode-register-optimizer.cc 482 BytecodeNode* const node, Register reg, int operand_index) {
484 node->operands()[operand_index] =
  /external/v8/src/runtime/
runtime-interpreter.cc 73 for (int operand_index = 0; operand_index < operand_count; operand_index++) {
75 interpreter::Bytecodes::GetOperandType(bytecode, operand_index);
82 bytecode_iterator.GetRegisterOperand(operand_index);
83 int range = bytecode_iterator.GetRegisterOperandRange(operand_index);
  /external/v8/src/crankshaft/
hydrogen-environment-liveness.cc 38 int operand_index = simulate->ToOperandIndex(index); local
39 if (operand_index == -1) {
42 simulate->SetOperandAt(operand_index, graph()->GetConstantOptimizedOut());
lithium-allocator.cc 581 int operand_index = iterator.Current(); local
582 LiveRange* range = LiveRangeFor(operand_index);
1249 int operand_index = iterator.Current(); local
1323 int operand_index = iterator.Current(); local
1340 int operand_index = iterator.Current(); local
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 243 LiveRangeBoundArray* ArrayFor(int operand_index) {
244 DCHECK(operand_index < bounds_length_);
245 TopLevelLiveRange* range = data_->live_ranges()[operand_index];
247 LiveRangeBoundArray* array = &bounds_[operand_index];
1476 int operand_index = iterator.Current(); local
1883 int operand_index = iterator.Current(); local
2253 int operand_index = iterator.Current(); local
    [all...]

Completed in 75 milliseconds