HomeSort by relevance Sort by last modified time
    Searched refs:register_count (Results 1 - 25 of 39) sorted by null

1 2

  /external/v8/src/arm/
frame-constants-arm.cc 23 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
24 return register_count;
27 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
28 USE(register_count);
  /external/v8/src/ia32/
frame-constants-ia32.cc 21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
22 return register_count;
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
26 USE(register_count);
  /external/v8/src/mips/
frame-constants-mips.cc 21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
22 return register_count;
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
26 USE(register_count);
  /external/v8/src/mips64/
frame-constants-mips64.cc 21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
22 return register_count;
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
26 USE(register_count);
  /external/v8/src/ppc/
frame-constants-ppc.cc 26 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
27 return register_count;
30 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
31 USE(register_count);
  /external/v8/src/s390/
frame-constants-s390.cc 23 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
24 return register_count;
27 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
28 USE(register_count);
  /external/v8/src/x64/
frame-constants-x64.cc 21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
22 return register_count;
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
26 USE(register_count);
  /external/v8/src/arm64/
frame-constants-arm64.cc 22 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
24 return RoundUp(register_count, 2);
27 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
30 int slot_count = kFixedSlotCount + register_count;
  /external/v8/src/compiler/
bytecode-liveness-map.cc 11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone)
12 : in(new (zone) BytecodeLivenessState(register_count, zone)),
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {}
23 int register_count,
27 [&]() { return BytecodeLiveness(register_count, zone); },
osr.cc 22 info->shared_info()->GetBytecodeArray()->register_count()) +
bytecode-liveness-map.h 21 BytecodeLivenessState(int register_count, Zone* zone)
22 : bit_vector_(register_count + 1, zone) {}
82 BytecodeLiveness(int register_count, Zone* zone);
89 BytecodeLiveness& InitializeLiveness(int offset, int register_count,
bytecode-analysis.h 25 BytecodeLoopAssignments(int parameter_count, int register_count, Zone* zone);
70 LoopInfo(int parent_offset, int parameter_count, int register_count,
73 assignments_(parameter_count, register_count, zone),
bytecode-analysis.cc 20 int register_count, Zone* zone)
23 BitVector(parameter_count + register_count, zone)) {}
426 current_offset, bytecode_array()->register_count(), zone());
554 bytecode_array_->register_count(), zone_)});
797 BytecodeLivenessState previous_liveness(bytecode_array()->register_count(),
    [all...]
  /external/v8/src/interpreter/
bytecode-register.h 120 return (register_count() == 0) ? Register(0) : (*this)[0];
124 return (register_count() == 0) ? Register(0) : (*this)[register_count_ - 1];
127 int register_count() const { return register_count_; } function in class:v8::internal::interpreter::RegisterList
135 RegisterList(int first_reg_index, int register_count)
136 : first_reg_index_(first_reg_index), register_count_(register_count) {}
bytecode-array-builder.cc 88 int register_count = total_register_count(); local
92 register_count = register_optimizer_->maxiumum_register_index() + 1;
98 isolate, register_count, parameter_count(), handler_table);
247 DCHECK_EQ(reg_list.register_count(), 2);
275 DCHECK_EQ(2, reg_list.register_count());
285 DCHECK_EQ(3, reg_list.register_count());
    [all...]
bytecode-register-optimizer.cc 429 for (int i = 0; i < reg_list.register_count(); ++i) {
448 if (reg_list.register_count() == 1) {
454 for (int i = 0; i < reg_list.register_count(); ++i) {
491 if (reg_list.register_count() != 0) {
493 GrowRegisterMap(Register(first_index + reg_list.register_count() - 1));
494 for (int i = 0; i < reg_list.register_count(); i++) {
502 for (int i = 0; i < reg_list.register_count(); i++) {
bytecode-array-writer.h 44 Handle<BytecodeArray> ToBytecodeArray(Isolate* isolate, int register_count,
bytecode-array-writer.cc 40 Isolate* isolate, int register_count, int parameter_count,
45 int frame_size = register_count * kPointerSize;
interpreter-assembler.cc 1608 Node* register_count = ChangeUint32ToWord(registers.reg_count()); local
1680 TNode<UintPtrT> register_count = ChangeUint32ToWord(registers.reg_count()); local
    [all...]
  /external/v8/src/runtime/
runtime-generator.cc 25 function->shared()->GetBytecodeArray()->register_count();
  /external/gemmlowp/meta/generators/
transform_kernels_common.py 62 register_count = (elements + 15) / 16
63 load = [registers.QuadRegister() for unused_i in range(register_count)]
108 register_count = (elements + 3) / 4
109 load = [registers.QuadRegister() for unused_i in range(register_count)]
177 register_count = (elements + 3) / 4
178 load = [registers.QuadRegister() for unused_i in range(register_count)]
258 register_count = (elements + 3) / 4
259 load = [registers.QuadRegister() for unused_i in range(register_count)]
491 register_count = (elements + 3) / 4
494 registers.QuadRegister() for unused_i in range(register_count)
    [all...]
  /art/compiler/optimizing/
parallel_move_resolver.h 86 int AllocateScratchRegister(int blocked, int if_scratch, int register_count, bool* spilled);
parallel_move_resolver.cc 260 int register_count,
265 for (int reg = 0; reg < register_count; ++reg) {
  /external/v8/src/
frame-constants.h 272 // 'register_count' register slots.
275 static int PaddingSlotCount(int register_count);
321 // Returns the number of stack slots needed for 'register_count' registers.
324 static int RegisterStackSlotCount(int register_count);
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverManagerTest.java 506 int register_count = 10; local
511 for (int i = 0; i < register_count; i++) {

Completed in 1727 milliseconds

1 2