Searched refs:Is64 (Results 1 - 18 of 18) sorted by relevance

/external/llvm/include/llvm/Object/
H A DELFTypes.h39 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>, tru
[all...]
/external/v8/src/compiler/
H A Dcode-assembler.cc145 bool CodeAssembler::Is64() const { return raw_assembler()->machine()->Is64(); } function in class:v8::internal::compiler::CodeAssembler
381 if (raw_assembler()->machine()->Is64()) {
388 if (raw_assembler()->machine()->Is64()) {
395 if (raw_assembler()->machine()->Is64()) {
H A Dmemory-optimizer.cc212 machine()->Is64() ? __ ChangeInt32ToInt64(size) : size),
263 __ IntAdd(top, machine()->Is64() ? __ ChangeInt32ToInt64(size) : size);
383 if (machine()->Is64()) {
H A Dmachine-graph-verifier.cc337 if (Is64()) {
548 static bool Is64() { function in class:v8::internal::compiler::__anon23183::MachineRepresentationChecker
603 if (Is64()) {
H A Dcode-assembler.h196 bool Is64() const;
H A Dmachine-operator.h618 bool Is64() const { return word() == MachineRepresentation::kWord64; } function
H A Dwasm-compiler.cc2381 if (machine->Is64()) {
2447 if (machine->Is64()) {
2656 if (jsgraph()->machine()->Is64()) {
2666 if (jsgraph()->machine()->Is64()) {
2674 if (jsgraph()->machine()->Is64()) {
2937 int param_count = jsgraph()->machine()->Is64()
H A Deffect-control-linearizer.cc873 if (machine()->Is64()) {
2168 if (machine()->Is64()) {
2175 if (machine()->Is64()) {
2183 if (machine()->Is64()) {
H A Dsimplified-lowering.cc3011 machine()->Is64()
/external/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp1132 bool Is64 = DoubleRegsRegClass.contains(PReg);
1133 assert(PReg == 0 || Is64 || IntRegsRegClass.contains(PReg));
1147 if (!Is64) {
/external/v8/src/
H A Dcode-stub-assembler.cc585 if (Is64()) {
919 if (Is64()) {
932 if (Is64()) {
944 if (Is64()) {
961 if (Is64()) {
973 if (Is64()) {
1133 if (Is64()) {
1244 if (Is64()) {
1250 if (Is64()) {
1275 if (Is64()) {
[all...]
H A Dcode-stub-assembler.h80 return Is64() ? INTPTR_PARAMETERS : SMI_PARAMETERS;
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringX8664Traits.h502 unsigned Is64 : 1; member in struct:Ice::X8664::TargetX8664Traits::__anon20719
548 (IntegerRegistersI64)[Entry.Val] = Entry.Is64;
H A DIceTargetLoweringX8632Traits.h472 unsigned Is64 : 1; member in struct:Ice::X8632::TargetX8632Traits::__anon20714
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp1771 bool Is64 = ELFT::Is64Bits; local
1774 << " Tag" << (Is64 ? " " : " ") << "Type"
1780 W.startLine() << " " << format_hex(Tag, Is64 ? 18 : 10, opts::Output != opts::GNU) << " "
2506 static inline void printRelocHeader(raw_ostream &OS, bool Is64, bool IsRela) { argument
2507 if (Is64)
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp80 bool Is64 = O->is64Bit(); local
81 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) :
83 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) :
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp6948 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64) argument
6950 if (Is64)
7066 bool Is64 = Obj->is64Bit(); local
7067 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
7077 CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp5083 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; local
5084 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty;
5085 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy;
5098 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; local
5099 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty;
5100 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy;

Completed in 564 milliseconds