mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
f236d3a8f9
These come in two variants for now: G_INTRINSIC and G_INTRINSIC_W_SIDE_EFFECTS. We may decide to split the latter up with finer-grained restrictions later, if necessary. llvm-svn: 277224
31 lines
932 B
C++
31 lines
932 B
C++
//===-- TargetIntrinsicInfo.cpp - Target Instruction Information ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the TargetIntrinsicInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Target/TargetIntrinsicInfo.h"
|
|
#include "llvm/ADT/StringMap.h"
|
|
#include "llvm/IR/Function.h"
|
|
using namespace llvm;
|
|
|
|
TargetIntrinsicInfo::TargetIntrinsicInfo() {
|
|
}
|
|
|
|
TargetIntrinsicInfo::~TargetIntrinsicInfo() {
|
|
}
|
|
|
|
unsigned TargetIntrinsicInfo::getIntrinsicID(const Function *F) const {
|
|
const ValueName *ValName = F->getValueName();
|
|
if (!ValName)
|
|
return 0;
|
|
return lookupName(ValName->getKeyData(), ValName->getKeyLength());
|
|
}
|