HomeSort by relevance Sort by last modified time
    Searched refs:BPF (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Target/BPF/
BPFFrameLowering.cpp 1 //===-- BPFFrameLowering.cpp - BPF Frame Information ----------------------===//
10 // This file contains the BPF implementation of TargetFrameLowering class.
36 SavedRegs.reset(BPF::R6);
37 SavedRegs.reset(BPF::R7);
38 SavedRegs.reset(BPF::R8);
39 SavedRegs.reset(BPF::R9);
BPFRegisterInfo.cpp 1 //===-- BPFRegisterInfo.cpp - BPF Register Information ----------*- C++ -*-===//
10 // This file contains the BPF implementation of the TargetRegisterInfo class.
14 #include "BPF.h"
30 : BPFGenRegisterInfo(BPF::R0) {}
39 Reserved.set(BPF::R10); // R10 is read only frame pointer
40 Reserved.set(BPF::R11); // R11 is pseudo stack pointer
64 if (MI.getOpcode() == BPF::MOV_rr) {
69 BuildMI(MBB, ++II, DL, TII.get(BPF::ADD_ri), reg)
81 if (MI.getOpcode() == BPF::FI_ri) {
87 BuildMI(MBB, ++II, DL, TII.get(BPF::MOV_rr), reg
    [all...]
BPFInstrInfo.cpp 1 //===-- BPFInstrInfo.cpp - BPF Instruction Information ----------*- C++ -*-===//
10 // This file contains the BPF implementation of the TargetInstrInfo class.
14 #include "BPF.h"
32 : BPFGenInstrInfo(BPF::ADJCALLSTACKDOWN, BPF::ADJCALLSTACKUP) {}
38 if (BPF::GPRRegClass.contains(DestReg, SrcReg))
39 BuildMI(MBB, I, DL, get(BPF::MOV_rr), DestReg)
54 if (RC == &BPF::GPRRegClass)
55 BuildMI(MBB, I, DL, get(BPF::STD))
72 if (RC == &BPF::GPRRegClass
    [all...]
Makefile 1 ##===- lib/Target/BPF/Makefile -----------------------------*- Makefile -*-===##
12 TARGET = BPF
BPFISelDAGToDAG.cpp 1 //===-- BPFISelDAGToDAG.cpp - A dag to dag inst selector for BPF ----------===//
10 // This file defines a DAG pattern matching instruction selector for BPF,
11 // converting from a legalized dag to a BPF dag.
15 #include "BPF.h"
32 #define DEBUG_TYPE "bpf-isel"
42 return "BPF DAG->DAG Pattern Instruction Selection";
57 // ComplexPattern used on BPF Load/Store instructions
93 // ComplexPattern used on BPF FI instruction
145 SDValue R6Reg = CurDAG->getRegister(BPF::R6, MVT::i64);
158 unsigned Opc = BPF::MOV_rr
    [all...]
BPFISelLowering.cpp 1 //===-- BPFISelLowering.cpp - BPF DAG Lowering Implementation ------------===//
10 // This file defines the interfaces that BPF uses to lower LLVM code into a
16 #include "BPF.h"
35 #define DEBUG_TYPE "bpf-lower"
96 addRegisterClass(MVT::i64, &BPF::GPRRegClass);
101 setStackPointerRegisterToSaveRestore(BPF::R11);
219 unsigned VReg = RegInfo.createVirtualRegister(&BPF::GPRRegClass);
268 // BPF target does not support tail call optimization.
543 assert(MI->getOpcode() == BPF::Select && "Unexpected instr type to insert");
579 BuildMI(BB, DL, TII.get(BPF::JSGT_rr)
    [all...]
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFMCCodeEmitter.cpp 1 //===-- BPFMCCodeEmitter.cpp - Convert BPF code to machine code -----------===//
90 if (MI.getOpcode() == BPF::JAL)
93 else if (MI.getOpcode() == BPF::LD_imm64)
114 if (Opcode == BPF::LD_imm64 || Opcode == BPF::LD_pseudo) {
152 // Encode BPF Memory Operand
BPFMCTargetDesc.cpp 1 //===-- BPFMCTargetDesc.cpp - BPF Target Descriptions ---------------------===//
10 // This file provides BPF specific target descriptions.
14 #include "BPF.h"
45 InitBPFMCRegisterInfo(X, BPF::R11 /* RAReg doesn't exist */);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
174 maxwidth=1L<<BPF):
243 def _randbelow(self, n, _log=_log, int=int, _maxwidth=1L<<BPF,
  /prebuilts/gdb/linux-x86/lib/python2.7/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
174 maxwidth=1L<<BPF):
243 def _randbelow(self, n, _log=_log, int=int, _maxwidth=1L<<BPF,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
174 maxwidth=1L<<BPF):
243 def _randbelow(self, n, _log=_log, int=int, _maxwidth=1L<<BPF,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 62 BPF = 53 # Number of bits in a float
63 RECIP_BPF = 2**-BPF
174 maxwidth=1L<<BPF):
243 def _randbelow(self, n, _log=_log, int=int, _maxwidth=1L<<BPF,

Completed in 262 milliseconds