mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6c7d3717b3
The work on this project was left in an unfinished and inconsistent state. Hopefully someone will eventually get a chance to implement this feature, but in the meantime, it is better to put things back the way the were. I have left support in the bitcode reader to handle the case-range bitcode format, so that we do not lose bitcode compatibility with the llvm 3.3 release. This reverts the following commits: 155464, 156374, 156377, 156613, 156704, 156757, 156804 156808, 156985, 157046, 157112, 157183, 157315, 157384, 157575, 157576, 157586, 157612, 157810, 157814, 157815, 157880, 157881, 157882, 157884, 157887, 157901, 158979, 157987, 157989, 158986, 158997, 159076, 159101, 159100, 159200, 159201, 159207, 159527, 159532, 159540, 159583, 159618, 159658, 159659, 159660, 159661, 159703, 159704, 160076, 167356, 172025, 186736 llvm-svn: 190328
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
//===- llvm/unittest/IR/WaymarkTest.cpp - getUser() unit tests ------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// we perform white-box tests
|
|
//
|
|
#include "llvm/IR/Constants.h"
|
|
#include "llvm/IR/Function.h"
|
|
#include "llvm/IR/Instructions.h"
|
|
#include "llvm/IR/LLVMContext.h"
|
|
#include "gtest/gtest.h"
|
|
#include <algorithm>
|
|
|
|
namespace llvm {
|
|
namespace {
|
|
|
|
Constant *char2constant(char c) {
|
|
return ConstantInt::get(Type::getInt8Ty(getGlobalContext()), c);
|
|
}
|
|
|
|
|
|
TEST(WaymarkTest, NativeArray) {
|
|
static uint8_t tail[22] = "s02s33s30y2y0s1x0syxS";
|
|
Value * values[22];
|
|
std::transform(tail, tail + 22, values, char2constant);
|
|
FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true);
|
|
Function *F = Function::Create(FT, GlobalValue::ExternalLinkage);
|
|
const CallInst *A = CallInst::Create(F, makeArrayRef(values));
|
|
ASSERT_NE(A, (const CallInst*)NULL);
|
|
ASSERT_EQ(1U + 22, A->getNumOperands());
|
|
const Use *U = &A->getOperandUse(0);
|
|
const Use *Ue = &A->getOperandUse(22);
|
|
for (; U != Ue; ++U)
|
|
{
|
|
EXPECT_EQ(A, U->getUser());
|
|
}
|
|
delete A;
|
|
}
|
|
|
|
TEST(WaymarkTest, TwoBit) {
|
|
Use* many = (Use*)calloc(sizeof(Use), 8212 + 1);
|
|
ASSERT_TRUE(many);
|
|
Use::initTags(many, many + 8212);
|
|
for (Use *U = many, *Ue = many + 8212 - 1; U != Ue; ++U)
|
|
{
|
|
EXPECT_EQ(reinterpret_cast<User *>(Ue + 1), U->getUser());
|
|
}
|
|
free(many);
|
|
}
|
|
|
|
} // end anonymous namespace
|
|
} // end namespace llvm
|