Searched refs:operand_size (Results 1 – 12 of 12) sorted by relevance
/external/v8/test/unittests/interpreter/ |
D | constant-array-builder-unittest.cc | 51 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local 52 CHECK(operand_size == OperandSize::kByte); in TEST_F() 102 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local 103 CHECK(operand_size == OperandSize::kByte); in TEST_F() 127 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local 128 CHECK(operand_size == OperandSize::kShort); in TEST_F() 136 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local 137 CHECK(operand_size == OperandSize::kShort); in TEST_F() 139 builder.CommitReservedEntry(operand_size, object); in TEST_F() 143 OperandSize operand_size = builder.CreateReservedEntry(); in TEST_F() local [all …]
|
/external/v8/src/interpreter/ |
D | constant-array-builder.cc | 135 size_t ConstantArrayBuilder::CommitReservedEntry(OperandSize operand_size, in CommitReservedEntry() argument 137 DiscardReservedEntry(operand_size); in CommitReservedEntry() 143 if (operand_size == OperandSize::kByte && in CommitReservedEntry() 153 DCHECK(operand_size == OperandSize::kShort || index < idx8_slice_.capacity()); in CommitReservedEntry() 159 void ConstantArrayBuilder::DiscardReservedEntry(OperandSize operand_size) { in DiscardReservedEntry() argument 160 switch (operand_size) { in DiscardReservedEntry()
|
D | constant-array-builder.h | 55 size_t CommitReservedEntry(OperandSize operand_size, Handle<Object> object); 58 void DiscardReservedEntry(OperandSize operand_size);
|
D | bytecodes.cc | 44 const char* Bytecodes::OperandSizeToString(OperandSize operand_size) { in OperandSizeToString() argument 45 switch (operand_size) { in OperandSizeToString() 341 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size) { in operator <<() argument 342 return os << Bytecodes::OperandSizeToString(operand_size); in operator <<()
|
D | bytecodes.h | 341 static const char* OperandSizeToString(OperandSize operand_size);
|
/external/v8/src/x64/ |
D | disasm-x64.cc | 410 OperandSize operand_size() { in operand_size() function in disasm::DisassemblerX64 418 return "bwlq"[operand_size()]; in operand_size_code() 721 byte_size_immediate ? OPERAND_BYTE_SIZE : operand_size(); in PrintImmediateOp() 766 count += PrintImmediate(data + 1 + count, operand_size()); in F6F7Instruction() 1205 switch (operand_size()) { in AVXInstruction() 2016 switch (operand_size()) { in InstructionDecode() 2080 count += PrintImmediate(data + count, operand_size()); in InstructionDecode() 2153 if (operand_size() == OPERAND_WORD_SIZE) { in InstructionDecode() 2271 switch (operand_size()) { in InstructionDecode() 2309 switch (operand_size()) { in InstructionDecode()
|
D | macro-assembler-x64.h | 1002 return (target.requires_rex() ? 2 : 1) + target.operand_size(); in CallSize()
|
D | assembler-x64.h | 393 int operand_size() const { return len_; } in operand_size() function
|
/external/v8/src/ppc/ |
D | simulator-ppc.h | 275 void ProcessPUW(Instruction* instr, int num_regs, int operand_size,
|
/external/v8/src/arm/ |
D | simulator-arm.h | 287 int operand_size,
|
D | simulator-arm.cc | 1655 int operand_size = (precision == kSinglePrecision) ? 4 : 8; in HandleVList() local 1671 ProcessPU(instr, num_regs, operand_size, &start_address, &end_address); in HandleVList() 1700 DCHECK(reinterpret_cast<intptr_t>(address) - operand_size == end_address); in HandleVList()
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
D | libdisasm.i | 54 %rename(operand_size) x86_operand_size;
|