Home
last modified time | relevance | path

Searched refs:machine_type (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/compiler/
Dsimplified-operator.cc31 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()
Dmachine-type.h70 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()
Dmachine-operator.h32 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() &&
Dsimplified-lowering.cc582 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 …]
Dsimplified-operator.h41 MachineType machine_type; // machine type of the field. member
55 MachineType machine_type; // machine type of the element. member
Dmachine-operator.cc28 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()
Dgraph-unittest.cc521 OpParameter<StoreRepresentation>(node).machine_type(), "type", in MatchAndExplain()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc22 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 …]
Dinstruction-selector-arm64.cc214 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
/external/kernel-headers/original/uapi/linux/
Da.out.h15 enum machine_type { enum
45 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc566 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/
Dpdb_source_line_writer.cc1161 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/
Dinstruction-selector-ia32.cc101 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
/external/v8/test/cctest/compiler/
Dtest-simplified-lowering.cc1282 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/
Dinstruction-selector-x64.cc114 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()
/external/llvm/test/tools/llvm-readobj/Inputs/
Drelocs.py328 machine_type = f.uint16()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc332 MachineType rep = RepresentationOf(store_rep.machine_type()); in VisitStore()