/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 39 template <endianness E, bool Is64> struct ELFType { 46 static const bool Is64Bits = Is64; 48 typedef typename std::conditional<Is64, uint64_t, uint32_t>::type uint; 49 typedef Elf_Ehdr_Impl<ELFType<E, Is64>> Ehdr; 50 typedef Elf_Shdr_Impl<ELFType<E, Is64>> Shdr; 51 typedef Elf_Sym_Impl<ELFType<E, Is64>> Sym; 52 typedef Elf_Dyn_Impl<ELFType<E, Is64>> Dyn; 53 typedef Elf_Phdr_Impl<ELFType<E, Is64>> Phdr; 54 typedef Elf_Rel_Impl<ELFType<E, Is64>, false> Rel; 55 typedef Elf_Rel_Impl<ELFType<E, Is64>, true> Rela; [all …]
|
/external/v8/src/compiler/ |
D | memory-optimizer.cc | 209 machine()->Is64() in VisitAllocate() 275 machine()->Is64() in VisitAllocate() 408 if (machine()->Is64()) { in ComputeIndex()
|
D | code-assembler.cc | 82 bool CodeAssembler::Is64() const { return raw_assembler_->machine()->Is64(); } in Is64() function in v8::internal::compiler::CodeAssembler 253 if (raw_assembler_->machine()->Is64()) { in ChangeUint32ToWord() 260 if (raw_assembler_->machine()->Is64()) { in ChangeInt32ToIntPtr() 267 if (raw_assembler_->machine()->Is64()) { in RoundIntPtrToFloat64()
|
D | wasm-compiler.cc | 2253 if (machine->Is64()) { in BuildChangeInt32ToTagged() 2319 if (machine->Is64()) { in BuildChangeFloat64ToTagged() 2536 if (jsgraph()->machine()->Is64()) { in BuildChangeInt32ToSmi() 2546 if (jsgraph()->machine()->Is64()) { in BuildChangeSmiToInt32() 2554 if (jsgraph()->machine()->Is64()) { in BuildChangeUint32ToSmi() 2620 if (jsgraph()->machine()->Is64()) { in BuildJSToWasmWrapper() 2702 if (jsgraph()->machine()->Is64()) { in BuildWasmToJSWrapper()
|
D | machine-operator.h | 644 bool Is64() const { return word() == MachineRepresentation::kWord64; } in NON_EXPORTED_BASE()
|
D | code-assembler.h | 195 bool Is64() const;
|
D | effect-control-linearizer.cc | 857 if (machine()->Is64()) { in LowerChangeInt32ToTagged() 2831 if (machine()->Is64()) { in ChangeInt32ToSmi() 2838 if (machine()->Is64()) { in ChangeUint32ToSmi() 2854 if (machine()->Is64()) { in ChangeSmiToInt32()
|
D | simplified-lowering.cc | 2885 machine()->Is64() in DoLoadBuffer()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonBitTracker.cpp | 1132 bool Is64 = DoubleRegsRegClass.contains(PReg); in getNextPhysReg() local 1133 assert(PReg == 0 || Is64 || IntRegsRegClass.contains(PReg)); in getNextPhysReg() 1147 if (!Is64) { in getNextPhysReg()
|
/external/v8/src/ |
D | code-stub-assembler.cc | 391 if (Is64()) { in SmiToWord32() 959 if (Is64()) { in LoadAndUntagObjectField() 972 if (Is64()) { in LoadAndUntagToWord32ObjectField() 984 if (Is64()) { in LoadAndUntagSmi() 1001 if (Is64()) { in LoadAndUntagToWord32Root() 1242 if (Is64()) { in LoadAndUntagToWord32FixedArrayElement() 1248 if (Is64()) { in LoadAndUntagToWord32FixedArrayElement() 1273 if (Is64()) { in LoadDoubleWithHoleCheck() 1952 Is64() ? Int64Constant(kHoleNanInt64) : Int32Constant(kHoleNanLower32); in FillFixedArrayWithValue() 1968 if (assembler->Is64()) { in FillFixedArrayWithValue() [all …]
|
D | code-stub-assembler.h | 78 return Is64() ? INTPTR_PARAMETERS : SMI_PARAMETERS; in OptimalParameterMode()
|
D | code-stubs.cc | 2783 if (assembler->Is64()) { in NonEmptyShallowClone() 2800 if (assembler->Is64()) { in NonEmptyShallowClone()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 473 if (Is64()) { in LoadAndUntagConstantPoolEntry() 479 if (Is64()) { in LoadAndUntagConstantPoolEntry()
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 80 bool Is64 = O->is64Bit(); in getSectionPtr() local 81 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr() 83 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 1771 bool Is64 = ELFT::Is64Bits; in printDynamicTable() local 1774 << " Tag" << (Is64 ? " " : " ") << "Type" in printDynamicTable() 1780 W.startLine() << " " << format_hex(Tag, Is64 ? 18 : 10, opts::Output != opts::GNU) << " " in printDynamicTable() 2506 static inline void printRelocHeader(raw_ostream &OS, bool Is64, bool IsRela) { in printRelocHeader() argument 2507 if (Is64) in printRelocHeader()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 5083 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; in EmitAArch64BuiltinExpr() local 5084 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr() 5085 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr() 5098 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; in EmitAArch64BuiltinExpr() local 5099 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr() 5100 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr()
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 6948 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64) in CompactUnwindEntry() 6950 if (Is64) in CompactUnwindEntry() 7066 bool Is64 = Obj->is64Bit(); in printMachOCompactUnwindSection() local 7067 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t); in printMachOCompactUnwindSection() 7077 CompactUnwindEntry Entry(Contents.data(), Offset, Is64); in printMachOCompactUnwindSection()
|