/external/v8/src/compiler/ |
D | simplified-operator.cc | 31 lhs.machine_type == rhs.machine_type; in operator ==() 43 os << ", " << access.machine_type << "]"; in operator <<() 71 return (val.offset < 16) | (val.machine_type & 0xffff); in HashCode() 75 lhs.offset == rhs.offset && lhs.machine_type == rhs.machine_type && in Equals() 88 return (access.header_size < 16) | (access.machine_type & 0xffff); in HashCode() 93 lhs.machine_type == rhs.machine_type && lhs.type->Is(rhs.type); in Equals()
|
D | machine-type.h | 70 inline MachineType TypeOf(MachineType machine_type) { in TypeOf() argument 71 int result = machine_type & kTypeMask; in TypeOf() 76 inline MachineType RepresentationOf(MachineType machine_type) { in RepresentationOf() argument 77 int result = machine_type & kRepMask; in RepresentationOf() 83 inline int ElementSizeOf(MachineType machine_type) { in ElementSizeOf() argument 84 switch (RepresentationOf(machine_type)) { in ElementSizeOf()
|
D | machine-operator.h | 32 StoreRepresentation(MachineType machine_type, in StoreRepresentation() argument 34 : machine_type_(machine_type), write_barrier_kind_(write_barrier_kind) {} in StoreRepresentation() 36 MachineType machine_type() const { return machine_type_; } in machine_type() function 46 return rep1.machine_type() == rep2.machine_type() &&
|
D | simplified-lowering.cc | 582 SetOutput(node, AssumeImplicitFloat32Change(access.machine_type)); in VisitNode() 589 ProcessInput(node, 1, AssumeImplicitFloat32Change(access.machine_type)); in VisitNode() 601 SetOutput(node, AssumeImplicitFloat32Change(access.machine_type)); in VisitNode() 610 ProcessInput(node, 3, AssumeImplicitFloat32Change(access.machine_type)); in VisitNode() 636 ProcessInput(node, 2, rep.machine_type()); in VisitNode() 839 node->set_op(machine()->Load(access.machine_type)); in DoLoadField() 848 access.base_is_tagged, access.machine_type, access.type); in DoStoreField() 850 machine()->Store(StoreRepresentation(access.machine_type, kind))); in DoStoreField() 858 int element_size = ElementSizeOf(access.machine_type); in ComputeIndex() 872 node->set_op(machine()->Load(access.machine_type)); in DoLoadElement() [all …]
|
D | simplified-operator.h | 41 MachineType machine_type; // machine type of the field. member 55 MachineType machine_type; // machine type of the element. member
|
D | machine-operator.cc | 28 return os << "(" << rep.machine_type() << " : " << rep.write_barrier_kind() in operator <<() 39 return rep.machine_type() + rep.write_barrier_kind(); in HashCode() 222 switch (rep.machine_type()) { in Store()
|
D | graph-unittest.cc | 521 OpParameter<StoreRepresentation>(node).machine_type(), "type", in MatchAndExplain()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 22 MachineType machine_type; member 235 const MachineType type = dpi.machine_type; in TEST_P() 248 const MachineType type = dpi.machine_type; in TEST_P() 293 const MachineType type = dpi.machine_type; in TEST_P() 306 const MachineType type = dpi.machine_type; in TEST_P() 323 const MachineType type = dpi.machine_type; in TEST_P() 385 const MachineType type = dpi.machine_type; in TEST_P() 508 const MachineType type = dpi.machine_type; in TEST_P() 524 const MachineType type = dpi.machine_type; in TEST_P() 543 const MachineType type = dpi.machine_type; in TEST_P() [all …]
|
D | instruction-selector-arm64.cc | 214 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
|
/external/kernel-headers/original/uapi/linux/ |
D | a.out.h | 15 enum machine_type { enum 45 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_win.cc | 566 int machine_type = IMAGE_FILE_MACHINE_AMD64; in SlowUnwindStackWithContext() local 571 int machine_type = IMAGE_FILE_MACHINE_I386; in SlowUnwindStackWithContext() local 579 while (StackWalk64(machine_type, GetCurrentProcess(), GetCurrentThread(), in SlowUnwindStackWithContext()
|
/external/google-breakpad/src/common/windows/ |
D | pdb_source_line_writer.cc | 1161 DWORD machine_type; in GetModuleInfo() local 1163 if (global->get_machineType(&machine_type) == S_OK) { in GetModuleInfo() 1169 switch (machine_type) { in GetModuleInfo()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 101 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
|
/external/v8/test/cctest/compiler/ |
D | test-simplified-lowering.cc | 1282 int element_size = ElementSizeOf(access.machine_type); in CheckElementAccessArithmetic() 1343 CHECK_EQ(machine_reps[i], rep.machine_type()); in TEST() 1392 CHECK_EQ(machine_reps[i], rep.machine_type()); in TEST()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 114 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
|
/external/llvm/test/tools/llvm-readobj/Inputs/ |
D | relocs.py | 328 machine_type = f.uint16()
|
/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 332 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
|