HomeSort by relevance Sort by last modified time
    Searched refs:ADRP (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 20 // L1: adrp xA, sym@PAGE
29 // L1: adrp xA, sym@PAGE
40 // respectively ADRP, ADD (immediate), and LD.
46 // - The ADRP in L1 and the ADD in L2 must reference the same symbol using
50 // * So called non-ADRP-related:
52 // L1: adrp xA, sym@PAGE
56 // L1: adrp xA, sym@GOTPAGE
60 // L1: adrp xA, sym@PAGE
63 // L1: adrp xA, sym@PAGE
67 // L1: adrp xA, sym@GOTPAG
    [all...]
AArch64ExpandPseudoInsts.cpp 650 // Expand into ADRP + LDR.
655 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(AArch64::ADRP), DstReg);
690 // Expand into ADRP + ADD.
693 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(AArch64::ADRP), DstReg)
AArch64AsmPrinter.cpp 485 /// adrp x0, :tlsdesc:var
501 MCInst Adrp;
502 Adrp.setOpcode(AArch64::ADRP);
503 Adrp.addOperand(MCOperand::createReg(AArch64::X0));
504 Adrp.addOperand(SymTLSDesc);
505 EmitToStreamer(*OutStreamer, Adrp);
AArch64ISelLowering.h 37 ADRP, // Page address of a TargetGlobalAddress operand.
AArch64ISelLowering.cpp     [all...]
AArch64FastISel.cpp 400 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
431 // ADRP + LDRX
432 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
446 // ADRP + ADDX
447 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
    [all...]
AArch64InstrInfo.cpp     [all...]
  /external/vixl/src/vixl/a64/
instructions-a64.cc 299 // ADR and ADRP.
301 if (Mask(PCRelAddressingMask) == ADRP) {
343 VIXL_ASSERT(Mask(PCRelAddressingMask) == ADRP);
constants-a64.h 389 // case ADRP: Format("adrp 'Xd, 'AddrPCRelPage"); break;
449 ADRP = PCRelAddressingFixed | 0x80000000
    [all...]
disasm-a64.cc 535 case ADRP: Format(instr, "adrp", "'Xd, 'AddrPCRelPage"); break;
    [all...]
simulator-a64.cc 815 (instr->Mask(PCRelAddressingMask) == ADRP));
    [all...]
assembler-a64.cc 549 // them. This matches the semantics of adrp, for example.
882 void Assembler::adrp(const Register& rd, int imm21) {
884 Emit(ADRP | ImmPCRelAddress(imm21) | Rd(rd));
888 void Assembler::adrp(const Register& rd, Label* label) {
890 adrp(rd, static_cast<int>(LinkAndGetPageOffsetTo(label)));
    [all...]
  /external/libhevc/common/arm64/
ihevc_sao_band_offset_luma.s 89 ADRP x14, :got:gu1_table_band_idx
ihevc_sao_band_offset_chroma.s 101 ADRP x14, :got:gu1_table_band_idx
154 ADRP x14, :got:gu1_table_band_idx
ihevc_sao_edge_offset_class2_chroma.s 152 ADRP x14, :got:gi1_table_edge_idx //table pointer
187 ADRP x14, :got:gi1_table_edge_idx //table pointer
241 ADRP x14, :got:gi1_table_edge_idx //table pointer
277 ADRP x14, :got:gi1_table_edge_idx //table pointer
321 ADRP x2, :got:gi1_table_edge_idx //table pointer
    [all...]
ihevc_sao_edge_offset_class3_chroma.s 152 ADRP x14, :got:gi1_table_edge_idx //table pointer
185 ADRP x14, :got:gi1_table_edge_idx //table pointer
232 ADRP x14, :got:gi1_table_edge_idx //table pointer
267 ADRP x14, :got:gi1_table_edge_idx //table pointer
309 ADRP x2, :got:gi1_table_edge_idx //table pointer
    [all...]
ihevc_sao_edge_offset_class2.s 130 ADRP x14, :got:gi1_table_edge_idx //table pointer
182 ADRP x14, :got:gi1_table_edge_idx //table pointer
210 ADRP x11, :got:gi1_table_edge_idx //table pointer
    [all...]
ihevc_sao_edge_offset_class3.s 141 ADRP x14, :got:gi1_table_edge_idx //table pointer
189 ADRP x14, :got:gi1_table_edge_idx //table pointer
225 ADRP x6, :got:gi1_table_edge_idx //table pointer
    [all...]
ihevc_sao_edge_offset_class0.s 93 ADRP x14, :got:gi1_table_edge_idx //table pointer
ihevc_sao_edge_offset_class1.s 114 ADRP x14, :got:gi1_table_edge_idx //table pointer
ihevc_sao_edge_offset_class0_chroma.s 112 ADRP x14, :got:gi1_table_edge_idx //table pointer
ihevc_sao_edge_offset_class1_chroma.s 134 ADRP x14, :got:gi1_table_edge_idx //table pointer
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.cpp 56 /// tested and for ADRP an other instructions that help to load of pointers
91 } else if (MI.getOpcode() == AArch64::ADRP) {
93 // otool expects the fully encoded ADRP instruction to be passed in as
  /external/v8/src/arm64/
constants-arm64.h 403 // case ADRP: Format("adrp 'Xd, 'AddrPCRelPage"); break;
422 ADRP = PCRelAddressingFixed | 0x80000000
    [all...]
simulator-arm64.cc     [all...]

Completed in 1216 milliseconds

1 2