Home
last modified time | relevance | path

Searched refs:Is64 (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/compiler/
Dmemory-optimizer.cc176 machine()->Is64() in VisitAllocate()
242 machine()->Is64() in VisitAllocate()
385 if (machine()->Is64()) { in ComputeIndex()
Dcode-assembler.cc78 bool CodeAssembler::Is64() const { return raw_assembler_->machine()->Is64(); } in Is64() function in v8::internal::compiler::CodeAssembler
220 if (raw_assembler_->machine()->Is64()) { in ChangeUint32ToWord()
227 if (raw_assembler_->machine()->Is64()) { in ChangeInt32ToIntPtr()
Deffect-control-linearizer.cc557 if (machine()->Is64()) { in LowerChangeFloat64ToTagged()
620 if (machine()->Is64()) { in LowerChangeInt32ToTagged()
1482 if (machine()->Is64()) { in ChangeInt32ToSmi()
1489 if (machine()->Is64()) { in ChangeUint32ToSmi()
1505 if (machine()->Is64()) { in ChangeSmiToInt32()
Dwasm-compiler.cc1979 if (machine->Is64()) { in BuildChangeInt32ToTagged()
2045 if (machine->Is64()) { in BuildChangeFloat64ToTagged()
2078 if (jsgraph()->machine()->Is64()) { in ToJS()
2246 if (jsgraph()->machine()->Is64()) { in FromJS()
2269 if (jsgraph()->machine()->Is64()) { in BuildChangeInt32ToSmi()
2279 if (jsgraph()->machine()->Is64()) { in BuildChangeSmiToInt32()
2344 if (jsgraph()->machine()->Is64()) { in BuildJSToWasmWrapper()
2409 if (jsgraph()->machine()->Is64()) { in BuildWasmToJSWrapper()
Dcode-assembler.h173 bool Is64() const;
Dmachine-operator.h612 bool Is64() const { return word() == MachineRepresentation::kWord64; } in Is64() function
Dsimplified-lowering.cc2362 machine()->Is64() in DoLoadBuffer()
/external/v8/src/
Dcode-stub-assembler.cc282 if (Is64()) { in SmiToWord32()
862 Is64() ? Int64Constant(kHoleNanInt64) : Int32Constant(kHoleNanLower32); in AllocateJSArray()
877 if (Is64()) { in AllocateJSArray()
918 if (Is64()) { in AllocateJSArray()
1089 if (Is64()) { in ChangeFloat64ToTagged()
1119 if (Is64()) { in ChangeInt32ToTagged()
1154 if (Is64()) { in ChangeUint32ToTagged()
2335 if (Is64() && mode == INTEGER_PARAMETERS) { in ElementOffsetFromIndex()
/external/llvm/lib/Target/Hexagon/
DHexagonBitTracker.cpp1131 bool Is64 = DoubleRegsRegClass.contains(PReg); in getNextPhysReg() local
1132 assert(PReg == 0 || Is64 || IntRegsRegClass.contains(PReg)); in getNextPhysReg()
1146 if (!Is64) { in getNextPhysReg()
/external/llvm/lib/Object/
DMachOObjectFile.cpp73 bool Is64 = O->is64Bit(); in getSectionPtr() local
74 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
76 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp1567 bool Is64 = ELFT::Is64Bits; in printDynamicTable() local
1570 << " Tag" << (Is64 ? " " : " ") << "Type" in printDynamicTable()
1576 W.startLine() << " " << format_hex(Tag, Is64 ? 18 : 10, true) << " " in printDynamicTable()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp4611 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; in EmitAArch64BuiltinExpr() local
4612 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr()
4613 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr()
4626 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; in EmitAArch64BuiltinExpr() local
4627 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr()
4628 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp6353 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64) in CompactUnwindEntry()
6355 if (Is64) in CompactUnwindEntry()
6453 bool Is64 = Obj->is64Bit(); in printMachOCompactUnwindSection() local
6454 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t); in printMachOCompactUnwindSection()
6464 CompactUnwindEntry Entry(Contents.data(), Offset, Is64); in printMachOCompactUnwindSection()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc5279 if (!m.machine()->Is64()) return; in TEST()